Class: Aws::Mobile::Types::Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Mobile::Types::Resource
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mobile/types.rb
Overview
Information about an instance of an AWS resource associated with a project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
AWS resource name which uniquely identifies the resource in AWS systems.
-
#attributes ⇒ Hash<String,String>
Key-value attribute pairs.
-
#feature ⇒ String
Identifies which feature in AWS Mobile Hub is associated with this AWS resource.
-
#name ⇒ String
Name of the AWS resource (e.g., for an Amazon S3 bucket this is the name of the bucket).
-
#type ⇒ String
Simplified name for type of AWS resource (e.g., bucket is an Amazon S3 bucket).
Instance Attribute Details
#arn ⇒ String
AWS resource name which uniquely identifies the resource in AWS systems.
552 553 554 555 556 557 558 559 560 |
# File 'lib/aws-sdk-mobile/types.rb', line 552 class Resource < Struct.new( :type, :name, :arn, :feature, :attributes) SENSITIVE = [] include Aws::Structure end |
#attributes ⇒ Hash<String,String>
Key-value attribute pairs.
552 553 554 555 556 557 558 559 560 |
# File 'lib/aws-sdk-mobile/types.rb', line 552 class Resource < Struct.new( :type, :name, :arn, :feature, :attributes) SENSITIVE = [] include Aws::Structure end |
#feature ⇒ String
Identifies which feature in AWS Mobile Hub is associated with this AWS resource.
552 553 554 555 556 557 558 559 560 |
# File 'lib/aws-sdk-mobile/types.rb', line 552 class Resource < Struct.new( :type, :name, :arn, :feature, :attributes) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Name of the AWS resource (e.g., for an Amazon S3 bucket this is the name of the bucket).
552 553 554 555 556 557 558 559 560 |
# File 'lib/aws-sdk-mobile/types.rb', line 552 class Resource < Struct.new( :type, :name, :arn, :feature, :attributes) SENSITIVE = [] include Aws::Structure end |