CfnDomainConfigurationProps

class aws_cdk.aws_iot.CfnDomainConfigurationProps(*, authorizer_config=None, domain_configuration_name=None, domain_configuration_status=None, domain_name=None, server_certificate_arns=None, server_certificate_config=None, service_type=None, tags=None, tls_config=None, validation_certificate_arn=None)

Bases: object

Properties for defining a CfnDomainConfiguration.

Parameters:
  • authorizer_config (Union[IResolvable, AuthorizerConfigProperty, Dict[str, Any], None]) – An object that specifies the authorization service for a domain.

  • domain_configuration_name (Optional[str]) – The name of the domain configuration. This value must be unique to a region.

  • domain_configuration_status (Optional[str]) – The status to which the domain configuration should be updated. Valid values: ENABLED | DISABLED

  • domain_name (Optional[str]) – The name of the domain.

  • server_certificate_arns (Optional[Sequence[str]]) – 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.

  • server_certificate_config (Union[IResolvable, ServerCertificateConfigProperty, Dict[str, Any], None]) – The server certificate configuration. For more information, see Configurable endpoints from the AWS IoT Core Developer Guide.

  • service_type (Optional[str]) – The type of service delivered by the endpoint. .. epigraph:: AWS IoT Core currently supports only the DATA service type.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Metadata which can be used to manage the domain configuration. .. epigraph:: 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…”

  • tls_config (Union[IResolvable, TlsConfigProperty, Dict[str, Any], None]) – An object that specifies the TLS configuration for a domain.

  • validation_certificate_arn (Optional[str]) – 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iot as iot

cfn_domain_configuration_props = iot.CfnDomainConfigurationProps(
    authorizer_config=iot.CfnDomainConfiguration.AuthorizerConfigProperty(
        allow_authorizer_override=False,
        default_authorizer_name="defaultAuthorizerName"
    ),
    domain_configuration_name="domainConfigurationName",
    domain_configuration_status="domainConfigurationStatus",
    domain_name="domainName",
    server_certificate_arns=["serverCertificateArns"],
    server_certificate_config=iot.CfnDomainConfiguration.ServerCertificateConfigProperty(
        enable_ocsp_check=False
    ),
    service_type="serviceType",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    tls_config=iot.CfnDomainConfiguration.TlsConfigProperty(
        security_policy="securityPolicy"
    ),
    validation_certificate_arn="validationCertificateArn"
)

Attributes

authorizer_config

An object that specifies the authorization service for a domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-authorizerconfig

domain_configuration_name

The name of the domain configuration.

This value must be unique to a region.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-domainconfigurationname

domain_configuration_status

The status to which the domain configuration should be updated.

Valid values: ENABLED | DISABLED

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-domainconfigurationstatus

domain_name

The name of the domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-domainname

server_certificate_arns

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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-servercertificatearns

server_certificate_config

The server certificate configuration.

For more information, see Configurable endpoints from the AWS IoT Core Developer Guide.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-servercertificateconfig

service_type

The type of service delivered by the endpoint.

AWS IoT Core currently supports only the DATA service type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-servicetype

tags

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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-tags

tls_config

An object that specifies the TLS configuration for a domain.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-tlsconfig

validation_certificate_arn

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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-validationcertificatearn