Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackinputparameters

Type union: either IResolvable or (either IResolvable or CfnConformancePackPropsMixin.IConformancePackInputParameterProperty)[]

ConformancePackName

Name of the conformance pack you want to create.

string? ConformancePackName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-conformancepackname

DeliveryS3Bucket

The name of the Amazon S3 bucket where AWS Config stores conformance pack templates.

string? DeliveryS3Bucket { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3bucket

DeliveryS3KeyPrefix

The prefix for the Amazon S3 bucket.

string? DeliveryS3KeyPrefix { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-deliverys3keyprefix

TemplateBody

A string containing full conformance pack template body.

string? TemplateBody { get; }
Property Value

string

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> ).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatebody

TemplateS3Uri

Location of file containing the template body (s3://bucketname/prefix).

string? TemplateS3Uri { get; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templates3uri

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-conformancepack.html#cfn-config-conformancepack-templatessmdocumentdetails

Back to top Generated by DocFX