amazonka-swf-1.6.1: Amazon Simple Workflow Service SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.SWF.RegisterDomain

Contents

Description

Registers a new domain.

Access Control

You can use IAM policies to control this action's access to Amazon SWF resources as follows:

  • You cannot use an IAM policy to control domain access for this action. The name of the domain being registered is available as the resource of this action.
  • Use an Action element to allow or deny permission to call this action.
  • You cannot use an IAM policy to constrain this action's parameters.

If the caller doesn't have sufficient permissions to invoke the action, or the parameter values fall outside the specified constraints, the action fails. The associated event attribute's cause parameter is set to OPERATION_NOT_PERMITTED . For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer Guide .

Synopsis

Creating a Request

registerDomain Source #

Creates a value of RegisterDomain with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • rdDescription - A text description of the domain.
  • rdName - Name of the domain to register. The name must be unique in the region that the domain is registered in. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (u0000-u001f | u007f-u009f ). Also, it must not contain the literal string arn .
  • rdWorkflowExecutionRetentionPeriodInDays - The duration (in days) that records and histories of workflow executions on the domain should be kept by the service. After the retention period, the workflow execution isn't available in the results of visibility calls. If you pass the value NONE or 0 (zero), then the workflow execution history isn't retained. As soon as the workflow execution completes, the execution record and its history are deleted. The maximum workflow execution retention period is 90 days. For more information about Amazon SWF service limits, see: Amazon SWF Service Limits in the Amazon SWF Developer Guide .

data RegisterDomain Source #

See: registerDomain smart constructor.

Instances
Eq RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Data RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RegisterDomain -> c RegisterDomain #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RegisterDomain #

toConstr :: RegisterDomain -> Constr #

dataTypeOf :: RegisterDomain -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c RegisterDomain) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RegisterDomain) #

gmapT :: (forall b. Data b => b -> b) -> RegisterDomain -> RegisterDomain #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RegisterDomain -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RegisterDomain -> r #

gmapQ :: (forall d. Data d => d -> u) -> RegisterDomain -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RegisterDomain -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RegisterDomain -> m RegisterDomain #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RegisterDomain -> m RegisterDomain #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RegisterDomain -> m RegisterDomain #

Read RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Show RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Generic RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Associated Types

type Rep RegisterDomain :: Type -> Type #

Hashable RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

ToJSON RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

AWSRequest RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Associated Types

type Rs RegisterDomain :: Type #

ToHeaders RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

ToPath RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

ToQuery RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

NFData RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Methods

rnf :: RegisterDomain -> () #

type Rep RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

type Rep RegisterDomain = D1 (MetaData "RegisterDomain" "Network.AWS.SWF.RegisterDomain" "amazonka-swf-1.6.1-3kde1KSCGTp3D4Dj0lEH55" False) (C1 (MetaCons "RegisterDomain'" PrefixI True) (S1 (MetaSel (Just "_rdDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_rdName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_rdWorkflowExecutionRetentionPeriodInDays") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs RegisterDomain Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Request Lenses

rdDescription :: Lens' RegisterDomain (Maybe Text) Source #

A text description of the domain.

rdName :: Lens' RegisterDomain Text Source #

Name of the domain to register. The name must be unique in the region that the domain is registered in. The specified string must not start or end with whitespace. It must not contain a : (colon), / (slash), | (vertical bar), or any control characters (u0000-u001f | u007f-u009f ). Also, it must not contain the literal string arn .

rdWorkflowExecutionRetentionPeriodInDays :: Lens' RegisterDomain Text Source #

The duration (in days) that records and histories of workflow executions on the domain should be kept by the service. After the retention period, the workflow execution isn't available in the results of visibility calls. If you pass the value NONE or 0 (zero), then the workflow execution history isn't retained. As soon as the workflow execution completes, the execution record and its history are deleted. The maximum workflow execution retention period is 90 days. For more information about Amazon SWF service limits, see: Amazon SWF Service Limits in the Amazon SWF Developer Guide .

Destructuring the Response

registerDomainResponse :: RegisterDomainResponse Source #

Creates a value of RegisterDomainResponse with the minimum fields required to make a request.

data RegisterDomainResponse Source #

See: registerDomainResponse smart constructor.

Instances
Eq RegisterDomainResponse Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Data RegisterDomainResponse Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RegisterDomainResponse -> c RegisterDomainResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RegisterDomainResponse #

toConstr :: RegisterDomainResponse -> Constr #

dataTypeOf :: RegisterDomainResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c RegisterDomainResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RegisterDomainResponse) #

gmapT :: (forall b. Data b => b -> b) -> RegisterDomainResponse -> RegisterDomainResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RegisterDomainResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RegisterDomainResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> RegisterDomainResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RegisterDomainResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RegisterDomainResponse -> m RegisterDomainResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RegisterDomainResponse -> m RegisterDomainResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RegisterDomainResponse -> m RegisterDomainResponse #

Read RegisterDomainResponse Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Show RegisterDomainResponse Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Generic RegisterDomainResponse Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Associated Types

type Rep RegisterDomainResponse :: Type -> Type #

NFData RegisterDomainResponse Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

Methods

rnf :: RegisterDomainResponse -> () #

type Rep RegisterDomainResponse Source # 
Instance details

Defined in Network.AWS.SWF.RegisterDomain

type Rep RegisterDomainResponse = D1 (MetaData "RegisterDomainResponse" "Network.AWS.SWF.RegisterDomain" "amazonka-swf-1.6.1-3kde1KSCGTp3D4Dj0lEH55" False) (C1 (MetaCons "RegisterDomainResponse'" PrefixI False) (U1 :: Type -> Type))