StackEvent
public struct StackEvent : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The token passed to the operation that generated this event. All events triggered by a given stack operation are assigned the same client request token, which you can use to track operations. For example, if you execute a CreateStack operation with the token token1, then all the StackEvents generated by that operation will have ClientRequestToken set as token1. In the console, stack operations display the client request token on the Events tab. Stack operations that are initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify the stack operation . For example, if you create a stack using the console, each stack event would be assigned the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002.
Declaration
Swift
public let clientRequestToken: String?
-
The unique ID of this event.
Declaration
Swift
public let eventId: String
-
The logical name of the resource specified in the template.
Declaration
Swift
public let logicalResourceId: String?
-
The name or unique identifier associated with the physical instance of the resource.
Declaration
Swift
public let physicalResourceId: String?
-
BLOB of the properties used to create the resource.
Declaration
Swift
public let resourceProperties: String?
-
Current status of the resource.
Declaration
Swift
public let resourceStatus: ResourceStatus?
-
Success/failure message associated with the resource.
Declaration
Swift
public let resourceStatusReason: String?
-
Type of resource. (For more information, go to AWS Resource Types Reference in the AWS CloudFormation User Guide.)
Declaration
Swift
public let resourceType: String?
-
The unique ID name of the instance of the stack.
Declaration
Swift
public let stackId: String
-
The name associated with a stack.
Declaration
Swift
public let stackName: String
-
Time the status was updated.
Declaration
Swift
public let timestamp: TimeStamp
-
init(clientRequestToken:eventId:logicalResourceId:physicalResourceId:resourceProperties:resourceStatus:resourceStatusReason:resourceType:stackId:stackName:timestamp:)
Undocumented
Declaration
Swift
public init(clientRequestToken: String? = nil, eventId: String, logicalResourceId: String? = nil, physicalResourceId: String? = nil, resourceProperties: String? = nil, resourceStatus: ResourceStatus? = nil, resourceStatusReason: String? = nil, resourceType: String? = nil, stackId: String, stackName: String, timestamp: TimeStamp)