Class CfnSAMLProvider.SAMLPrivateKeyProperty
Contains the private keys for the SAML provider.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSAMLProvider.SAMLPrivateKeyProperty : CfnSAMLProvider.ISAMLPrivateKeyProperty
Syntax (vb)
Public Class CfnSAMLProvider.SAMLPrivateKeyProperty Implements CfnSAMLProvider.ISAMLPrivateKeyProperty
Remarks
This data type is used as a response element in the GetSAMLProvider operation.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IAM;
var sAMLPrivateKeyProperty = new SAMLPrivateKeyProperty {
KeyId = "keyId",
Timestamp = "timestamp"
};
Synopsis
Constructors
| SAMLPrivateKeyProperty() | Contains the private keys for the SAML provider. |
Properties
| KeyId | The unique identifier for the SAML private key. |
| Timestamp | The date and time, in ISO 8601 date-time format, when the private key was uploaded. |
Constructors
SAMLPrivateKeyProperty()
Contains the private keys for the SAML provider.
public SAMLPrivateKeyProperty()
Remarks
This data type is used as a response element in the GetSAMLProvider operation.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IAM;
var sAMLPrivateKeyProperty = new SAMLPrivateKeyProperty {
KeyId = "keyId",
Timestamp = "timestamp"
};
Properties
KeyId
The unique identifier for the SAML private key.
public string KeyId { get; set; }
Property Value
Remarks
Timestamp
The date and time, in ISO 8601 date-time format, when the private key was uploaded.
public string Timestamp { get; set; }