aws-cdk-lib.aws_cognito.UserPoolIdentityProviderSamlMetadata
class UserPoolIdentityProviderSamlMetadata
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Cognito.UserPoolIdentityProviderSamlMetadata |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscognito#UserPoolIdentityProviderSamlMetadata |
![]() | software.amazon.awscdk.services.cognito.UserPoolIdentityProviderSamlMetadata |
![]() | aws_cdk.aws_cognito.UserPoolIdentityProviderSamlMetadata |
![]() | 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
Name | Type | Description |
---|---|---|
metadata | string | A URL hosting SAML metadata, or the content of a file containing SAML metadata. |
metadata | User | The 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:
User
The type of metadata, either a URL or file content.
Methods
Name | Description |
---|---|
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
Specify SAML metadata via the contents of a file.
static url(url)
public static url(url: string): UserPoolIdentityProviderSamlMetadata
Parameters
- url
string
Returns
Specify SAML metadata via a URL.