package awspipes // The AWS Secrets Manager secret that stores your stream credentials. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // mSKAccessCredentialsProperty := &MSKAccessCredentialsProperty{ // ClientCertificateTlsAuth: jsii.String("clientCertificateTlsAuth"), // SaslScram512Auth: jsii.String("saslScram512Auth"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-mskaccesscredentials.html // type CfnPipe_MSKAccessCredentialsProperty struct { // The ARN of the Secrets Manager secret. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-mskaccesscredentials.html#cfn-pipes-pipe-mskaccesscredentials-clientcertificatetlsauth // ClientCertificateTlsAuth *string `field:"optional" json:"clientCertificateTlsAuth" yaml:"clientCertificateTlsAuth"` // The ARN of the Secrets Manager secret. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-mskaccesscredentials.html#cfn-pipes-pipe-mskaccesscredentials-saslscram512auth // SaslScram512Auth *string `field:"optional" json:"saslScram512Auth" yaml:"saslScram512Auth"` }