You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ConfigService::Types::PutOrganizationConformancePackRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PutOrganizationConformancePackRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  organization_conformance_pack_name: "OrganizationConformancePackName", # required
  template_s3_uri: "TemplateS3Uri",
  template_body: "TemplateBody",
  delivery_s3_bucket: "DeliveryS3Bucket",
  delivery_s3_key_prefix: "DeliveryS3KeyPrefix",
  conformance_pack_input_parameters: [
    {
      parameter_name: "ParameterName", # required
      parameter_value: "ParameterValue", # required
    },
  ],
  excluded_accounts: ["AccountId"],
}

Instance Attribute Summary collapse

Instance Attribute Details

#conformance_pack_input_parametersArray<Types::ConformancePackInputParameter>

A list of ConformancePackInputParameter objects.

Returns:

#delivery_s3_bucketString

Location of an Amazon S3 bucket where AWS Config can deliver evaluation results. AWS Config stores intermediate files while processing conformance pack template.

The delivery bucket name should start with awsconfigconforms. For example: \"Resource\": \"arn:aws:s3:::your_bucket_name/*\". For more information, see Permissions for cross account bucket access.

Returns:

  • (String)

    Location of an Amazon S3 bucket where AWS Config can deliver evaluation results.

#delivery_s3_key_prefixString

The prefix for the Amazon S3 bucket.

Returns:

  • (String)

    The prefix for the Amazon S3 bucket.

#excluded_accountsArray<String>

A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack.

Returns:

  • (Array<String>)

    A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack.

#organization_conformance_pack_nameString

Name of the organization conformance pack you want to create.

Returns:

  • (String)

    Name of the organization conformance pack you want to create.

#template_bodyString

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.

Returns:

  • (String)

    A string containing full conformance pack template body.

#template_s3_uriString

Location of file containing the template body. The uri must point to the conformance pack template (max size: 300 KB).

You must have access to read Amazon S3 bucket.

Returns:

  • (String)

    Location of file containing the template body.