Class: Aws::Redshift::Types::RevokeSnapshotAccessMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::RevokeSnapshotAccessMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
Note:
When making an API call, you may pass RevokeSnapshotAccessMessage data as a hash:
{
snapshot_identifier: "String", # required
snapshot_cluster_identifier: "String",
account_with_restore_access: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_with_restore_access ⇒ String
The identifier of the Amazon Web Services account that can no longer restore the specified snapshot.
-
#snapshot_cluster_identifier ⇒ String
The identifier of the cluster the snapshot was created from.
-
#snapshot_identifier ⇒ String
The identifier of the snapshot that the account can no longer access.
Instance Attribute Details
#account_with_restore_access ⇒ String
The identifier of the Amazon Web Services account that can no longer restore the specified snapshot.
10882 10883 10884 10885 10886 10887 10888 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10882 class RevokeSnapshotAccessMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier, :account_with_restore_access) SENSITIVE = [] include Aws::Structure end |
#snapshot_cluster_identifier ⇒ String
The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
10882 10883 10884 10885 10886 10887 10888 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10882 class RevokeSnapshotAccessMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier, :account_with_restore_access) SENSITIVE = [] include Aws::Structure end |
#snapshot_identifier ⇒ String
The identifier of the snapshot that the account can no longer access.
10882 10883 10884 10885 10886 10887 10888 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 10882 class RevokeSnapshotAccessMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier, :account_with_restore_access) SENSITIVE = [] include Aws::Structure end |