interface SAMLPrivateKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IAM.Mixins.CfnSAMLProviderPropsMixin.SAMLPrivateKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiam/mixins#CfnSAMLProviderPropsMixin_SAMLPrivateKeyProperty |
Java | software.amazon.awscdk.mixins.preview.services.iam.mixins.CfnSAMLProviderPropsMixin.SAMLPrivateKeyProperty |
Python | aws_cdk.mixins_preview.aws_iam.mixins.CfnSAMLProviderPropsMixin.SAMLPrivateKeyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iam » mixins » CfnSAMLProviderPropsMixin » SAMLPrivateKeyProperty |
Contains the private keys for the SAML provider.
This data type is used as a response element in the GetSAMLProvider operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iam_mixins } from '@aws-cdk/mixins-preview/aws-iam';
const sAMLPrivateKeyProperty: iam_mixins.CfnSAMLProviderPropsMixin.SAMLPrivateKeyProperty = {
keyId: 'keyId',
timestamp: 'timestamp',
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string | The unique identifier for the SAML private key. |
| timestamp? | string | The date and time, in ISO 8601 date-time format, when the private key was uploaded. |
keyId?
Type:
string
(optional)
The unique identifier for the SAML private key.
timestamp?
Type:
string
(optional)
The date and time, in ISO 8601 date-time format, when the private key was uploaded.

.NET
Go
Java
Python
TypeScript