Class: Aws::RAM::Types::ServiceNameAndResourceType
- Inherits:
-
Struct
- Object
- Struct
- Aws::RAM::Types::ServiceNameAndResourceType
- Defined in:
- gems/aws-sdk-ram/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.
2429 2430 2431 2432 2433 2434 2435 |
# File 'gems/aws-sdk-ram/lib/aws-sdk-ram/types.rb', line 2429 class ServiceNameAndResourceType < Struct.new( :resource_type, :service_name, :resource_region_scope) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The type of the resource.
2429 2430 2431 2432 2433 2434 2435 |
# File 'gems/aws-sdk-ram/lib/aws-sdk-ram/types.rb', line 2429 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.
2429 2430 2431 2432 2433 2434 2435 |
# File 'gems/aws-sdk-ram/lib/aws-sdk-ram/types.rb', line 2429 class ServiceNameAndResourceType < Struct.new( :resource_type, :service_name, :resource_region_scope) SENSITIVE = [] include Aws::Structure end |