Class: Aws::RAM::Types::AssociatedPermission
- Inherits:
-
Struct
- Object
- Struct
- Aws::RAM::Types::AssociatedPermission
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ram/types.rb
Overview
An object that describes a managed permission associated with a resource share.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The [Amazon Resource Name (ARN)] of the associated managed permission.
-
#default_version ⇒ Boolean
Indicates whether the associated resource share is using the default version of the permission.
-
#feature_set ⇒ String
Indicates what features are available for this resource share.
-
#last_updated_time ⇒ Time
The date and time when the association between the permission and the resource share was last updated.
-
#permission_version ⇒ String
The version of the permission currently associated with the resource share.
-
#resource_share_arn ⇒ String
The [Amazon Resource Name (ARN)] of a resource share associated with this permission.
-
#resource_type ⇒ String
The resource type to which this permission applies.
-
#status ⇒ String
The current status of the association between the permission and the resource share.
Instance Attribute Details
#arn ⇒ String
The [Amazon Resource Name (ARN)] of the associated managed permission.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |
#default_version ⇒ Boolean
Indicates whether the associated resource share is using the default version of the permission.
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |
#feature_set ⇒ String
Indicates what features are available for this resource share. This parameter can have one of the following values:
-
STANDARD – A resource share that supports all functionality. These resource shares are visible to all principals you share the resource share with. You can modify these resource shares in RAM using the console or APIs. This resource share might have been created by RAM, or it might have been CREATED_FROM_POLICY and then promoted.
-
CREATED_FROM_POLICY – The customer manually shared a resource by attaching a resource-based policy. That policy did not match any existing managed permissions, so RAM created this customer managed permission automatically on the customer’s behalf based on the attached policy document. This type of resource share is visible only to the Amazon Web Services account that created it. You can’t modify it in RAM unless you promote it. For more information, see PromoteResourceShareCreatedFromPolicy.
-
PROMOTING_TO_STANDARD – This resource share was originally ‘CREATED_FROM_POLICY`, but the customer ran the PromoteResourceShareCreatedFromPolicy and that operation is still in progress. This value changes to `STANDARD` when complete.
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |
#last_updated_time ⇒ Time
The date and time when the association between the permission and the resource share was last updated.
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |
#permission_version ⇒ String
The version of the permission currently associated with the resource share.
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |
#resource_share_arn ⇒ String
The [Amazon Resource Name (ARN)] of a resource share associated with this permission.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The resource type to which this permission applies.
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the association between the permission and the resource share. The following are the possible values:
-
‘ATTACHABLE` – This permission or version can be associated with resource shares.
-
‘UNATTACHABLE` – This permission or version can’t currently be associated with resource shares.
-
‘DELETING` – This permission or version is in the process of being deleted.
-
‘DELETED` – This permission or version is deleted.
379 380 381 382 383 384 385 386 387 388 389 390 |
# File 'lib/aws-sdk-ram/types.rb', line 379 class AssociatedPermission < Struct.new( :arn, :permission_version, :default_version, :resource_type, :status, :feature_set, :last_updated_time, :resource_share_arn) SENSITIVE = [] include Aws::Structure end |