package awsappflow // The connector-specific profile credentials required when using Amazon Redshift. // // 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" // // redshiftConnectorProfileCredentialsProperty := &RedshiftConnectorProfileCredentialsProperty{ // Password: jsii.String("password"), // Username: jsii.String("username"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-redshiftconnectorprofilecredentials.html // type CfnConnectorProfile_RedshiftConnectorProfileCredentialsProperty struct { // The password that corresponds to the user name. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-redshiftconnectorprofilecredentials.html#cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-password // Password *string `field:"optional" json:"password" yaml:"password"` // The name of the user. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appflow-connectorprofile-redshiftconnectorprofilecredentials.html#cfn-appflow-connectorprofile-redshiftconnectorprofilecredentials-username // Username *string `field:"optional" json:"username" yaml:"username"` }