Show / Hide Table of Contents

Class CfnSAMLProvider.SAMLPrivateKeyProperty

Contains the private keys for the SAML provider.

Inheritance
object
CfnSAMLProvider.SAMLPrivateKeyProperty
Implements
CfnSAMLProvider.ISAMLPrivateKeyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-samlprovider-samlprivatekey.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-samlprovider-samlprivatekey.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-samlprovider-samlprivatekey.html#cfn-iam-samlprovider-samlprivatekey-keyid

Timestamp

The date and time, in ISO 8601 date-time format, when the private key was uploaded.

public string Timestamp { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-samlprovider-samlprivatekey.html#cfn-iam-samlprovider-samlprivatekey-timestamp

Implements

CfnSAMLProvider.ISAMLPrivateKeyProperty
Back to top Generated by DocFX