CreateDomainNameRequest

public struct CreateDomainNameRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The reference to an AWS-managed certificate that will be used by edge-optimized endpoint for this domain name. AWS Certificate Manager is the only supported source.

    Declaration

    Swift

    public let certificateArn: String?
  • [Deprecated] The body of the server certificate that will be used by edge-optimized endpoint for this domain name provided by your certificate authority.

    Declaration

    Swift

    public let certificateBody: String?
  • [Deprecated] The intermediate certificates and optionally the root certificate, one after the other without any blank lines, used by an edge-optimized endpoint for this domain name. If you include the root certificate, your certificate chain must start with intermediate certificates and end with the root certificate. Use the intermediate certificates that were provided by your certificate authority. Do not include any intermediaries that are not in the chain of trust path.

    Declaration

    Swift

    public let certificateChain: String?
  • The user-friendly name of the certificate that will be used by edge-optimized endpoint for this domain name.

    Declaration

    Swift

    public let certificateName: String?
  • [Deprecated] Your edge-optimized endpoint’s domain name certificate’s private key.

    Declaration

    Swift

    public let certificatePrivateKey: String?
  • [Required] The name of the DomainName resource.

    Declaration

    Swift

    public let domainName: String
  • The endpoint configuration of this DomainName showing the endpoint types of the domain name.

    Declaration

    Swift

    public let endpointConfiguration: EndpointConfiguration?
  • The reference to an AWS-managed certificate that will be used by regional endpoint for this domain name. AWS Certificate Manager is the only supported source.

    Declaration

    Swift

    public let regionalCertificateArn: String?
  • The user-friendly name of the certificate that will be used by regional endpoint for this domain name.

    Declaration

    Swift

    public let regionalCertificateName: String?
  • The Transport Layer Security (TLS) version + cipher suite for this DomainName. The valid values are TLS_1_0 and TLS_1_2.

    Declaration

    Swift

    public let securityPolicy: SecurityPolicy?
  • The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.

    Declaration

    Swift

    public let tags: [String : String]?
  • Undocumented

    Declaration

    Swift

    public init(certificateArn: String? = nil, certificateBody: String? = nil, certificateChain: String? = nil, certificateName: String? = nil, certificatePrivateKey: String? = nil, domainName: String, endpointConfiguration: EndpointConfiguration? = nil, regionalCertificateArn: String? = nil, regionalCertificateName: String? = nil, securityPolicy: SecurityPolicy? = nil, tags: [String : String]? = nil)