Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.217.14
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
awscli /
examples /
swf /
Delete
Unzip
Name
Size
Permission
Date
Action
count-closed-workflow-executions.rst
1.43
KB
-rw-r--r--
2017-04-04 16:39
count-open-workflow-executions.rst
1.29
KB
-rw-r--r--
2017-04-04 16:39
deprecate-domain.rst
1.72
KB
-rw-r--r--
2017-04-04 16:39
describe-domain.rst
1.07
KB
-rw-r--r--
2017-04-04 16:39
list-activity-types.rst
6.98
KB
-rw-r--r--
2017-04-04 16:39
list-domains.rst
2.66
KB
-rw-r--r--
2017-04-04 16:39
list-workflow-types.rst
1.15
KB
-rw-r--r--
2017-04-04 16:39
register-domain.rst
1.78
KB
-rw-r--r--
2017-04-04 16:39
register-workflow-type.rst
948
B
-rw-r--r--
2017-04-04 16:39
Save
Rename
Registering a Domain -------------------- You can use the AWS CLI to register new domains. Use the ``swf register-domain`` command. There are two required parameters, ``--name``, which takes the domain name, and ``--workflow-execution-retention-period-in-days``, which takes an integer to specify the number of days to retain workflow execution data on this domain, up to a maxium period of 90 days (for more information, see the `SWF FAQ <http://aws.amazon.com/swf/faqs/#retain_limit>`). Workflow execution data will not be retained after the specified number of days have passed. Here's an example of registering a new domain: :: $ aws swf register-domain --name MyNeatNewDomain --workflow-execution-retention-period-in-days 0 "" When you register a domain, nothing is returned (""), but you can use ``swf list-domains`` or ``swf describe-domain`` to see the new domain. For example: :: $ aws swf list-domains --registration-status REGISTERED { "domainInfos": [ { "status": "REGISTERED", "name": "DataFrobotz" }, { "status": "REGISTERED", "name": "MyNeatNewDomain" }, { "status": "REGISTERED", "name": "erontest" } ] } Using ``swf describe-domain``: :: aws swf describe-domain --name MyNeatNewDomain { "domainInfo": { "status": "REGISTERED", "name": "MyNeatNewDomain" }, "configuration": { "workflowExecutionRetentionPeriodInDays": "0" } } See Also -------- - `RegisterDomain <http://docs.aws.amazon.com/amazonswf/latest/apireference/API_RegisterDomain.html>`__ in the *Amazon Simple Workflow Service API Reference*