describeIntegrations
inline suspend fun RdsClient.describeIntegrations(crossinline block: DescribeIntegrationsRequest.Builder.() -> Unit): DescribeIntegrationsResponse
Describe one or more zero-ETL integrations with Amazon Redshift.
Samples
fun main() {
//sampleStart
// The following example retrieves information about a zero ETL integration with Amazon Redshift.
val resp = rdsClient.describeIntegrations {
integrationIdentifier = "5b9f3d79-7392-4a3e-896c-58eaa1b53231"
}
//sampleEnd
}