Interface CfnDomainConfigurationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainConfigurationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-11T15:56:00.177Z")
@Stability(Stable)
public interface CfnDomainConfigurationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
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) .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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDomainConfigurationProps
static final class
An implementation forCfnDomainConfigurationProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
default String
default Object
An object that specifies the authorization service for a domain.default Object
default String
The name of the domain configuration.default String
The status to which the domain configuration should be updated.default String
The name of the domain.The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake.default Object
The server certificate configuration.default String
The type of service delivered by the endpoint.getTags()
Metadata which can be used to manage the domain configuration.default Object
An object that specifies the TLS configuration for a domain.default String
The 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
- See Also:
-
getAuthenticationType
- See Also:
-
getAuthorizerConfig
An object that specifies the authorization service for a domain.- See Also:
-
getClientCertificateConfig
- 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.
- See Also:
-
getServiceType
The type of service delivered by the endpoint.AWS IoT Core currently supports only the
DATA
service 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.- 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
-