GetTemplateSummaryOutput
public struct GetTemplateSummaryOutput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The capabilities found within the template. If your template contains IAM resources, you must specify the CAPABILITY_IAM or CAPABILITY_NAMED_IAM value for this parameter when you use the CreateStack or UpdateStack actions with your template; otherwise, those actions return an InsufficientCapabilities error. For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.
Declaration
Swift
public let capabilities: [Capability]?
-
The list of resources that generated the values in the Capabilities response element.
Declaration
Swift
public let capabilitiesReason: String?
-
A list of the transforms that are declared in the template.
Declaration
Swift
public let declaredTransforms: [String]?
-
The value that is defined in the Description property of the template.
Declaration
Swift
public let description: String?
-
The value that is defined for the Metadata property of the template.
Declaration
Swift
public let metadata: String?
-
A list of parameter declarations that describe various properties for each parameter.
Declaration
Swift
public let parameters: [ParameterDeclaration]?
-
A list of resource identifier summaries that describe the target resources of an import operation and the properties you can provide during the import to identify the target resources. For example, BucketName is a possible identifier property for an AWS::S3::Bucket resource.
Declaration
Swift
public let resourceIdentifierSummaries: [ResourceIdentifierSummary]?
-
A list of all the template resource types that are defined in the template, such as AWS::EC2::Instance, AWS::Dynamo::Table, and Custom::MyCustomInstance.
Declaration
Swift
public let resourceTypes: [String]?
-
The AWS template format version, which identifies the capabilities of the template.
Declaration
Swift
public let version: String?
-
init(capabilities:capabilitiesReason:declaredTransforms:description:metadata:parameters:resourceIdentifierSummaries:resourceTypes:version:)
Undocumented
Declaration
Swift
public init(capabilities: [Capability]? = nil, capabilitiesReason: String? = nil, declaredTransforms: [String]? = nil, description: String? = nil, metadata: String? = nil, parameters: [ParameterDeclaration]? = nil, resourceIdentifierSummaries: [ResourceIdentifierSummary]? = nil, resourceTypes: [String]? = nil, version: String? = nil)