This page documents the language specification for the aws package. If you're looking for help working with the inputs, outputs, or functions of aws resources in a Pulumi program, please see the resource documentation for examples and API reference.
swf¶
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-aws repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-aws repo.
- class
pulumi_aws.swf.Domain(resource_name, opts=None, description=None, name=None, name_prefix=None, tags=None, workflow_execution_retention_period_in_days=None, __props__=None, __name__=None, __opts__=None)¶ Provides an SWF Domain resource.
import pulumi import pulumi_aws as aws foo = aws.swf.Domain("foo", description="SWF Domain", workflow_execution_retention_period_in_days=30)
- Parameters
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
description (pulumi.Input[str]) – The domain description.
name (pulumi.Input[str]) – The name of the domain. If omitted, this provider will assign a random, unique name.
name_prefix (pulumi.Input[str]) – Creates a unique name beginning with the specified prefix. Conflicts with
name.tags (pulumi.Input[dict]) – Key-value map of resource tags
workflow_execution_retention_period_in_days (pulumi.Input[str]) – Length of time that SWF will continue to retain information about the workflow execution after the workflow execution is complete, must be between 0 and 90 days.
arn: pulumi.Output[str] = None¶Amazon Resource Name (ARN)
description: pulumi.Output[str] = None¶The domain description.
name: pulumi.Output[str] = None¶The name of the domain. If omitted, this provider will assign a random, unique name.
name_prefix: pulumi.Output[str] = None¶Creates a unique name beginning with the specified prefix. Conflicts with
name.
Key-value map of resource tags
workflow_execution_retention_period_in_days: pulumi.Output[str] = None¶Length of time that SWF will continue to retain information about the workflow execution after the workflow execution is complete, must be between 0 and 90 days.
- static
get(resource_name, id, opts=None, arn=None, description=None, name=None, name_prefix=None, tags=None, workflow_execution_retention_period_in_days=None)¶ Get an existing Domain resource’s state with the given name, id, and optional extra properties used to qualify the lookup.
- Parameters
resource_name (str) – The unique name of the resulting resource.
id (str) – The unique provider ID of the resource to lookup.
opts (pulumi.ResourceOptions) – Options for the resource.
arn (pulumi.Input[str]) – Amazon Resource Name (ARN)
description (pulumi.Input[str]) – The domain description.
name (pulumi.Input[str]) – The name of the domain. If omitted, this provider will assign a random, unique name.
name_prefix (pulumi.Input[str]) – Creates a unique name beginning with the specified prefix. Conflicts with
name.tags (pulumi.Input[dict]) – Key-value map of resource tags
workflow_execution_retention_period_in_days (pulumi.Input[str]) – Length of time that SWF will continue to retain information about the workflow execution after the workflow execution is complete, must be between 0 and 90 days.
translate_output_property(prop)¶Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
translate_input_property(prop)¶Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str