interface ProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Interconnect.CfnConnection.ProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinterconnect#CfnConnection_ProviderProperty |
Java | software.amazon.awscdk.services.interconnect.CfnConnection.ProviderProperty |
Python | aws_cdk.aws_interconnect.CfnConnection.ProviderProperty |
TypeScript | aws-cdk-lib » aws_interconnect » CfnConnection » ProviderProperty |
The partner cloud service provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_interconnect as interconnect } from 'aws-cdk-lib';
const providerProperty: interconnect.CfnConnection.ProviderProperty = {
cloudServiceProvider: 'cloudServiceProvider',
lastMileProvider: 'lastMileProvider',
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string | The name of the cloud service provider. |
| last | string | The name of the last mile provider. |
cloudServiceProvider?
Type:
string
(optional)
The name of the cloud service provider.
lastMileProvider?
Type:
string
(optional)
The name of the last mile provider.

.NET
Go
Java
Python
TypeScript