Show / Hide Table of Contents

Class CfnConformancePackMixinProps

Properties for CfnConformancePackPropsMixin.

Inheritance
object
CfnConformancePackMixinProps
Implements
ICfnConformancePackMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.Config.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnConformancePackMixinProps : ICfnConformancePackMixinProps
Syntax (vb)
Public Class CfnConformancePackMixinProps Implements 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

Constructors

CfnConformancePackMixinProps()

Properties for CfnConformancePackPropsMixin.

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.

Constructors

CfnConformancePackMixinProps()

Properties for CfnConformancePackPropsMixin.

public CfnConformancePackMixinProps()
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
             };

Properties

ConformancePackInputParameters

A list of ConformancePackInputParameter objects.

public object? ConformancePackInputParameters { get; set; }
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.

public string? ConformancePackName { get; set; }
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.

public string? DeliveryS3Bucket { get; set; }
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.

public string? DeliveryS3KeyPrefix { get; set; }
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.

public string? TemplateBody { get; set; }
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).

public string? TemplateS3Uri { get; set; }
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.

public object? TemplateSsmDocumentDetails { get; set; }
Property Value

object

Remarks

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

Implements

ICfnConformancePackMixinProps
Back to top Generated by DocFX