Describe Integrations
glue_describe_integrations | R Documentation |
The API is used to retrieve a list of integrations¶
Description¶
The API is used to retrieve a list of integrations.
Usage¶
Arguments¶
IntegrationIdentifier
The Amazon Resource Name (ARN) for the integration.
Marker
A value that indicates the starting point for the next set of response records in a subsequent request.
MaxRecords
The total number of items to return in the output.
Filters
A list of key and values, to filter down the results. Supported keys are "Status", "IntegrationName", and "SourceArn". IntegrationName is limited to only one value.
Value¶
A list with the following syntax:
list(
Integrations = list(
list(
SourceArn = "string",
TargetArn = "string",
Description = "string",
IntegrationName = "string",
IntegrationArn = "string",
KmsKeyId = "string",
AdditionalEncryptionContext = list(
"string"
),
Tags = list(
list(
key = "string",
value = "string"
)
),
Status = "CREATING"|"ACTIVE"|"MODIFYING"|"FAILED"|"DELETING"|"SYNCING"|"NEEDS_ATTENTION",
CreateTime = as.POSIXct(
"2015-01-01"
),
Errors = list(
list(
ErrorCode = "string",
ErrorMessage = "string"
)
),
DataFilter = "string"
)
),
Marker = "string"
)