Interface ICfnConformancePackMixinProps
Properties for CfnConformancePackPropsMixin.
Namespace: Amazon.CDK.Mixins.Preview.AWS.Config.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnConformancePackMixinProps
Syntax (vb)
Public Interface ICfnConformancePackMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Config.Mixins;
var templateSsmDocumentDetails;
var cfnConformancePackMixinProps = new CfnConformancePackMixinProps {
ConformancePackInputParameters = new [] { new ConformancePackInputParameterProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} },
ConformancePackName = "conformancePackName",
DeliveryS3Bucket = "deliveryS3Bucket",
DeliveryS3KeyPrefix = "deliveryS3KeyPrefix",
TemplateBody = "templateBody",
TemplateS3Uri = "templateS3Uri",
TemplateSsmDocumentDetails = templateSsmDocumentDetails
};
Synopsis
Properties
| ConformancePackInputParameters | A list of ConformancePackInputParameter objects. |
| ConformancePackName | Name of the conformance pack you want to create. |
| DeliveryS3Bucket | The name of the Amazon S3 bucket where AWS Config stores conformance pack templates. |
| DeliveryS3KeyPrefix | The prefix for the Amazon S3 bucket. |
| TemplateBody | A string containing full conformance pack template body. |
| TemplateS3Uri | Location of file containing the template body (s3://bucketname/prefix). |
| TemplateSsmDocumentDetails | An object that contains the name or Amazon Resource Name (ARN) of the AWS Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack. |
Properties
ConformancePackInputParameters
A list of ConformancePackInputParameter objects.
object? ConformancePackInputParameters { get; }
Property Value
Remarks
ConformancePackName
Name of the conformance pack you want to create.
string? ConformancePackName { get; }
Property Value
Remarks
DeliveryS3Bucket
The name of the Amazon S3 bucket where AWS Config stores conformance pack templates.
string? DeliveryS3Bucket { get; }
Property Value
Remarks
DeliveryS3KeyPrefix
The prefix for the Amazon S3 bucket.
string? DeliveryS3KeyPrefix { get; }
Property Value
Remarks
TemplateBody
A string containing full conformance pack template body.
string? TemplateBody { get; }
Property Value
Remarks
Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes.
You can only use a YAML template with two resource types: config rule ( <code>AWS::Config::ConfigRule</code> ) and a remediation action ( <code>AWS::Config::RemediationConfiguration</code> ).
TemplateS3Uri
Location of file containing the template body (s3://bucketname/prefix).
string? TemplateS3Uri { get; }
Property Value
Remarks
The uri must point to the conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket.
You must have access to read Amazon S3 bucket.
TemplateSsmDocumentDetails
An object that contains the name or Amazon Resource Name (ARN) of the AWS Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack.
object? TemplateSsmDocumentDetails { get; }