Class: Aws::CodeDeploy::Types::RegisterOnPremisesInstanceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::RegisterOnPremisesInstanceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codedeploy/types.rb
Overview
Note:
When making an API call, you may pass RegisterOnPremisesInstanceInput data as a hash:
{
instance_name: "InstanceName", # required
iam_session_arn: "IamSessionArn",
iam_user_arn: "IamUserArn",
}
Represents the input of the register on-premises instance operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iam_session_arn ⇒ String
The ARN of the IAM session to associate with the on-premises instance.
-
#iam_user_arn ⇒ String
The ARN of the IAM user to associate with the on-premises instance.
-
#instance_name ⇒ String
The name of the on-premises instance to register.
Instance Attribute Details
#iam_session_arn ⇒ String
The ARN of the IAM session to associate with the on-premises instance.
4927 4928 4929 4930 4931 4932 4933 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4927 class RegisterOnPremisesInstanceInput < Struct.new( :instance_name, :iam_session_arn, :iam_user_arn) SENSITIVE = [] include Aws::Structure end |
#iam_user_arn ⇒ String
The ARN of the IAM user to associate with the on-premises instance.
4927 4928 4929 4930 4931 4932 4933 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4927 class RegisterOnPremisesInstanceInput < Struct.new( :instance_name, :iam_session_arn, :iam_user_arn) SENSITIVE = [] include Aws::Structure end |
#instance_name ⇒ String
The name of the on-premises instance to register.
4927 4928 4929 4930 4931 4932 4933 |
# File 'lib/aws-sdk-codedeploy/types.rb', line 4927 class RegisterOnPremisesInstanceInput < Struct.new( :instance_name, :iam_session_arn, :iam_user_arn) SENSITIVE = [] include Aws::Structure end |