You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::Redshift::Types::AuthorizeSnapshotAccessMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Redshift::Types::AuthorizeSnapshotAccessMessage
- Defined in:
- gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb
Overview
When making an API call, you may pass AuthorizeSnapshotAccessMessage data as a hash:
{
snapshot_identifier: "String", # required
snapshot_cluster_identifier: "String",
account_with_restore_access: "String", # required
}
Instance Attribute Summary collapse
-
#account_with_restore_access ⇒ String
The identifier of the AWS customer account authorized to 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 the account is authorized to restore.
Instance Attribute Details
#account_with_restore_access ⇒ String
The identifier of the AWS customer account authorized to restore the specified snapshot.
To share a snapshot with AWS support, specify amazon-redshift-support.
193 194 195 196 197 198 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 193 class AuthorizeSnapshotAccessMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier, :account_with_restore_access) 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.
193 194 195 196 197 198 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 193 class AuthorizeSnapshotAccessMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier, :account_with_restore_access) include Aws::Structure end |
#snapshot_identifier ⇒ String
The identifier of the snapshot the account is authorized to restore.
193 194 195 196 197 198 |
# File 'gems/aws-sdk-redshift/lib/aws-sdk-redshift/types.rb', line 193 class AuthorizeSnapshotAccessMessage < Struct.new( :snapshot_identifier, :snapshot_cluster_identifier, :account_with_restore_access) include Aws::Structure end |