Class: Aws::RAM::Types::ServiceNameAndResourceType
- Inherits:
-
Struct
- Object
- Struct
- Aws::RAM::Types::ServiceNameAndResourceType
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ram/types.rb
Overview
Information about a shareable resource type and the Amazon Web Services service to which resources of that type belong.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_region_scope ⇒ String
Specifies the scope of visibility of resources of this type:.
-
#resource_type ⇒ String
The type of the resource.
-
#service_name ⇒ String
The name of the Amazon Web Services service to which resources of this type belong.
Instance Attribute Details
#resource_region_scope ⇒ String
Specifies the scope of visibility of resources of this type:
-
REGIONAL – The resource can be accessed only by using requests that target the Amazon Web Services Region in which the resource exists.
-
GLOBAL – The resource can be accessed from any Amazon Web Services Region.
3589 3590 3591 3592 3593 3594 3595 |
# File 'lib/aws-sdk-ram/types.rb', line 3589 class ServiceNameAndResourceType < Struct.new( :resource_type, :service_name, :resource_region_scope) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of the resource. This takes the form of: ‘service-code`:`resource-code`, and is case-insensitive. For example, an Amazon EC2 Subnet would be represented by the string `ec2:subnet`.
3589 3590 3591 3592 3593 3594 3595 |
# File 'lib/aws-sdk-ram/types.rb', line 3589 class ServiceNameAndResourceType < Struct.new( :resource_type, :service_name, :resource_region_scope) SENSITIVE = [] include Aws::Structure end |
#service_name ⇒ String
The name of the Amazon Web Services service to which resources of this type belong.
3589 3590 3591 3592 3593 3594 3595 |
# File 'lib/aws-sdk-ram/types.rb', line 3589 class ServiceNameAndResourceType < Struct.new( :resource_type, :service_name, :resource_region_scope) SENSITIVE = [] include Aws::Structure end |