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
Deprecating a Domain -------------------- To deprecate a domain (you can still see it, but cannot create new workflow executions or register types on it), use ``swf deprecate-domain``. It has a sole required parameter, ``--name``, which takes the name of the domain to deprecate. :: $ aws swf deprecate-domain --name MyNeatNewDomain "" As with ``register-domain``, no output is returned. If you use ``list-domains`` to view the registered domains, however, you will see that the domain has been deprecated and no longer appears in the returned data: :: $ aws swf list-domains --registration-status REGISTERED { "domainInfos": [ { "status": "REGISTERED", "name": "DataFrobotz" }, { "status": "REGISTERED", "name": "erontest" } ] } If you use ``--registration-status DEPRECATED`` with ``list-domains``, you will see your deprecated domain: :: $ aws swf list-domains --registration-status DEPRECATED { "domainInfos": [ { "status": "DEPRECATED", "name": "MyNeatNewDomain" } ] } You can still use ``describe-domain`` to get information about a deprecated domain: :: $ aws swf describe-domain --name MyNeatNewDomain { "domainInfo": { "status": "DEPRECATED", "name": "MyNeatNewDomain" }, "configuration": { "workflowExecutionRetentionPeriodInDays": "0" } } See Also -------- - `DeprecateDomain <http://docs.aws.amazon.com/amazonswf/latest/apireference/API_DeprecateDomain.html>`__ in the *Amazon Simple Workflow Service API Reference*