Show / Hide Table of Contents

Namespace Pulumi.Aws.Swf

Classes

Domain

Provides an SWF Domain resource.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var foo = new Aws.Swf.Domain("foo", new Aws.Swf.DomainArgs
    {
        Description = "SWF Domain",
        WorkflowExecutionRetentionPeriodInDays = 30,
    });
}

}

DomainArgs

DomainState

Back to top Copyright 2016-2020, Pulumi Corporation.