airflow.providers.amazon.aws.operators.glacier

Module Contents

Classes

GlacierCreateJobOperator

Initiate an Amazon Glacier inventory-retrieval job

class airflow.providers.amazon.aws.operators.glacier.GlacierCreateJobOperator(*, aws_conn_id='aws_default', vault_name, **kwargs)[source]

Bases: airflow.models.BaseOperator

Initiate an Amazon Glacier inventory-retrieval job

See also

For more information on how to use this operator, take a look at the guide: Create an Amazon Glacier job

Parameters
  • aws_conn_id – The reference to the AWS connection details

  • vault_name (str) – the Glacier vault on which job is executed

template_fields :Sequence[str] = ['vault_name'][source]
execute(context)[source]

This is the main method to derive when creating an operator. Context is the same dictionary used as when rendering jinja templates.

Refer to get_template_context for more context.

Was this entry helpful?