DeregisterStreamConsumerInput

public struct DeregisterStreamConsumerInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ARN returned by Kinesis Data Streams when you registered the consumer. If you don’t know the ARN of the consumer that you want to deregister, you can use the ListStreamConsumers operation to get a list of the descriptions of all the consumers that are currently registered with a given data stream. The description of a consumer contains its ARN.

    Declaration

    Swift

    public let consumerARN: String?
  • The name that you gave to the consumer.

    Declaration

    Swift

    public let consumerName: String?
  • The ARN of the Kinesis data stream that the consumer is registered with. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces.

    Declaration

    Swift

    public let streamARN: String?
  • Undocumented

    Declaration

    Swift

    public init(consumerARN: String? = nil, consumerName: String? = nil, streamARN: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws