Class: Aws::CodeDeploy::Types::GetDeploymentInstanceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::GetDeploymentInstanceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass GetDeploymentInstanceInput data as a hash:
{
deployment_id: "DeploymentId", # required
instance_id: "InstanceId", # required
}
Represents the input of a GetDeploymentInstance operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The unique ID of a deployment.
-
#instance_id ⇒ String
The unique ID of an instance in the deployment group.
Instance Attribute Details
#deployment_id ⇒ String
The unique ID of a deployment.
2915 2916 2917 2918 2919 2920 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2915 class GetDeploymentInstanceInput < Struct.new( :deployment_id, :instance_id) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The unique ID of an instance in the deployment group.
2915 2916 2917 2918 2919 2920 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 2915 class GetDeploymentInstanceInput < Struct.new( :deployment_id, :instance_id) SENSITIVE = [] include Aws::Structure end |