interface SingleSignOnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnDomainPropsMixin.SingleSignOnProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnDomainPropsMixin_SingleSignOnProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnDomainPropsMixin.SingleSignOnProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnDomainPropsMixin.SingleSignOnProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » CfnDomainPropsMixin » SingleSignOnProperty |
The single sign-on details in Amazon DataZone.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const singleSignOnProperty: datazone.CfnDomainPropsMixin.SingleSignOnProperty = {
idcInstanceArn: 'idcInstanceArn',
type: 'type',
userAssignment: 'userAssignment',
};
Properties
| Name | Type | Description |
|---|---|---|
| idc | string | The ARN of the IDC instance. |
| type? | string | The type of single sign-on in Amazon DataZone. |
| user | string | The single sign-on user assignment in Amazon DataZone. |
idcInstanceArn?
Type:
string
(optional)
The ARN of the IDC instance.
type?
Type:
string
(optional)
The type of single sign-on in Amazon DataZone.
userAssignment?
Type:
string
(optional)
The single sign-on user assignment in Amazon DataZone.

.NET
Go
Java
Python
TypeScript