Get Vpc Resources Blocking Encryption Enforcement
| ec2_get_vpc_resources_blocking_encryption_enforcement | R Documentation |
Gets information about resources in a VPC that are blocking encryption enforcement¶
Description¶
Gets information about resources in a VPC that are blocking encryption enforcement.
For more information, see Enforce VPC encryption in transit in the Amazon VPC User Guide.
Usage¶
ec2_get_vpc_resources_blocking_encryption_enforcement(VpcId, MaxResults,
NextToken, DryRun)
Arguments¶
VpcId |
[required] The ID of the VPC to check for resources blocking encryption enforcement. |
MaxResults |
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination. |
NextToken |
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request. |
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
|
Value¶
A list with the following syntax:
list(
NonCompliantResources = list(
list(
Id = "string",
Type = "string",
Description = "string",
IsExcludable = TRUE|FALSE
)
),
NextToken = "string"
)
Request syntax¶
svc$get_vpc_resources_blocking_encryption_enforcement(
VpcId = "string",
MaxResults = 123,
NextToken = "string",
DryRun = TRUE|FALSE
)