PutOrganizationConformancePackRequest
public struct PutOrganizationConformancePackRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A list of ConformancePackInputParameter objects.
Declaration
Swift
public let conformancePackInputParameters: [ConformancePackInputParameter]?
-
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.
Declaration
Swift
public let deliveryS3Bucket: String
-
The prefix for the Amazon S3 bucket.
Declaration
Swift
public let deliveryS3KeyPrefix: String?
-
A list of AWS accounts to be excluded from an organization conformance pack while deploying a conformance pack.
Declaration
Swift
public let excludedAccounts: [String]?
-
Name of the organization conformance pack you want to create.
Declaration
Swift
public let organizationConformancePackName: 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.
Declaration
Swift
public let templateBody: String?
-
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.
Declaration
Swift
public let templateS3Uri: String?
-
init(conformancePackInputParameters:deliveryS3Bucket:deliveryS3KeyPrefix:excludedAccounts:organizationConformancePackName:templateBody:templateS3Uri:)
Undocumented
Declaration
Swift
public init(conformancePackInputParameters: [ConformancePackInputParameter]? = nil, deliveryS3Bucket: String, deliveryS3KeyPrefix: String? = nil, excludedAccounts: [String]? = nil, organizationConformancePackName: String, templateBody: String? = nil, templateS3Uri: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws