package awsacmpca // ASN1 subject for the certificate authority. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // subjectProperty := &SubjectProperty{ // CommonName: jsii.String("commonName"), // Country: jsii.String("country"), // CustomAttributes: []interface{}{ // &CustomAttributeProperty{ // ObjectIdentifier: jsii.String("objectIdentifier"), // Value: jsii.String("value"), // }, // }, // DistinguishedNameQualifier: jsii.String("distinguishedNameQualifier"), // GenerationQualifier: jsii.String("generationQualifier"), // GivenName: jsii.String("givenName"), // Initials: jsii.String("initials"), // Locality: jsii.String("locality"), // Organization: jsii.String("organization"), // OrganizationalUnit: jsii.String("organizationalUnit"), // Pseudonym: jsii.String("pseudonym"), // SerialNumber: jsii.String("serialNumber"), // State: jsii.String("state"), // Surname: jsii.String("surname"), // Title: jsii.String("title"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html // type CfnCertificateAuthority_SubjectProperty struct { // Fully qualified domain name (FQDN) associated with the certificate subject. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-commonname // CommonName *string `field:"optional" json:"commonName" yaml:"commonName"` // Two-digit code that specifies the country in which the certificate subject located. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-country // Country *string `field:"optional" json:"country" yaml:"country"` // Contains a sequence of one or more X.500 relative distinguished names (RDNs), each of which consists of an object identifier (OID) and a value. For more information, see NIST’s definition of [Object Identifier (OID)](https://docs.aws.amazon.com/https://csrc.nist.gov/glossary/term/Object_Identifier) . // // > Custom attributes cannot be used in combination with standard attributes. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-customattributes // CustomAttributes interface{} `field:"optional" json:"customAttributes" yaml:"customAttributes"` // Disambiguating information for the certificate subject. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-distinguishednamequalifier // DistinguishedNameQualifier *string `field:"optional" json:"distinguishedNameQualifier" yaml:"distinguishedNameQualifier"` // Typically a qualifier appended to the name of an individual. // // Examples include Jr. for junior, Sr. for senior, and III for third. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-generationqualifier // GenerationQualifier *string `field:"optional" json:"generationQualifier" yaml:"generationQualifier"` // First name. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-givenname // GivenName *string `field:"optional" json:"givenName" yaml:"givenName"` // Concatenation that typically contains the first letter of the GivenName, the first letter of the middle name if one exists, and the first letter of the SurName. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-initials // Initials *string `field:"optional" json:"initials" yaml:"initials"` // The locality (such as a city or town) in which the certificate subject is located. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-locality // Locality *string `field:"optional" json:"locality" yaml:"locality"` // Legal name of the organization with which the certificate subject is affiliated. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organization // Organization *string `field:"optional" json:"organization" yaml:"organization"` // A subdivision or unit of the organization (such as sales or finance) with which the certificate subject is affiliated. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-organizationalunit // OrganizationalUnit *string `field:"optional" json:"organizationalUnit" yaml:"organizationalUnit"` // Typically a shortened version of a longer GivenName. // // For example, Jonathan is often shortened to John. Elizabeth is often shortened to Beth, Liz, or Eliza. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-pseudonym // Pseudonym *string `field:"optional" json:"pseudonym" yaml:"pseudonym"` // The certificate serial number. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-serialnumber // SerialNumber *string `field:"optional" json:"serialNumber" yaml:"serialNumber"` // State in which the subject of the certificate is located. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-state // State *string `field:"optional" json:"state" yaml:"state"` // Family name. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-surname // Surname *string `field:"optional" json:"surname" yaml:"surname"` // A personal title such as Mr. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-acmpca-certificateauthority-subject.html#cfn-acmpca-certificateauthority-subject-title // Title *string `field:"optional" json:"title" yaml:"title"` }