interface OtherNameProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ACMPCA.CfnCertificatePropsMixin.OtherNameProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsacmpca#CfnCertificatePropsMixin_OtherNameProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.acmpca.CfnCertificatePropsMixin.OtherNameProperty |
Python | aws_cdk.cfn_property_mixins.aws_acmpca.CfnCertificatePropsMixin.OtherNameProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_acmpca » CfnCertificatePropsMixin » OtherNameProperty |
Defines a custom ASN.1 X.400 GeneralName using an object identifier (OID) and value. The OID must satisfy the regular expression shown below. For more information, see NIST's definition of Object Identifier (OID) .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_acmpca as acmpca } from '@aws-cdk/cfn-property-mixins';
const otherNameProperty: acmpca.CfnCertificatePropsMixin.OtherNameProperty = {
typeId: 'typeId',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | Specifies an OID. |
| value? | string | Specifies an OID value. |
typeId?
Type:
string
(optional)
Specifies an OID.
value?
Type:
string
(optional)
Specifies an OID value.

.NET
Go
Java
Python
TypeScript