AWSFirehoseMSKSourceConfiguration

Objective-C

@interface AWSFirehoseMSKSourceConfiguration

Swift

class AWSFirehoseMSKSourceConfiguration

The configuration for the Amazon MSK cluster to be used as the source for a delivery stream.

Required parameters: [MSKClusterARN, TopicName, AuthenticationConfiguration]

  • The authentication configuration of the Amazon MSK cluster.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSFirehoseAuthenticationConfiguration *_Nullable authenticationConfiguration;

    Swift

    var authenticationConfiguration: AWSFirehoseAuthenticationConfiguration? { get set }
  • The ARN of the Amazon MSK cluster.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable MSKClusterARN;

    Swift

    var mskClusterARN: String? { get set }
  • The topic name within the Amazon MSK cluster.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable topicName;

    Swift

    var topicName: String? { get set }