package awsconfig // Properties for defining a `CfnOrganizationConformancePack`. // // 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" // // cfnOrganizationConformancePackProps := &CfnOrganizationConformancePackProps{ // OrganizationConformancePackName: jsii.String("organizationConformancePackName"), // // // the properties below are optional // ConformancePackInputParameters: []interface{}{ // &ConformancePackInputParameterProperty{ // ParameterName: jsii.String("parameterName"), // ParameterValue: jsii.String("parameterValue"), // }, // }, // DeliveryS3Bucket: jsii.String("deliveryS3Bucket"), // DeliveryS3KeyPrefix: jsii.String("deliveryS3KeyPrefix"), // ExcludedAccounts: []*string{ // jsii.String("excludedAccounts"), // }, // TemplateBody: jsii.String("templateBody"), // TemplateS3Uri: jsii.String("templateS3Uri"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html // type CfnOrganizationConformancePackProps struct { // The name you assign to an organization conformance pack. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-organizationconformancepackname // OrganizationConformancePackName *string `field:"required" json:"organizationConformancePackName" yaml:"organizationConformancePackName"` // A list of `ConformancePackInputParameter` objects. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-conformancepackinputparameters // ConformancePackInputParameters interface{} `field:"optional" json:"conformancePackInputParameters" yaml:"conformancePackInputParameters"` // The name of the Amazon S3 bucket where AWS Config stores conformance pack templates. // // > This field is optional. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3bucket // DeliveryS3Bucket *string `field:"optional" json:"deliveryS3Bucket" yaml:"deliveryS3Bucket"` // Any folder structure you want to add to an Amazon S3 bucket. // // > This field is optional. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-deliverys3keyprefix // DeliveryS3KeyPrefix *string `field:"optional" json:"deliveryS3KeyPrefix" yaml:"deliveryS3KeyPrefix"` // A comma-separated list of accounts excluded from organization conformance pack. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-excludedaccounts // ExcludedAccounts *[]*string `field:"optional" json:"excludedAccounts" yaml:"excludedAccounts"` // A string containing full conformance pack template body. // // Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templatebody // TemplateBody *string `field:"optional" json:"templateBody" yaml:"templateBody"` // Location of file containing the template body. // // The uri must point to the conformance pack template (max size: 300 KB). // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-organizationconformancepack.html#cfn-config-organizationconformancepack-templates3uri // TemplateS3Uri *string `field:"optional" json:"templateS3Uri" yaml:"templateS3Uri"` }