interface SingleSignOnProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnDomain.SingleSignOnProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnDomain_SingleSignOnProperty |
Java | software.amazon.awscdk.services.datazone.CfnDomain.SingleSignOnProperty |
Python | aws_cdk.aws_datazone.CfnDomain.SingleSignOnProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnDomain » 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-lib';
const singleSignOnProperty: datazone.CfnDomain.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