Describe Verified Access Instance Logging Configurations
| ec2_describe_verified_access_instance_logging_configurations | R Documentation |
Describes the specified Amazon Web Services Verified Access instances¶
Description¶
Describes the specified Amazon Web Services Verified Access instances.
Usage¶
ec2_describe_verified_access_instance_logging_configurations(
VerifiedAccessInstanceIds, MaxResults, NextToken, Filters, DryRun)
Arguments¶
VerifiedAccessInstanceIdsThe IDs of the Verified Access instances.
MaxResultsThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextTokenvalue.NextTokenThe token for the next page of results.
FiltersOne or more filters. Filter names and values are case-sensitive.
DryRunChecks 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 isUnauthorizedOperation.
Value¶
A list with the following syntax:
list(
LoggingConfigurations = list(
list(
VerifiedAccessInstanceId = "string",
AccessLogs = list(
S3 = list(
Enabled = TRUE|FALSE,
DeliveryStatus = list(
Code = "success"|"failed",
Message = "string"
),
BucketName = "string",
Prefix = "string",
BucketOwner = "string"
),
CloudWatchLogs = list(
Enabled = TRUE|FALSE,
DeliveryStatus = list(
Code = "success"|"failed",
Message = "string"
),
LogGroup = "string"
),
KinesisDataFirehose = list(
Enabled = TRUE|FALSE,
DeliveryStatus = list(
Code = "success"|"failed",
Message = "string"
),
DeliveryStream = "string"
),
LogVersion = "string",
IncludeTrustContext = TRUE|FALSE
)
)
),
NextToken = "string"
)