interface CfnConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnConnectionMixinProps |
Properties for CfnConnectionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-connection.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const cfnConnectionMixinProps: datazone_mixins.CfnConnectionMixinProps = {
awsLocation: {
accessRole: 'accessRole',
awsAccountId: 'awsAccountId',
awsRegion: 'awsRegion',
iamConnectionId: 'iamConnectionId',
},
description: 'description',
domainIdentifier: 'domainIdentifier',
enableTrustedIdentityPropagation: false,
environmentIdentifier: 'environmentIdentifier',
name: 'name',
projectIdentifier: 'projectIdentifier',
props: {
amazonQProperties: {
authMode: 'authMode',
isEnabled: false,
profileArn: 'profileArn',
},
athenaProperties: {
workgroupName: 'workgroupName',
},
glueProperties: {
glueConnectionInput: {
athenaProperties: {
athenaPropertiesKey: 'athenaProperties',
},
authenticationConfiguration: {
authenticationType: 'authenticationType',
basicAuthenticationCredentials: {
password: 'password',
userName: 'userName',
},
customAuthenticationCredentials: {
customAuthenticationCredentialsKey: 'customAuthenticationCredentials',
},
kmsKeyArn: 'kmsKeyArn',
oAuth2Properties: {
authorizationCodeProperties: {
authorizationCode: 'authorizationCode',
redirectUri: 'redirectUri',
},
oAuth2ClientApplication: {
awsManagedClientApplicationReference: 'awsManagedClientApplicationReference',
userManagedClientApplicationClientId: 'userManagedClientApplicationClientId',
},
oAuth2Credentials: {
accessToken: 'accessToken',
jwtToken: 'jwtToken',
refreshToken: 'refreshToken',
userManagedClientApplicationClientSecret: 'userManagedClientApplicationClientSecret',
},
oAuth2GrantType: 'oAuth2GrantType',
tokenUrl: 'tokenUrl',
tokenUrlParametersMap: {
tokenUrlParametersMapKey: 'tokenUrlParametersMap',
},
},
secretArn: 'secretArn',
},
connectionProperties: {
connectionPropertiesKey: 'connectionProperties',
},
connectionType: 'connectionType',
description: 'description',
matchCriteria: 'matchCriteria',
name: 'name',
physicalConnectionRequirements: {
availabilityZone: 'availabilityZone',
securityGroupIdList: ['securityGroupIdList'],
subnetId: 'subnetId',
subnetIdList: ['subnetIdList'],
},
pythonProperties: {
pythonPropertiesKey: 'pythonProperties',
},
sparkProperties: {
sparkPropertiesKey: 'sparkProperties',
},
validateCredentials: false,
validateForComputeEnvironments: ['validateForComputeEnvironments'],
},
},
hyperPodProperties: {
clusterName: 'clusterName',
},
iamProperties: {
glueLineageSyncEnabled: false,
},
mlflowProperties: {
trackingServerArn: 'trackingServerArn',
},
redshiftProperties: {
credentials: {
secretArn: 'secretArn',
usernamePassword: {
password: 'password',
username: 'username',
},
},
databaseName: 'databaseName',
host: 'host',
lineageSync: {
enabled: false,
schedule: {
schedule: 'schedule',
},
},
port: 123,
storage: {
clusterName: 'clusterName',
workgroupName: 'workgroupName',
},
},
s3Properties: {
s3AccessGrantLocationId: 's3AccessGrantLocationId',
s3Uri: 's3Uri',
},
sparkEmrProperties: {
computeArn: 'computeArn',
instanceProfileArn: 'instanceProfileArn',
javaVirtualEnv: 'javaVirtualEnv',
logUri: 'logUri',
managedEndpointArn: 'managedEndpointArn',
pythonVirtualEnv: 'pythonVirtualEnv',
runtimeRole: 'runtimeRole',
trustedCertificatesS3Uri: 'trustedCertificatesS3Uri',
},
sparkGlueProperties: {
additionalArgs: {
connection: 'connection',
},
glueConnectionName: 'glueConnectionName',
glueVersion: 'glueVersion',
idleTimeout: 123,
javaVirtualEnv: 'javaVirtualEnv',
numberOfWorkers: 123,
pythonVirtualEnv: 'pythonVirtualEnv',
workerType: 'workerType',
},
},
scope: 'scope',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | IResolvable | Aws | The location where the connection is created. |
| description? | string | Connection description. |
| domain | string | The ID of the domain where the connection is created. |
| enable | boolean | IResolvable | Specifies whether the trusted identity propagation is enabled. |
| environment | string | The ID of the environment where the connection is created. |
| name? | string | The name of the connection. |
| project | string | The identifier of the project in which the connection should be created. |
| props? | IResolvable | Connection | Connection props. |
| scope? | string | The scope of the connection. |
awsLocation?
Type:
IResolvable | Aws
(optional)
The location where the connection is created.
description?
Type:
string
(optional)
Connection description.
domainIdentifier?
Type:
string
(optional)
The ID of the domain where the connection is created.
enableTrustedIdentityPropagation?
Type:
boolean | IResolvable
(optional)
Specifies whether the trusted identity propagation is enabled.
environmentIdentifier?
Type:
string
(optional)
The ID of the environment where the connection is created.
name?
Type:
string
(optional)
The name of the connection.
projectIdentifier?
Type:
string
(optional)
The identifier of the project in which the connection should be created.
If
props?
Type:
IResolvable | Connection
(optional)
Connection props.
scope?
Type:
string
(optional)
The scope of the connection.

.NET
Go
Java
Python
TypeScript