Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers (IAM users, IAM roles, and AWS accounts) to connect to your endpoint service.
If you grant permissions to all principals, the service is public. Any users who know the name of a public service can send a request to attach an endpoint. If the service does not require manual approval, attachments are automatically approved.
ec2_modify_vpc_endpoint_service_permissions(DryRun, ServiceId,
AddAllowedPrincipals, RemoveAllowedPrincipals)
A list with the following syntax:
list(
ReturnValue = TRUE|FALSE
)
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 DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
[required] The ID of the service.
The Amazon Resource Names (ARN) of one or more principals. Permissions are granted to the principals in this list. To grant permissions to all principals, specify an asterisk (*).
The Amazon Resource Names (ARN) of one or more principals. Permissions are revoked for principals in this list.
svc$modify_vpc_endpoint_service_permissions(
DryRun = TRUE|FALSE,
ServiceId = "string",
AddAllowedPrincipals = list(
"string"
),
RemoveAllowedPrincipals = list(
"string"
)
)