interface AssertionAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Grafana.Mixins.CfnWorkspacePropsMixin.AssertionAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgrafana/mixins#CfnWorkspacePropsMixin_AssertionAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.grafana.mixins.CfnWorkspacePropsMixin.AssertionAttributesProperty |
Python | aws_cdk.mixins_preview.aws_grafana.mixins.CfnWorkspacePropsMixin.AssertionAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_grafana » mixins » CfnWorkspacePropsMixin » AssertionAttributesProperty |
A structure that defines which attributes in the IdP assertion are to be used to define information about the users authenticated by the IdP to use the workspace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as grafana_mixins } from '@aws-cdk/mixins-preview/aws-grafana';
const assertionAttributesProperty: grafana_mixins.CfnWorkspacePropsMixin.AssertionAttributesProperty = {
email: 'email',
groups: 'groups',
login: 'login',
name: 'name',
org: 'org',
role: 'role',
};
Properties
| Name | Type | Description |
|---|---|---|
| email? | string | The name of the attribute within the SAML assertion to use as the email names for SAML users. |
| groups? | string | The name of the attribute within the SAML assertion to use as the user full "friendly" names for user groups. |
| login? | string | The name of the attribute within the SAML assertion to use as the login names for SAML users. |
| name? | string | The name of the attribute within the SAML assertion to use as the user full "friendly" names for SAML users. |
| org? | string | The name of the attribute within the SAML assertion to use as the user full "friendly" names for the users' organizations. |
| role? | string | The name of the attribute within the SAML assertion to use as the user roles. |
email?
Type:
string
(optional)
The name of the attribute within the SAML assertion to use as the email names for SAML users.
groups?
Type:
string
(optional)
The name of the attribute within the SAML assertion to use as the user full "friendly" names for user groups.
login?
Type:
string
(optional)
The name of the attribute within the SAML assertion to use as the login names for SAML users.
name?
Type:
string
(optional)
The name of the attribute within the SAML assertion to use as the user full "friendly" names for SAML users.
org?
Type:
string
(optional)
The name of the attribute within the SAML assertion to use as the user full "friendly" names for the users' organizations.
role?
Type:
string
(optional)
The name of the attribute within the SAML assertion to use as the user roles.

.NET
Go
Java
Python
TypeScript