Get Import
cloudtrail_get_import | R Documentation |
Returns information about a specific import¶
Description¶
Returns information about a specific import.
Usage¶
Arguments¶
ImportId
[required] The ID for the import.
Value¶
A list with the following syntax:
list(
ImportId = "string",
Destinations = list(
"string"
),
ImportSource = list(
S3 = list(
S3LocationUri = "string",
S3BucketRegion = "string",
S3BucketAccessRoleArn = "string"
)
),
StartEventTime = as.POSIXct(
"2015-01-01"
),
EndEventTime = as.POSIXct(
"2015-01-01"
),
ImportStatus = "INITIALIZING"|"IN_PROGRESS"|"FAILED"|"STOPPED"|"COMPLETED",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
),
UpdatedTimestamp = as.POSIXct(
"2015-01-01"
),
ImportStatistics = list(
PrefixesFound = 123,
PrefixesCompleted = 123,
FilesCompleted = 123,
EventsCompleted = 123,
FailedEntries = 123
)
)