Class: Aws::IAM::Types::CreateServiceLinkedRoleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::CreateServiceLinkedRoleRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
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
-
#aws_service_name ⇒ String
The AWS service to which this role is attached.
-
#custom_suffix ⇒ String
A string that you provide, which is combined with the service name to form the complete role name.
-
#description ⇒ String
The description of the role.
Instance Attribute Details
#aws_service_name ⇒ String
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`
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_suffix ⇒ String
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.
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 |
#description ⇒ String
The description of the role.
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 |