class AWS::Glacier::Archive

def delete

Returns:
  • (nil) -
def delete
  client.delete_archive(resource_options)
  nil
end

def initialize vault, archive_id, options = {}

Options Hash: (**options)
  • :account_id (String) --

Parameters:
  • options (Hash) --
  • archive_id (String) --
  • vault (Vault) --
def initialize vault, archive_id, options = {}
  @vault = vault
  @archive_id = archive_id
  super
end

def resource_identifiers

def resource_identifiers
  [
    [:vault_name, vault.name],
    [:archive_id, archive_id],
    [:account_id, account_id],
  ]
end