Class: Aws::IAM::Types::CreateServiceLinkedRoleRequest

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

Overview

Note:

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

{
  aws_service_name: "groupNameType", # required
  description: "roleDescriptionType",
  custom_suffix: "customSuffixType",
}

Instance Attribute Summary collapse

Instance Attribute Details

#aws_service_nameString

The AWS service to which this role is attached. You use a string similar to a URL but without the http:// in front. For example: ‘elasticbeanstalk.amazonaws.com`

Returns:

  • (String)


1207
1208
1209
1210
1211
1212
# File 'lib/aws-sdk-iam/types.rb', line 1207

class CreateServiceLinkedRoleRequest < Struct.new(
  :aws_service_name,
  :description,
  :custom_suffix)
  include Aws::Structure
end

#custom_suffixString

A string that you provide, which is combined with the service name to form the complete role name. If you make multiple requests for the same service, then you must supply a different ‘CustomSuffix` for each request. Otherwise the request fails with a duplicate role name error. For example, you could add `-1` or `-debug` to the suffix.

Returns:

  • (String)


1207
1208
1209
1210
1211
1212
# File 'lib/aws-sdk-iam/types.rb', line 1207

class CreateServiceLinkedRoleRequest < Struct.new(
  :aws_service_name,
  :description,
  :custom_suffix)
  include Aws::Structure
end

#descriptionString

The description of the role.

Returns:

  • (String)


1207
1208
1209
1210
1211
1212
# File 'lib/aws-sdk-iam/types.rb', line 1207

class CreateServiceLinkedRoleRequest < Struct.new(
  :aws_service_name,
  :description,
  :custom_suffix)
  include Aws::Structure
end