Class: Aws::CodeDeploy::Types::GetDeploymentInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::GetDeploymentInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass GetDeploymentInput data as a hash:
{
deployment_id: "DeploymentId", # required
}
Represents the input of a GetDeployment operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The unique ID of a deployment associated with the IAM user or AWS account.
Instance Attribute Details
#deployment_id ⇒ String
The unique ID of a deployment associated with the IAM user or AWS account.
2889 2890 2891 2892 2893 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2889 class GetDeploymentInput < Struct.new( :deployment_id) SENSITIVE = [] include Aws::Structure end |