package awsroute53recoveryreadiness import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnRecoveryGroup`. // // 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" // // cfnRecoveryGroupProps := &CfnRecoveryGroupProps{ // Cells: []*string{ // jsii.String("cells"), // }, // RecoveryGroupName: jsii.String("recoveryGroupName"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.html // type CfnRecoveryGroupProps struct { // A list of the cell Amazon Resource Names (ARNs) in the recovery group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.html#cfn-route53recoveryreadiness-recoverygroup-cells // Cells *[]*string `field:"optional" json:"cells" yaml:"cells"` // The name of the recovery group to create. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.html#cfn-route53recoveryreadiness-recoverygroup-recoverygroupname // RecoveryGroupName *string `field:"optional" json:"recoveryGroupName" yaml:"recoveryGroupName"` // A collection of tags associated with a resource. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-recoverygroup.html#cfn-route53recoveryreadiness-recoverygroup-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }