UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

33 lines (32 loc) 1.31 kB
export declare const ConnectorKafkaClusterClientAuthenticationType: { readonly None: "NONE"; readonly Iam: "IAM"; }; /** * The type of client authentication used to connect to the Kafka cluster. Value NONE means that no client authentication is used. */ export type ConnectorKafkaClusterClientAuthenticationType = (typeof ConnectorKafkaClusterClientAuthenticationType)[keyof typeof ConnectorKafkaClusterClientAuthenticationType]; export declare const ConnectorKafkaClusterEncryptionInTransitType: { readonly Plaintext: "PLAINTEXT"; readonly Tls: "TLS"; }; /** * The type of encryption in transit to the Kafka cluster. */ export type ConnectorKafkaClusterEncryptionInTransitType = (typeof ConnectorKafkaClusterEncryptionInTransitType)[keyof typeof ConnectorKafkaClusterEncryptionInTransitType]; export declare const ConnectorNetworkType: { readonly Ipv4: "IPV4"; readonly Dual: "DUAL"; }; /** * The network type of the Connector. */ export type ConnectorNetworkType = (typeof ConnectorNetworkType)[keyof typeof ConnectorNetworkType]; export declare const CustomPluginContentType: { readonly Jar: "JAR"; readonly Zip: "ZIP"; }; /** * The type of the plugin file. */ export type CustomPluginContentType = (typeof CustomPluginContentType)[keyof typeof CustomPluginContentType];