Class: Aws::CodeDeploy::Types::GetOnPremisesInstanceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::GetOnPremisesInstanceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass GetOnPremisesInstanceInput data as a hash:
{
instance_name: "InstanceName", # required
}
Represents the input of a GetOnPremisesInstance operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_name ⇒ String
The name of the on-premises instance about which to get information.
Instance Attribute Details
#instance_name ⇒ String
The name of the on-premises instance about which to get information.
3006 3007 3008 3009 3010 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 3006 class GetOnPremisesInstanceInput < Struct.new( :instance_name) SENSITIVE = [] include Aws::Structure end |