PutConformancePackRequest

public struct PutConformancePackRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A list of ConformancePackInputParameter objects.

    Declaration

    Swift

    public let conformancePackInputParameters: [ConformancePackInputParameter]?
  • Name of the conformance pack you want to create.

    Declaration

    Swift

    public let conformancePackName: String
  • AWS Config stores intermediate files while processing conformance pack template.

    Declaration

    Swift

    public let deliveryS3Bucket: String
  • The prefix for the Amazon S3 bucket.

    Declaration

    Swift

    public let deliveryS3KeyPrefix: String?
  • 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. You can only use a YAML template with one resource type, that is, config rule and a remediation action.

    Declaration

    Swift

    public let templateBody: String?
  • Location of file containing the template body (s3://bucketname/prefix). The uri must point to the conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same region as the conformance pack. You must have access to read Amazon S3 bucket.

    Declaration

    Swift

    public let templateS3Uri: String?
  • Undocumented

    Declaration

    Swift

    public init(conformancePackInputParameters: [ConformancePackInputParameter]? = nil, conformancePackName: String, deliveryS3Bucket: String, deliveryS3KeyPrefix: String? = nil, templateBody: String? = nil, templateS3Uri: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws