Swap Environment Cnam Es
elasticbeanstalk_swap_environment_cnam_es | R Documentation |
Swaps the CNAMEs of two environments¶
Description¶
Swaps the CNAMEs of two environments.
Usage¶
elasticbeanstalk_swap_environment_cnam_es(SourceEnvironmentId,
SourceEnvironmentName, DestinationEnvironmentId,
DestinationEnvironmentName)
Arguments¶
SourceEnvironmentId |
The ID of the source environment. Condition: You must specify at least the
|
SourceEnvironmentName |
The name of the source environment. Condition: You must specify at least the
|
DestinationEnvironmentId |
The ID of the destination environment. Condition: You must specify at least the
|
DestinationEnvironmentName |
The name of the destination environment. Condition: You must specify at least the
|
Value¶
An empty list.
Request syntax¶
svc$swap_environment_cnam_es(
SourceEnvironmentId = "string",
SourceEnvironmentName = "string",
DestinationEnvironmentId = "string",
DestinationEnvironmentName = "string"
)
Examples¶
## Not run:
# The following operation swaps the assigned subdomains of two
# environments:
svc$swap_environment_cnam_es(
DestinationEnvironmentName = "my-env-green",
SourceEnvironmentName = "my-env-blue"
)
## End(Not run)