airflow.providers.amazon.aws.hooks.ssm

Module Contents

Classes

SsmHook

Interact with Amazon Systems Manager (SSM) using the boto3 library.

class airflow.providers.amazon.aws.hooks.ssm.SsmHook(*args, **kwargs)[source]

Bases: airflow.providers.amazon.aws.hooks.base_aws.AwsBaseHook

Interact with Amazon Systems Manager (SSM) using the boto3 library. All API calls available through the Boto API are also available here. See: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ssm.html#client

Additional arguments (such as aws_conn_id) may be specified and are passed down to the underlying AwsBaseHook.

See also

AwsBaseHook

get_parameter_value(parameter, default=NOTSET)[source]

Returns the value of the provided Parameter or an optional default.

Parameters
  • parameter (str) – The SSM Parameter name to return the value for.

  • default (str | ArgNotSet) – Optional default value to return if none is found.

Was this entry helpful?