Class: Aws::IoT::Types::UpdateRoleAliasRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iot/types.rb

Overview

Note:

When making an API call, you may pass UpdateRoleAliasRequest data as a hash:

{
  role_alias: "RoleAlias", # required
  role_arn: "RoleArn",
  credential_duration_seconds: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#credential_duration_secondsInteger

The number of seconds the credential will be valid.

Returns:

  • (Integer)


11144
11145
11146
11147
11148
11149
# File 'lib/aws-sdk-iot/types.rb', line 11144

class UpdateRoleAliasRequest < Struct.new(
  :role_alias,
  :role_arn,
  :credential_duration_seconds)
  include Aws::Structure
end

#role_aliasString

The role alias to update.

Returns:

  • (String)


11144
11145
11146
11147
11148
11149
# File 'lib/aws-sdk-iot/types.rb', line 11144

class UpdateRoleAliasRequest < Struct.new(
  :role_alias,
  :role_arn,
  :credential_duration_seconds)
  include Aws::Structure
end

#role_arnString

The role ARN.

Returns:

  • (String)


11144
11145
11146
11147
11148
11149
# File 'lib/aws-sdk-iot/types.rb', line 11144

class UpdateRoleAliasRequest < Struct.new(
  :role_alias,
  :role_arn,
  :credential_duration_seconds)
  include Aws::Structure
end