Class: Aws::CodeDeploy::Types::RegisterOnPremisesInstanceInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#iam_session_arnString

The ARN of the IAM session to associate with the on-premises instance.

Returns:

  • (String)


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_arnString

The ARN of the IAM user to associate with the on-premises instance.

Returns:

  • (String)


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_nameString

The name of the on-premises instance to register.

Returns:

  • (String)


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