Class CfnDomainConfiguration
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.iot.CfnDomainConfiguration
- All Implemented Interfaces:
IInspectable
,ITaggable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:44.595Z")
@Stability(Stable)
public class CfnDomainConfiguration
extends CfnResource
implements IInspectable, ITaggable
Specifies a domain configuration.
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.*; CfnDomainConfiguration cfnDomainConfiguration = CfnDomainConfiguration.Builder.create(this, "MyCfnDomainConfiguration") .authorizerConfig(AuthorizerConfigProperty.builder() .allowAuthorizerOverride(false) .defaultAuthorizerName("defaultAuthorizerName") .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 TypeClassDescriptionstatic interface
An object that specifies the authorization service for a domain.static final class
A fluent builder forCfnDomainConfiguration
.static interface
The server certificate configuration.static interface
An object that contains information about a server certificate.static interface
An object that specifies the TLS configuration for a domain.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnDomainConfiguration
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnDomainConfiguration
(software.amazon.jsii.JsiiObjectRef objRef) CfnDomainConfiguration
(software.constructs.Construct scope, String id) CfnDomainConfiguration
(software.constructs.Construct scope, String id, CfnDomainConfigurationProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe Amazon Resource Name (ARN) of the domain configuration.The type of service delivered by the domain.The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake.An object that specifies the authorization service for a domain.The name of the domain configuration.The status to which the domain configuration should be updated.The name of the domain.The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake.The server certificate configuration.The type of service delivered by the endpoint.getTags()
Tag Manager which manages the tags for this resource.Metadata which can be used to manage the domain configuration.An object that specifies the TLS configuration for a domain.The certificate used to validate the server certificate and prove domain name ownership.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setAuthorizerConfig
(IResolvable value) An object that specifies the authorization service for a domain.void
An object that specifies the authorization service for a domain.void
setDomainConfigurationName
(String value) The name of the domain configuration.void
The status to which the domain configuration should be updated.void
setDomainName
(String value) The name of the domain.void
setServerCertificateArns
(List<String> value) The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake.void
The server certificate configuration.void
The server certificate configuration.void
setServiceType
(String value) The type of service delivered by the endpoint.void
setTagsRaw
(List<CfnTag> value) Metadata which can be used to manage the domain configuration.void
setTlsConfig
(IResolvable value) An object that specifies the TLS configuration for a domain.void
An object that specifies the TLS configuration for a domain.void
The certificate used to validate the server certificate and prove domain name ownership.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnDomainConfiguration
protected CfnDomainConfiguration(software.amazon.jsii.JsiiObjectRef objRef) -
CfnDomainConfiguration
protected CfnDomainConfiguration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnDomainConfiguration
@Stability(Stable) public CfnDomainConfiguration(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnDomainConfigurationProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties.
-
CfnDomainConfiguration
@Stability(Stable) public CfnDomainConfiguration(@NotNull software.constructs.Construct scope, @NotNull String id) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrArn
The Amazon Resource Name (ARN) of the domain configuration. -
getAttrDomainType
The type of service delivered by the domain. -
getAttrServerCertificates
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.
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
Tag Manager which manages the tags for this resource. -
getAuthorizerConfig
An object that specifies the authorization service for a domain. -
setAuthorizerConfig
An object that specifies the authorization service for a domain. -
setAuthorizerConfig
@Stability(Stable) public void setAuthorizerConfig(@Nullable CfnDomainConfiguration.AuthorizerConfigProperty value) An object that specifies the authorization service for a domain. -
getDomainConfigurationName
The name of the domain configuration. -
setDomainConfigurationName
The name of the domain configuration. -
getDomainConfigurationStatus
The status to which the domain configuration should be updated. -
setDomainConfigurationStatus
The status to which the domain configuration should be updated. -
getDomainName
The name of the domain. -
setDomainName
The name of the domain. -
getServerCertificateArns
The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. -
setServerCertificateArns
The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. -
getServerCertificateConfig
The server certificate configuration. -
setServerCertificateConfig
The server certificate configuration. -
setServerCertificateConfig
@Stability(Stable) public void setServerCertificateConfig(@Nullable CfnDomainConfiguration.ServerCertificateConfigProperty value) The server certificate configuration. -
getServiceType
The type of service delivered by the endpoint. -
setServiceType
The type of service delivered by the endpoint. -
getTagsRaw
Metadata which can be used to manage the domain configuration. -
setTagsRaw
Metadata which can be used to manage the domain configuration. -
getTlsConfig
An object that specifies the TLS configuration for a domain. -
setTlsConfig
An object that specifies the TLS configuration for a domain. -
setTlsConfig
@Stability(Stable) public void setTlsConfig(@Nullable CfnDomainConfiguration.TlsConfigProperty value) An object that specifies the TLS configuration for a domain. -
getValidationCertificateArn
The certificate used to validate the server certificate and prove domain name ownership. -
setValidationCertificateArn
The certificate used to validate the server certificate and prove domain name ownership.
-