Stop Import
cloudtrail_stop_import | R Documentation |
Stops a specified import¶
Description¶
Stops a specified import.
Usage¶
cloudtrail_stop_import(ImportId)
Arguments¶
ImportId |
[required] The ID of the import. |
Value¶
A list with the following syntax:
list(
ImportId = "string",
ImportSource = list(
S3 = list(
S3LocationUri = "string",
S3BucketRegion = "string",
S3BucketAccessRoleArn = "string"
)
),
Destinations = list(
"string"
),
ImportStatus = "INITIALIZING"|"IN_PROGRESS"|"FAILED"|"STOPPED"|"COMPLETED",
CreatedTimestamp = as.POSIXct(
"2015-01-01"
),
UpdatedTimestamp = as.POSIXct(
"2015-01-01"
),
StartEventTime = as.POSIXct(
"2015-01-01"
),
EndEventTime = as.POSIXct(
"2015-01-01"
),
ImportStatistics = list(
PrefixesFound = 123,
PrefixesCompleted = 123,
FilesCompleted = 123,
EventsCompleted = 123,
FailedEntries = 123
)
)
Request syntax¶
svc$stop_import(
ImportId = "string"
)