aws-cdk-lib.aws_grafana.CfnWorkspace.AssertionAttributesProperty

interface AssertionAttributesProperty

LanguageType name
.NETAmazon.CDK.AWS.Grafana.CfnWorkspace.AssertionAttributesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsgrafana#CfnWorkspace_AssertionAttributesProperty
Javasoftware.amazon.awscdk.services.grafana.CfnWorkspace.AssertionAttributesProperty
Pythonaws_cdk.aws_grafana.CfnWorkspace.AssertionAttributesProperty
TypeScript aws-cdk-lib » aws_grafana » CfnWorkspace » 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 { aws_grafana as grafana } from 'aws-cdk-lib';
const assertionAttributesProperty: grafana.CfnWorkspace.AssertionAttributesProperty = {
  email: 'email',
  groups: 'groups',
  login: 'login',
  name: 'name',
  org: 'org',
  role: 'role',
};

Properties

NameTypeDescription
email?stringThe name of the attribute within the SAML assertion to use as the email names for SAML users.
groups?stringThe name of the attribute within the SAML assertion to use as the user full "friendly" names for user groups.
login?stringThe name of the attribute within the SAML assertion to use as the login names for SAML users.
name?stringThe name of the attribute within the SAML assertion to use as the user full "friendly" names for SAML users.
org?stringThe name of the attribute within the SAML assertion to use as the user full "friendly" names for the users' organizations.
role?stringThe 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.