Modify Verified Access Endpoint
ec2_modify_verified_access_endpoint | R Documentation |
Modifies the configuration of the specified Amazon Web Services Verified Access endpoint¶
Description¶
Modifies the configuration of the specified Amazon Web Services Verified Access endpoint.
Usage¶
ec2_modify_verified_access_endpoint(VerifiedAccessEndpointId,
VerifiedAccessGroupId, LoadBalancerOptions, NetworkInterfaceOptions,
Description, ClientToken, DryRun, RdsOptions, CidrOptions)
Arguments¶
VerifiedAccessEndpointId |
[required] The ID of the Verified Access endpoint. |
VerifiedAccessGroupId |
The ID of the Verified Access group. |
LoadBalancerOptions |
The load balancer details if creating the Verified Access
endpoint as |
NetworkInterfaceOptions |
The network interface options. |
Description |
A description for the Verified Access endpoint. |
ClientToken |
A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring idempotency. |
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
RdsOptions |
The RDS options. |
CidrOptions |
The CIDR options. |
Value¶
A list with the following syntax:
list(
VerifiedAccessEndpoint = list(
VerifiedAccessInstanceId = "string",
VerifiedAccessGroupId = "string",
VerifiedAccessEndpointId = "string",
ApplicationDomain = "string",
EndpointType = "load-balancer"|"network-interface"|"rds"|"cidr",
AttachmentType = "vpc",
DomainCertificateArn = "string",
EndpointDomain = "string",
DeviceValidationDomain = "string",
SecurityGroupIds = list(
"string"
),
LoadBalancerOptions = list(
Protocol = "http"|"https"|"tcp",
Port = 123,
LoadBalancerArn = "string",
SubnetIds = list(
"string"
),
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
),
NetworkInterfaceOptions = list(
NetworkInterfaceId = "string",
Protocol = "http"|"https"|"tcp",
Port = 123,
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
),
Status = list(
Code = "pending"|"active"|"updating"|"deleting"|"deleted",
Message = "string"
),
Description = "string",
CreationTime = "string",
LastUpdatedTime = "string",
DeletionTime = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
SseSpecification = list(
CustomerManagedKeyEnabled = TRUE|FALSE,
KmsKeyArn = "string"
),
RdsOptions = list(
Protocol = "http"|"https"|"tcp",
Port = 123,
RdsDbInstanceArn = "string",
RdsDbClusterArn = "string",
RdsDbProxyArn = "string",
RdsEndpoint = "string",
SubnetIds = list(
"string"
)
),
CidrOptions = list(
Cidr = "string",
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
),
Protocol = "http"|"https"|"tcp",
SubnetIds = list(
"string"
)
)
)
)
Request syntax¶
svc$modify_verified_access_endpoint(
VerifiedAccessEndpointId = "string",
VerifiedAccessGroupId = "string",
LoadBalancerOptions = list(
SubnetIds = list(
"string"
),
Protocol = "http"|"https"|"tcp",
Port = 123,
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
),
NetworkInterfaceOptions = list(
Protocol = "http"|"https"|"tcp",
Port = 123,
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
),
Description = "string",
ClientToken = "string",
DryRun = TRUE|FALSE,
RdsOptions = list(
SubnetIds = list(
"string"
),
Port = 123,
RdsEndpoint = "string"
),
CidrOptions = list(
PortRanges = list(
list(
FromPort = 123,
ToPort = 123
)
)
)
)