package awsrds import ( "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" ) // The extra options passed to the `IClusterEngine.bindToCluster` method. // // 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" // import "github.com/aws/aws-cdk-go/awscdk" // // var parameterGroup parameterGroup // var role role // // clusterEngineBindOptions := &ClusterEngineBindOptions{ // ParameterGroup: parameterGroup, // S3ExportRole: role, // S3ImportRole: role, // } // type ClusterEngineBindOptions struct { // The customer-provided ParameterGroup. ParameterGroup IParameterGroup `field:"optional" json:"parameterGroup" yaml:"parameterGroup"` // The role used for S3 exporting. S3ExportRole awsiam.IRole `field:"optional" json:"s3ExportRole" yaml:"s3ExportRole"` // The role used for S3 importing. S3ImportRole awsiam.IRole `field:"optional" json:"s3ImportRole" yaml:"s3ImportRole"` }