runway.cfngin.providers.base module

Provider base class.

runway.cfngin.providers.base.not_implemented(method: str) None[source]

Wrap NotImplimentedError with a formatted message.

class runway.cfngin.providers.base.BaseProviderBuilder[source]

Bases: object

ProviderBuilder base class.

build(region: Optional[str] = None) Any[source]

Abstract method.

__init__()
__new__(**kwargs)
class runway.cfngin.providers.base.BaseProvider[source]

Bases: object

Provider base class.

get_stack(stack_name: str, *args: Any, **kwargs: Any) Any[source]

Abstract method.

get_outputs(stack_name: str, *args: Any, **kwargs: Any) Any[source]

Abstract method.

get_output(stack: str, output: str) str[source]

Abstract method.

__init__()
__new__(**kwargs)
class runway.cfngin.providers.base.Template[source]

Bases: object

CloudFormation stack template, which could be optionally uploaded to s3.

Presence of the url attribute indicates that the template was uploaded to S3, and the uploaded template should be used for CreateStack/UpdateStack calls.

__init__(url: Optional[str] = None, body: Optional[str] = None) None[source]

Instantiate class.

__new__(**kwargs)