Class: Aws::Redshift::Types::RevokeSnapshotAccessMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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
}

Instance Attribute Summary collapse

Instance Attribute Details

#account_with_restore_accessString

The identifier of the AWS customer account that can no longer restore the specified snapshot.

Returns:

  • (String)


7385
7386
7387
7388
7389
7390
# File 'lib/aws-sdk-redshift/types.rb', line 7385

class RevokeSnapshotAccessMessage < Struct.new(
  :snapshot_identifier,
  :snapshot_cluster_identifier,
  :account_with_restore_access)
  include Aws::Structure
end

#snapshot_cluster_identifierString

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.

Returns:

  • (String)


7385
7386
7387
7388
7389
7390
# File 'lib/aws-sdk-redshift/types.rb', line 7385

class RevokeSnapshotAccessMessage < Struct.new(
  :snapshot_identifier,
  :snapshot_cluster_identifier,
  :account_with_restore_access)
  include Aws::Structure
end

#snapshot_identifierString

The identifier of the snapshot that the account can no longer access.

Returns:

  • (String)


7385
7386
7387
7388
7389
7390
# File 'lib/aws-sdk-redshift/types.rb', line 7385

class RevokeSnapshotAccessMessage < Struct.new(
  :snapshot_identifier,
  :snapshot_cluster_identifier,
  :account_with_restore_access)
  include Aws::Structure
end