Interface CfnDomainConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainConfigurationProps.Jsii$Proxy
CfnDomainConfiguration.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iot.*;
CfnDomainConfigurationProps cfnDomainConfigurationProps = CfnDomainConfigurationProps.builder()
.applicationProtocol("applicationProtocol")
.authenticationType("authenticationType")
.authorizerConfig(AuthorizerConfigProperty.builder()
.allowAuthorizerOverride(false)
.defaultAuthorizerName("defaultAuthorizerName")
.build())
.clientCertificateConfig(ClientCertificateConfigProperty.builder()
.clientCertificateCallbackArn("clientCertificateCallbackArn")
.build())
.domainConfigurationName("domainConfigurationName")
.domainConfigurationStatus("domainConfigurationStatus")
.domainName("domainName")
.serverCertificateArns(List.of("serverCertificateArns"))
.serverCertificateConfig(ServerCertificateConfigProperty.builder()
.enableOcspCheck(false)
.ocspAuthorizedResponderArn("ocspAuthorizedResponderArn")
.ocspLambdaArn("ocspLambdaArn")
.build())
.serviceType("serviceType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.tlsConfig(TlsConfigProperty.builder()
.securityPolicy("securityPolicy")
.build())
.validationCertificateArn("validationCertificateArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainConfigurationPropsstatic final classAn implementation forCfnDomainConfigurationProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn enumerated string that specifies the application-layer protocol.default StringAn enumerated string that specifies the authentication type.default ObjectAn object that specifies the authorization service for a domain.default ObjectAn object that specifies the client certificate configuration for a domain.default StringThe name of the domain configuration.default StringThe status to which the domain configuration should be updated.default StringThe name of the domain.The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake.default ObjectThe server certificate configuration.default StringThe type of service delivered by the endpoint.getTags()Metadata which can be used to manage the domain configuration.default ObjectAn object that specifies the TLS configuration for a domain.default StringThe certificate used to validate the server certificate and prove domain name ownership.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationProtocol
An enumerated string that specifies the application-layer protocol.- See Also:
-
getAuthenticationType
An enumerated string that specifies the authentication type.- See Also:
-
getAuthorizerConfig
An object that specifies the authorization service for a domain.Returns union: either
IResolvableorCfnDomainConfiguration.AuthorizerConfigProperty- See Also:
-
getClientCertificateConfig
An object that specifies the client certificate configuration for a domain.Returns union: either
IResolvableorCfnDomainConfiguration.ClientCertificateConfigProperty- See Also:
-
getDomainConfigurationName
The name of the domain configuration.This value must be unique to a region.
- See Also:
-
getDomainConfigurationStatus
The status to which the domain configuration should be updated.Valid values:
ENABLED|DISABLED- See Also:
-
getDomainName
The name of the domain.- See Also:
-
getServerCertificateArns
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.
- See Also:
-
getServerCertificateConfig
The server certificate configuration.For more information, see Configurable endpoints from the AWS IoT Core Developer Guide.
Returns union: either
IResolvableorCfnDomainConfiguration.ServerCertificateConfigProperty- See Also:
-
getServiceType
The type of service delivered by the endpoint.AWS IoT Core currently supports only the
DATAservice type.- See Also:
-
getTags
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..."
- See Also:
-
getTlsConfig
An object that specifies the TLS configuration for a domain.Returns union: either
IResolvableorCfnDomainConfiguration.TlsConfigProperty- See Also:
-
getValidationCertificateArn
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.
- See Also:
-
builder
-