interface SAMLPrivateKeyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IAM.CfnSAMLProviderPropsMixin.SAMLPrivateKeyProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiam#CfnSAMLProviderPropsMixin_SAMLPrivateKeyProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iam.CfnSAMLProviderPropsMixin.SAMLPrivateKeyProperty |
Python | aws_cdk.cfn_property_mixins.aws_iam.CfnSAMLProviderPropsMixin.SAMLPrivateKeyProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iam » 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 { aws_iam as iam } from '@aws-cdk/cfn-property-mixins';
const sAMLPrivateKeyProperty: iam.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