aws-cdk-lib.aws_cognito.UserPoolIdentityProviderSamlMetadata

class UserPoolIdentityProviderSamlMetadata

LanguageType name
.NETAmazon.CDK.AWS.Cognito.UserPoolIdentityProviderSamlMetadata
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscognito#UserPoolIdentityProviderSamlMetadata
Javasoftware.amazon.awscdk.services.cognito.UserPoolIdentityProviderSamlMetadata
Pythonaws_cdk.aws_cognito.UserPoolIdentityProviderSamlMetadata
TypeScript (source)aws-cdk-lib » aws_cognito » UserPoolIdentityProviderSamlMetadata

Metadata for a SAML user pool identity provider.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cognito as cognito } from 'aws-cdk-lib';
const userPoolIdentityProviderSamlMetadata = cognito.UserPoolIdentityProviderSamlMetadata.file('fileContent');

Properties

NameTypeDescription
metadataContentstringA URL hosting SAML metadata, or the content of a file containing SAML metadata.
metadataTypeUserPoolIdentityProviderSamlMetadataTypeThe type of metadata, either a URL or file content.

metadataContent

Type: string

A URL hosting SAML metadata, or the content of a file containing SAML metadata.


metadataType

Type: UserPoolIdentityProviderSamlMetadataType

The type of metadata, either a URL or file content.

Methods

NameDescription
static file(fileContent)Specify SAML metadata via the contents of a file.
static url(url)Specify SAML metadata via a URL.

static file(fileContent)

public static file(fileContent: string): UserPoolIdentityProviderSamlMetadata

Parameters

  • fileContent string

Returns

  • UserPoolIdentityProviderSamlMetadata

Specify SAML metadata via the contents of a file.


static url(url)

public static url(url: string): UserPoolIdentityProviderSamlMetadata

Parameters

  • url string

Returns

  • UserPoolIdentityProviderSamlMetadata

Specify SAML metadata via a URL.