Show / Hide Table of Contents

Class CfnCertificateAuthority.AccessMethodProperty

Describes the type and format of extension access.

Inheritance
object
CfnCertificateAuthority.AccessMethodProperty
Implements
CfnCertificateAuthority.IAccessMethodProperty
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.ACMPCA
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCertificateAuthority.AccessMethodProperty : CfnCertificateAuthority.IAccessMethodProperty
Syntax (vb)
Public Class CfnCertificateAuthority.AccessMethodProperty Implements CfnCertificateAuthority.IAccessMethodProperty
Remarks

Only one of CustomObjectIdentifier or AccessMethodType may be provided. Providing both results in InvalidArgsException .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-accessmethod.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.ACMPCA;

             var accessMethodProperty = new AccessMethodProperty {
                 AccessMethodType = "accessMethodType",
                 CustomObjectIdentifier = "customObjectIdentifier"
             };

Synopsis

Constructors

AccessMethodProperty()

Describes the type and format of extension access.

Properties

AccessMethodType

Specifies the AccessMethod .

CustomObjectIdentifier

An object identifier (OID) specifying the AccessMethod .

Constructors

AccessMethodProperty()

Describes the type and format of extension access.

public AccessMethodProperty()
Remarks

Only one of CustomObjectIdentifier or AccessMethodType may be provided. Providing both results in InvalidArgsException .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-accessmethod.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.ACMPCA;

             var accessMethodProperty = new AccessMethodProperty {
                 AccessMethodType = "accessMethodType",
                 CustomObjectIdentifier = "customObjectIdentifier"
             };

Properties

AccessMethodType

Specifies the AccessMethod .

public string? AccessMethodType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-accessmethod.html#cfn-acmpca-certificateauthority-accessmethod-accessmethodtype

CustomObjectIdentifier

An object identifier (OID) specifying the AccessMethod .

public string? CustomObjectIdentifier { get; set; }
Property Value

string

Remarks

The OID must satisfy the regular expression shown below. For more information, see NIST's definition of Object Identifier (OID) .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-accessmethod.html#cfn-acmpca-certificateauthority-accessmethod-customobjectidentifier

Implements

CfnCertificateAuthority.IAccessMethodProperty
Back to top Generated by DocFX