CreateDomainConfigurationRequest
public struct CreateDomainConfigurationRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
An object that specifies the authorization service for a domain.
Declaration
Swift
public let authorizerConfig: AuthorizerConfig?
-
The name of the domain configuration. This value must be unique to a region.
Declaration
Swift
public let domainConfigurationName: String
-
The name of the domain.
Declaration
Swift
public let domainName: String?
-
The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for AWS-managed domains.
Declaration
Swift
public let serverCertificateArns: [String]?
-
The type of service delivered by the endpoint. AWS IoT Core currently supports only the DATA service type.
Declaration
Swift
public let serviceType: ServiceType?
-
Metadata which can be used to manage the domain configuration. For URI Request parameters use format: …key1=value1&key2=value2… For the CLI command-line parameter use format: &&tags “key1=value1&key2=value2…” For the cli-input-json file use format: “tags”: “key1=value1&key2=value2…”
Declaration
Swift
public let tags: [Tag]?
-
The certificate used to validate the server certificate and prove domain name ownership. This certificate must be signed by a public certificate authority. This value is not required for AWS-managed domains.
Declaration
Swift
public let validationCertificateArn: String?
-
init(authorizerConfig:domainConfigurationName:domainName:serverCertificateArns:serviceType:tags:validationCertificateArn:)
Undocumented
Declaration
Swift
public init(authorizerConfig: AuthorizerConfig? = nil, domainConfigurationName: String, domainName: String? = nil, serverCertificateArns: [String]? = nil, serviceType: ServiceType? = nil, tags: [Tag]? = nil, validationCertificateArn: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws