GetChangeSetsSet

data class GetChangeSetsSet(val changeSetId: String, val changeSetName: String, val changeSetType: String, val description: String, val disableRollback: Boolean, val executionStatus: String, val id: String, val parameters: List<GetChangeSetsSetParameter>, val stackId: String, val stackName: String, val status: String, val templateBody: String, val timeoutInMinutes: Int)

Constructors

Link copied to clipboard
constructor(changeSetId: String, changeSetName: String, changeSetType: String, description: String, disableRollback: Boolean, executionStatus: String, id: String, parameters: List<GetChangeSetsSetParameter>, stackId: String, stackName: String, status: String, templateBody: String, timeoutInMinutes: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The ID of the change set.

Link copied to clipboard

The name of the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter.

Link copied to clipboard

The type of the change set. Valid values: CREATE: creates a change set for a new stack. UPDATE: creates a change set for an existing stack. IMPORT: creates a change set for a new stack or an existing stack to import non-ROS-managed resources. If you create a change set for a new stack, ROS creates a stack that has a unique stack ID. The stack is in the REVIEW_IN_PROGRESS state until you execute the change set. You cannot use the UPDATE type to create a change set for a new stack or the CREATE type to create a change set for an existing stack.

Link copied to clipboard

The description of the change set. The description can be up to 1,024 bytes in length.

Link copied to clipboard

Specifies whether to disable rollback on stack creation failure. Default value: false. Valid values: true: disables rollback on stack creation failure. false: enables rollback on stack creation failure. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.

Link copied to clipboard

The execution status of change set N. Maximum value of N: 5. Valid values: UNAVAILABLE AVAILABLE EXECUTE_IN_PROGRESS EXECUTE_COMPLETE EXECUTE_FAILED OBSOLETE.

Link copied to clipboard
val id: String

The ID of the Change Set.

Link copied to clipboard
Link copied to clipboard

The ID of the stack for which you want to create the change set. ROS generates the change set by comparing the stack information with the information that you submit, such as a modified template or different inputs.

Link copied to clipboard

The name of the stack for which you want to create the change set. The name can be up to 255 characters in length and can contain digits, letters, hyphens (-), and underscores (_). It must start with a digit or letter. Note This parameter takes effect only when ChangeSetType is set to CREATE or IMPORT.

Link copied to clipboard

The status of the change set.

Link copied to clipboard

The structure that contains the template body. The template body must be 1 to 524,288 bytes in length. If the length of the template body is longer than required, we recommend that you add parameters to the HTTP POST request body to avoid request failures due to excessive length of URLs. You can specify one of TemplateBody or TemplateURL parameters, but you cannot specify both of them.

Link copied to clipboard

Timeout In Minutes.