aws-cdk-lib 2.215.0__py3-none-any.whl → 2.217.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +90 -58
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.215.0.jsii.tgz → aws-cdk-lib@2.217.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amplify/__init__.py +8 -8
- aws_cdk/aws_apigateway/__init__.py +26 -6
- aws_cdk/aws_apigatewayv2/__init__.py +32 -21
- aws_cdk/aws_appmesh/__init__.py +12 -12
- aws_cdk/aws_appstream/__init__.py +14 -4
- aws_cdk/aws_appsync/__init__.py +3 -3
- aws_cdk/aws_aps/__init__.py +459 -0
- aws_cdk/aws_batch/__init__.py +6 -2
- aws_cdk/aws_bedrock/__init__.py +162 -0
- aws_cdk/aws_bedrockagentcore/__init__.py +3178 -0
- aws_cdk/aws_certificatemanager/__init__.py +9 -10
- aws_cdk/aws_cleanrooms/__init__.py +163 -0
- aws_cdk/aws_cloudformation/__init__.py +14 -14
- aws_cdk/aws_cloudfront/__init__.py +91 -10
- aws_cdk/aws_cloudfront_origins/__init__.py +422 -47
- aws_cdk/aws_cognito/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +138 -10
- aws_cdk/aws_cur/__init__.py +57 -3
- aws_cdk/aws_datasync/__init__.py +351 -0
- aws_cdk/aws_datazone/__init__.py +675 -2
- aws_cdk/aws_dynamodb/__init__.py +123 -0
- aws_cdk/aws_ec2/__init__.py +55 -10
- aws_cdk/aws_ecr/__init__.py +4 -0
- aws_cdk/aws_ecs/__init__.py +55 -12
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +275 -0
- aws_cdk/aws_elasticsearch/__init__.py +2 -2
- aws_cdk/aws_events/__init__.py +187 -0
- aws_cdk/aws_evs/__init__.py +58 -4
- aws_cdk/aws_gamelift/__init__.py +72 -56
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iotcoredeviceadvisor/__init__.py +35 -38
- aws_cdk/aws_iotsitewise/__init__.py +75 -111
- aws_cdk/aws_kinesisanalytics/__init__.py +315 -125
- aws_cdk/aws_kms/__init__.py +10 -2
- aws_cdk/aws_lambda/__init__.py +62 -8
- aws_cdk/aws_medialive/__init__.py +127 -0
- aws_cdk/aws_mediapackage/__init__.py +2 -2
- aws_cdk/aws_networkfirewall/__init__.py +10 -10
- aws_cdk/aws_networkmanager/__init__.py +63 -0
- aws_cdk/aws_odb/__init__.py +2082 -195
- aws_cdk/aws_omics/__init__.py +1414 -171
- aws_cdk/aws_opensearchserverless/__init__.py +164 -21
- aws_cdk/aws_opensearchservice/__init__.py +5 -4
- aws_cdk/aws_pcs/__init__.py +9 -9
- aws_cdk/aws_quicksight/__init__.py +295 -3
- aws_cdk/aws_rds/__init__.py +338 -58
- aws_cdk/aws_route53/__init__.py +5926 -4376
- aws_cdk/aws_sagemaker/__init__.py +251 -1
- aws_cdk/aws_servicecatalog/__init__.py +162 -154
- aws_cdk/aws_smsvoice/__init__.py +5218 -0
- aws_cdk/aws_stepfunctions_tasks/__init__.py +669 -81
- aws_cdk/aws_transfer/__init__.py +13 -12
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -1
- aws_cdk/aws_workspacesinstances/__init__.py +641 -2
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/RECORD +64 -62
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.215.0.dist-info → aws_cdk_lib-2.217.0.dist-info}/top_level.txt +0 -0
|
@@ -538,6 +538,14 @@ arn = api.arn_for_execute_api_v2("$connect", "dev")
|
|
|
538
538
|
|
|
539
539
|
For a detailed explanation of this function, including usage and examples, please refer to the [Generating ARN for Execute API](#generating-arn-for-execute-api) section under HTTP API.
|
|
540
540
|
|
|
541
|
+
To disable schema validation, set `disableSchemaValidation` to true.
|
|
542
|
+
|
|
543
|
+
```python
|
|
544
|
+
apigwv2.WebSocketApi(self, "api",
|
|
545
|
+
disable_schema_validation=True
|
|
546
|
+
)
|
|
547
|
+
```
|
|
548
|
+
|
|
541
549
|
You can configure IP address type for the API endpoint using `ipAddressType` property.
|
|
542
550
|
Valid values are `IPV4` (default) and `DUAL_STACK`.
|
|
543
551
|
|
|
@@ -11722,6 +11730,7 @@ class WebSocketApi(
|
|
|
11722
11730
|
connect_route_options: typing.Optional[typing.Union["WebSocketRouteOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
11723
11731
|
default_route_options: typing.Optional[typing.Union["WebSocketRouteOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
11724
11732
|
description: typing.Optional[builtins.str] = None,
|
|
11733
|
+
disable_schema_validation: typing.Optional[builtins.bool] = None,
|
|
11725
11734
|
disconnect_route_options: typing.Optional[typing.Union["WebSocketRouteOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
11726
11735
|
ip_address_type: typing.Optional[IpAddressType] = None,
|
|
11727
11736
|
route_selection_expression: typing.Optional[builtins.str] = None,
|
|
@@ -11734,6 +11743,7 @@ class WebSocketApi(
|
|
|
11734
11743
|
:param connect_route_options: Options to configure a '$connect' route. Default: - no '$connect' route configured
|
|
11735
11744
|
:param default_route_options: Options to configure a '$default' route. Default: - no '$default' route configured
|
|
11736
11745
|
:param description: The description of the API. Default: - none
|
|
11746
|
+
:param disable_schema_validation: Avoid validating models when creating a deployment. Default: false
|
|
11737
11747
|
:param disconnect_route_options: Options to configure a '$disconnect' route. Default: - no '$disconnect' route configured
|
|
11738
11748
|
:param ip_address_type: The IP address types that can invoke the API. Default: undefined - AWS default is IPV4
|
|
11739
11749
|
:param route_selection_expression: The route selection expression for the API. Default: '$request.body.action'
|
|
@@ -11748,6 +11758,7 @@ class WebSocketApi(
|
|
|
11748
11758
|
connect_route_options=connect_route_options,
|
|
11749
11759
|
default_route_options=default_route_options,
|
|
11750
11760
|
description=description,
|
|
11761
|
+
disable_schema_validation=disable_schema_validation,
|
|
11751
11762
|
disconnect_route_options=disconnect_route_options,
|
|
11752
11763
|
ip_address_type=ip_address_type,
|
|
11753
11764
|
route_selection_expression=route_selection_expression,
|
|
@@ -12069,6 +12080,7 @@ class WebSocketApiKeySelectionExpression(
|
|
|
12069
12080
|
"connect_route_options": "connectRouteOptions",
|
|
12070
12081
|
"default_route_options": "defaultRouteOptions",
|
|
12071
12082
|
"description": "description",
|
|
12083
|
+
"disable_schema_validation": "disableSchemaValidation",
|
|
12072
12084
|
"disconnect_route_options": "disconnectRouteOptions",
|
|
12073
12085
|
"ip_address_type": "ipAddressType",
|
|
12074
12086
|
"route_selection_expression": "routeSelectionExpression",
|
|
@@ -12083,6 +12095,7 @@ class WebSocketApiProps:
|
|
|
12083
12095
|
connect_route_options: typing.Optional[typing.Union["WebSocketRouteOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
12084
12096
|
default_route_options: typing.Optional[typing.Union["WebSocketRouteOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
12085
12097
|
description: typing.Optional[builtins.str] = None,
|
|
12098
|
+
disable_schema_validation: typing.Optional[builtins.bool] = None,
|
|
12086
12099
|
disconnect_route_options: typing.Optional[typing.Union["WebSocketRouteOptions", typing.Dict[builtins.str, typing.Any]]] = None,
|
|
12087
12100
|
ip_address_type: typing.Optional[IpAddressType] = None,
|
|
12088
12101
|
route_selection_expression: typing.Optional[builtins.str] = None,
|
|
@@ -12094,6 +12107,7 @@ class WebSocketApiProps:
|
|
|
12094
12107
|
:param connect_route_options: Options to configure a '$connect' route. Default: - no '$connect' route configured
|
|
12095
12108
|
:param default_route_options: Options to configure a '$default' route. Default: - no '$default' route configured
|
|
12096
12109
|
:param description: The description of the API. Default: - none
|
|
12110
|
+
:param disable_schema_validation: Avoid validating models when creating a deployment. Default: false
|
|
12097
12111
|
:param disconnect_route_options: Options to configure a '$disconnect' route. Default: - no '$disconnect' route configured
|
|
12098
12112
|
:param ip_address_type: The IP address types that can invoke the API. Default: undefined - AWS default is IPV4
|
|
12099
12113
|
:param route_selection_expression: The route selection expression for the API. Default: '$request.body.action'
|
|
@@ -12102,25 +12116,8 @@ class WebSocketApiProps:
|
|
|
12102
12116
|
|
|
12103
12117
|
Example::
|
|
12104
12118
|
|
|
12105
|
-
|
|
12106
|
-
|
|
12107
|
-
|
|
12108
|
-
# This function handles your auth logic
|
|
12109
|
-
# auth_handler: lambda.Function
|
|
12110
|
-
|
|
12111
|
-
# This function handles your WebSocket requests
|
|
12112
|
-
# handler: lambda.Function
|
|
12113
|
-
|
|
12114
|
-
|
|
12115
|
-
authorizer = WebSocketLambdaAuthorizer("Authorizer", auth_handler)
|
|
12116
|
-
|
|
12117
|
-
integration = WebSocketLambdaIntegration("Integration", handler)
|
|
12118
|
-
|
|
12119
|
-
apigwv2.WebSocketApi(self, "WebSocketApi",
|
|
12120
|
-
connect_route_options=apigwv2.WebSocketRouteOptions(
|
|
12121
|
-
integration=integration,
|
|
12122
|
-
authorizer=authorizer
|
|
12123
|
-
)
|
|
12119
|
+
web_socket_api = apigwv2.WebSocketApi(self, "mywsapi",
|
|
12120
|
+
api_key_selection_expression=apigwv2.WebSocketApiKeySelectionExpression.HEADER_X_API_KEY
|
|
12124
12121
|
)
|
|
12125
12122
|
'''
|
|
12126
12123
|
if isinstance(connect_route_options, dict):
|
|
@@ -12136,6 +12133,7 @@ class WebSocketApiProps:
|
|
|
12136
12133
|
check_type(argname="argument connect_route_options", value=connect_route_options, expected_type=type_hints["connect_route_options"])
|
|
12137
12134
|
check_type(argname="argument default_route_options", value=default_route_options, expected_type=type_hints["default_route_options"])
|
|
12138
12135
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
12136
|
+
check_type(argname="argument disable_schema_validation", value=disable_schema_validation, expected_type=type_hints["disable_schema_validation"])
|
|
12139
12137
|
check_type(argname="argument disconnect_route_options", value=disconnect_route_options, expected_type=type_hints["disconnect_route_options"])
|
|
12140
12138
|
check_type(argname="argument ip_address_type", value=ip_address_type, expected_type=type_hints["ip_address_type"])
|
|
12141
12139
|
check_type(argname="argument route_selection_expression", value=route_selection_expression, expected_type=type_hints["route_selection_expression"])
|
|
@@ -12150,6 +12148,8 @@ class WebSocketApiProps:
|
|
|
12150
12148
|
self._values["default_route_options"] = default_route_options
|
|
12151
12149
|
if description is not None:
|
|
12152
12150
|
self._values["description"] = description
|
|
12151
|
+
if disable_schema_validation is not None:
|
|
12152
|
+
self._values["disable_schema_validation"] = disable_schema_validation
|
|
12153
12153
|
if disconnect_route_options is not None:
|
|
12154
12154
|
self._values["disconnect_route_options"] = disconnect_route_options
|
|
12155
12155
|
if ip_address_type is not None:
|
|
@@ -12206,6 +12206,15 @@ class WebSocketApiProps:
|
|
|
12206
12206
|
result = self._values.get("description")
|
|
12207
12207
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
12208
12208
|
|
|
12209
|
+
@builtins.property
|
|
12210
|
+
def disable_schema_validation(self) -> typing.Optional[builtins.bool]:
|
|
12211
|
+
'''Avoid validating models when creating a deployment.
|
|
12212
|
+
|
|
12213
|
+
:default: false
|
|
12214
|
+
'''
|
|
12215
|
+
result = self._values.get("disable_schema_validation")
|
|
12216
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
12217
|
+
|
|
12209
12218
|
@builtins.property
|
|
12210
12219
|
def disconnect_route_options(self) -> typing.Optional["WebSocketRouteOptions"]:
|
|
12211
12220
|
'''Options to configure a '$disconnect' route.
|
|
@@ -17148,7 +17157,7 @@ class CfnDomainName(
|
|
|
17148
17157
|
:param certificate_name: The user-friendly name of the certificate that will be used by the edge-optimized endpoint for this domain name.
|
|
17149
17158
|
:param endpoint_type: The endpoint type.
|
|
17150
17159
|
:param ip_address_type: The IP address types that can invoke the domain name. Use ``ipv4`` to allow only IPv4 addresses to invoke your domain name, or use ``dualstack`` to allow both IPv4 and IPv6 addresses to invoke your domain name.
|
|
17151
|
-
:param ownership_verification_certificate_arn: The Amazon resource name (ARN) for the public certificate issued by
|
|
17160
|
+
:param ownership_verification_certificate_arn: The Amazon resource name (ARN) for the public certificate issued by Certificate Manager . This ARN is used to validate custom domain ownership. It's required only if you configure mutual TLS and use either an ACM-imported or a private CA certificate ARN as the regionalCertificateArn.
|
|
17152
17161
|
:param security_policy: The Transport Layer Security (TLS) version of the security policy for this domain name. The valid values are ``TLS_1_0`` and ``TLS_1_2`` .
|
|
17153
17162
|
|
|
17154
17163
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-domainname-domainnameconfiguration.html
|
|
@@ -17235,7 +17244,7 @@ class CfnDomainName(
|
|
|
17235
17244
|
def ownership_verification_certificate_arn(
|
|
17236
17245
|
self,
|
|
17237
17246
|
) -> typing.Optional[builtins.str]:
|
|
17238
|
-
'''The Amazon resource name (ARN) for the public certificate issued by
|
|
17247
|
+
'''The Amazon resource name (ARN) for the public certificate issued by Certificate Manager .
|
|
17239
17248
|
|
|
17240
17249
|
This ARN is used to validate custom domain ownership. It's required only if you configure mutual TLS and use either an ACM-imported or a private CA certificate ARN as the regionalCertificateArn.
|
|
17241
17250
|
|
|
@@ -24573,6 +24582,7 @@ def _typecheckingstub__8f37be20ee015faaaf9283fe203dc28d2dcc56800f6007ae9105e3ad4
|
|
|
24573
24582
|
connect_route_options: typing.Optional[typing.Union[WebSocketRouteOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
24574
24583
|
default_route_options: typing.Optional[typing.Union[WebSocketRouteOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
24575
24584
|
description: typing.Optional[builtins.str] = None,
|
|
24585
|
+
disable_schema_validation: typing.Optional[builtins.bool] = None,
|
|
24576
24586
|
disconnect_route_options: typing.Optional[typing.Union[WebSocketRouteOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
24577
24587
|
ip_address_type: typing.Optional[IpAddressType] = None,
|
|
24578
24588
|
route_selection_expression: typing.Optional[builtins.str] = None,
|
|
@@ -24661,6 +24671,7 @@ def _typecheckingstub__c8895a8e636238eeb0c7336ab16a74480a8a8620f13eb92f05d4074fb
|
|
|
24661
24671
|
connect_route_options: typing.Optional[typing.Union[WebSocketRouteOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
24662
24672
|
default_route_options: typing.Optional[typing.Union[WebSocketRouteOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
24663
24673
|
description: typing.Optional[builtins.str] = None,
|
|
24674
|
+
disable_schema_validation: typing.Optional[builtins.bool] = None,
|
|
24664
24675
|
disconnect_route_options: typing.Optional[typing.Union[WebSocketRouteOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
24665
24676
|
ip_address_type: typing.Optional[IpAddressType] = None,
|
|
24666
24677
|
route_selection_expression: typing.Optional[builtins.str] = None,
|
aws_cdk/aws_appmesh/__init__.py
CHANGED
|
@@ -23876,7 +23876,7 @@ class CfnVirtualGateway(
|
|
|
23876
23876
|
)
|
|
23877
23877
|
class VirtualGatewayListenerTlsAcmCertificateProperty:
|
|
23878
23878
|
def __init__(self, *, certificate_arn: builtins.str) -> None:
|
|
23879
|
-
'''An object that represents an
|
|
23879
|
+
'''An object that represents an Certificate Manager certificate.
|
|
23880
23880
|
|
|
23881
23881
|
:param certificate_arn: The Amazon Resource Name (ARN) for the certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see `Transport Layer Security (TLS) <https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites>`_ .
|
|
23882
23882
|
|
|
@@ -23938,7 +23938,7 @@ class CfnVirtualGateway(
|
|
|
23938
23938
|
) -> None:
|
|
23939
23939
|
'''An object that represents a listener's Transport Layer Security (TLS) certificate.
|
|
23940
23940
|
|
|
23941
|
-
:param acm: A reference to an object that represents an
|
|
23941
|
+
:param acm: A reference to an object that represents an Certificate Manager certificate.
|
|
23942
23942
|
:param file: A reference to an object that represents a local file certificate.
|
|
23943
23943
|
:param sds: A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate.
|
|
23944
23944
|
|
|
@@ -23981,7 +23981,7 @@ class CfnVirtualGateway(
|
|
|
23981
23981
|
def acm(
|
|
23982
23982
|
self,
|
|
23983
23983
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnVirtualGateway.VirtualGatewayListenerTlsAcmCertificateProperty"]]:
|
|
23984
|
-
'''A reference to an object that represents an
|
|
23984
|
+
'''A reference to an object that represents an Certificate Manager certificate.
|
|
23985
23985
|
|
|
23986
23986
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaylistenertlscertificate.html#cfn-appmesh-virtualgateway-virtualgatewaylistenertlscertificate-acm
|
|
23987
23987
|
'''
|
|
@@ -24813,7 +24813,7 @@ class CfnVirtualGateway(
|
|
|
24813
24813
|
*,
|
|
24814
24814
|
certificate_authority_arns: typing.Sequence[builtins.str],
|
|
24815
24815
|
) -> None:
|
|
24816
|
-
'''An object that represents a Transport Layer Security (TLS) validation context trust for an
|
|
24816
|
+
'''An object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
|
|
24817
24817
|
|
|
24818
24818
|
:param certificate_authority_arns: One or more ACM Amazon Resource Name (ARN)s.
|
|
24819
24819
|
|
|
@@ -25073,7 +25073,7 @@ class CfnVirtualGateway(
|
|
|
25073
25073
|
) -> None:
|
|
25074
25074
|
'''An object that represents a Transport Layer Security (TLS) validation context trust.
|
|
25075
25075
|
|
|
25076
|
-
:param acm: A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an
|
|
25076
|
+
:param acm: A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
|
|
25077
25077
|
:param file: An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
|
|
25078
25078
|
:param sds: A reference to an object that represents a virtual gateway's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
|
|
25079
25079
|
|
|
@@ -25115,7 +25115,7 @@ class CfnVirtualGateway(
|
|
|
25115
25115
|
def acm(
|
|
25116
25116
|
self,
|
|
25117
25117
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnVirtualGateway.VirtualGatewayTlsValidationContextAcmTrustProperty"]]:
|
|
25118
|
-
'''A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an
|
|
25118
|
+
'''A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
|
|
25119
25119
|
|
|
25120
25120
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewaytlsvalidationcontexttrust.html#cfn-appmesh-virtualgateway-virtualgatewaytlsvalidationcontexttrust-acm
|
|
25121
25121
|
'''
|
|
@@ -27480,7 +27480,7 @@ class CfnVirtualNode(
|
|
|
27480
27480
|
)
|
|
27481
27481
|
class ListenerTlsAcmCertificateProperty:
|
|
27482
27482
|
def __init__(self, *, certificate_arn: builtins.str) -> None:
|
|
27483
|
-
'''An object that represents an
|
|
27483
|
+
'''An object that represents an Certificate Manager certificate.
|
|
27484
27484
|
|
|
27485
27485
|
:param certificate_arn: The Amazon Resource Name (ARN) for the certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see `Transport Layer Security (TLS) <https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites>`_ .
|
|
27486
27486
|
|
|
@@ -27542,7 +27542,7 @@ class CfnVirtualNode(
|
|
|
27542
27542
|
) -> None:
|
|
27543
27543
|
'''An object that represents a listener's Transport Layer Security (TLS) certificate.
|
|
27544
27544
|
|
|
27545
|
-
:param acm: A reference to an object that represents an
|
|
27545
|
+
:param acm: A reference to an object that represents an Certificate Manager certificate.
|
|
27546
27546
|
:param file: A reference to an object that represents a local file certificate.
|
|
27547
27547
|
:param sds: A reference to an object that represents a listener's Secret Discovery Service certificate.
|
|
27548
27548
|
|
|
@@ -27585,7 +27585,7 @@ class CfnVirtualNode(
|
|
|
27585
27585
|
def acm(
|
|
27586
27586
|
self,
|
|
27587
27587
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnVirtualNode.ListenerTlsAcmCertificateProperty"]]:
|
|
27588
|
-
'''A reference to an object that represents an
|
|
27588
|
+
'''A reference to an object that represents an Certificate Manager certificate.
|
|
27589
27589
|
|
|
27590
27590
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertlscertificate.html#cfn-appmesh-virtualnode-listenertlscertificate-acm
|
|
27591
27591
|
'''
|
|
@@ -28660,7 +28660,7 @@ class CfnVirtualNode(
|
|
|
28660
28660
|
*,
|
|
28661
28661
|
certificate_authority_arns: typing.Sequence[builtins.str],
|
|
28662
28662
|
) -> None:
|
|
28663
|
-
'''An object that represents a Transport Layer Security (TLS) validation context trust for an
|
|
28663
|
+
'''An object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
|
|
28664
28664
|
|
|
28665
28665
|
:param certificate_authority_arns: One or more ACM Amazon Resource Name (ARN)s.
|
|
28666
28666
|
|
|
@@ -28922,7 +28922,7 @@ class CfnVirtualNode(
|
|
|
28922
28922
|
) -> None:
|
|
28923
28923
|
'''An object that represents a Transport Layer Security (TLS) validation context trust.
|
|
28924
28924
|
|
|
28925
|
-
:param acm: A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an
|
|
28925
|
+
:param acm: A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
|
|
28926
28926
|
:param file: An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
|
|
28927
28927
|
:param sds: A reference to an object that represents a Transport Layer Security (TLS) Secret Discovery Service validation context trust.
|
|
28928
28928
|
|
|
@@ -28964,7 +28964,7 @@ class CfnVirtualNode(
|
|
|
28964
28964
|
def acm(
|
|
28965
28965
|
self,
|
|
28966
28966
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnVirtualNode.TlsValidationContextAcmTrustProperty"]]:
|
|
28967
|
-
'''A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an
|
|
28967
|
+
'''A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
|
|
28968
28968
|
|
|
28969
28969
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontexttrust.html#cfn-appmesh-virtualnode-tlsvalidationcontexttrust-acm
|
|
28970
28970
|
'''
|
|
@@ -1561,7 +1561,7 @@ class CfnFleetProps:
|
|
|
1561
1561
|
) -> None:
|
|
1562
1562
|
'''Properties for defining a ``CfnFleet``.
|
|
1563
1563
|
|
|
1564
|
-
:param instance_type: The instance type to use when launching fleet instances. The following instance types are available for non-Elastic fleets:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge The following instance types are available for Elastic fleets: - stream.standard.small - stream.standard.medium
|
|
1564
|
+
:param instance_type: The instance type to use when launching fleet instances. The following instance types are available for non-Elastic fleets:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge - stream.graphics.g6f.large - stream.graphics.g6f.xlarge - stream.graphics.g6f.2xlarge - stream.graphics.g6f.4xlarge - stream.graphics.gr6f.4xlarge The following instance types are available for Elastic fleets: - stream.standard.small - stream.standard.medium
|
|
1565
1565
|
:param name: A unique name for the fleet.
|
|
1566
1566
|
:param compute_capacity: The desired capacity for the fleet. This is not allowed for Elastic fleets.
|
|
1567
1567
|
:param description: The description to display.
|
|
@@ -1723,6 +1723,11 @@ class CfnFleetProps:
|
|
|
1723
1723
|
- stream.graphics.g6.24xlarge
|
|
1724
1724
|
- stream.graphics.gr6.4xlarge
|
|
1725
1725
|
- stream.graphics.gr6.8xlarge
|
|
1726
|
+
- stream.graphics.g6f.large
|
|
1727
|
+
- stream.graphics.g6f.xlarge
|
|
1728
|
+
- stream.graphics.g6f.2xlarge
|
|
1729
|
+
- stream.graphics.g6f.4xlarge
|
|
1730
|
+
- stream.graphics.gr6f.4xlarge
|
|
1726
1731
|
|
|
1727
1732
|
The following instance types are available for Elastic fleets:
|
|
1728
1733
|
|
|
@@ -2028,7 +2033,7 @@ class CfnImageBuilderProps:
|
|
|
2028
2033
|
) -> None:
|
|
2029
2034
|
'''Properties for defining a ``CfnImageBuilder``.
|
|
2030
2035
|
|
|
2031
|
-
:param instance_type: The instance type to use when launching the image builder. The following instance types are available:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge
|
|
2036
|
+
:param instance_type: The instance type to use when launching the image builder. The following instance types are available:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge - stream.graphics.g6f.large - stream.graphics.g6f.xlarge - stream.graphics.g6f.2xlarge - stream.graphics.g6f.4xlarge - stream.graphics.gr6f.4xlarge
|
|
2032
2037
|
:param name: A unique name for the image builder.
|
|
2033
2038
|
:param access_endpoints: The list of virtual private cloud (VPC) interface endpoint objects. Administrators can connect to the image builder only through the specified endpoints.
|
|
2034
2039
|
:param appstream_agent_version: The version of the AppStream 2.0 agent to use for this image builder. To use the latest version of the AppStream 2.0 agent, specify [LATEST].
|
|
@@ -2176,6 +2181,11 @@ class CfnImageBuilderProps:
|
|
|
2176
2181
|
- stream.graphics.g6.24xlarge
|
|
2177
2182
|
- stream.graphics.gr6.4xlarge
|
|
2178
2183
|
- stream.graphics.gr6.8xlarge
|
|
2184
|
+
- stream.graphics.g6f.large
|
|
2185
|
+
- stream.graphics.g6f.xlarge
|
|
2186
|
+
- stream.graphics.g6f.2xlarge
|
|
2187
|
+
- stream.graphics.g6f.4xlarge
|
|
2188
|
+
- stream.graphics.gr6f.4xlarge
|
|
2179
2189
|
|
|
2180
2190
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-imagebuilder.html#cfn-appstream-imagebuilder-instancetype
|
|
2181
2191
|
'''
|
|
@@ -6159,7 +6169,7 @@ class CfnFleet(
|
|
|
6159
6169
|
'''
|
|
6160
6170
|
:param scope: Scope in which this resource is defined.
|
|
6161
6171
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
6162
|
-
:param instance_type: The instance type to use when launching fleet instances. The following instance types are available for non-Elastic fleets:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge The following instance types are available for Elastic fleets: - stream.standard.small - stream.standard.medium
|
|
6172
|
+
:param instance_type: The instance type to use when launching fleet instances. The following instance types are available for non-Elastic fleets:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge - stream.graphics.g6f.large - stream.graphics.g6f.xlarge - stream.graphics.g6f.2xlarge - stream.graphics.g6f.4xlarge - stream.graphics.gr6f.4xlarge The following instance types are available for Elastic fleets: - stream.standard.small - stream.standard.medium
|
|
6163
6173
|
:param name: A unique name for the fleet.
|
|
6164
6174
|
:param compute_capacity: The desired capacity for the fleet. This is not allowed for Elastic fleets.
|
|
6165
6175
|
:param description: The description to display.
|
|
@@ -6958,7 +6968,7 @@ class CfnImageBuilder(
|
|
|
6958
6968
|
'''
|
|
6959
6969
|
:param scope: Scope in which this resource is defined.
|
|
6960
6970
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
6961
|
-
:param instance_type: The instance type to use when launching the image builder. The following instance types are available:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge
|
|
6971
|
+
:param instance_type: The instance type to use when launching the image builder. The following instance types are available:. - stream.standard.small - stream.standard.medium - stream.standard.large - stream.compute.large - stream.compute.xlarge - stream.compute.2xlarge - stream.compute.4xlarge - stream.compute.8xlarge - stream.memory.large - stream.memory.xlarge - stream.memory.2xlarge - stream.memory.4xlarge - stream.memory.8xlarge - stream.memory.z1d.large - stream.memory.z1d.xlarge - stream.memory.z1d.2xlarge - stream.memory.z1d.3xlarge - stream.memory.z1d.6xlarge - stream.memory.z1d.12xlarge - stream.graphics-design.large - stream.graphics-design.xlarge - stream.graphics-design.2xlarge - stream.graphics-design.4xlarge - stream.graphics-desktop.2xlarge - stream.graphics.g4dn.xlarge - stream.graphics.g4dn.2xlarge - stream.graphics.g4dn.4xlarge - stream.graphics.g4dn.8xlarge - stream.graphics.g4dn.12xlarge - stream.graphics.g4dn.16xlarge - stream.graphics-pro.4xlarge - stream.graphics-pro.8xlarge - stream.graphics-pro.16xlarge - stream.graphics.g5.xlarge - stream.graphics.g5.2xlarge - stream.graphics.g5.4xlarge - stream.graphics.g5.8xlarge - stream.graphics.g5.16xlarge - stream.graphics.g5.12xlarge - stream.graphics.g5.24xlarge - stream.graphics.g6.xlarge - stream.graphics.g6.2xlarge - stream.graphics.g6.4xlarge - stream.graphics.g6.8xlarge - stream.graphics.g6.16xlarge - stream.graphics.g6.12xlarge - stream.graphics.g6.24xlarge - stream.graphics.gr6.4xlarge - stream.graphics.gr6.8xlarge - stream.graphics.g6f.large - stream.graphics.g6f.xlarge - stream.graphics.g6f.2xlarge - stream.graphics.g6f.4xlarge - stream.graphics.gr6f.4xlarge
|
|
6962
6972
|
:param name: A unique name for the image builder.
|
|
6963
6973
|
:param access_endpoints: The list of virtual private cloud (VPC) interface endpoint objects. Administrators can connect to the image builder only through the specified endpoints.
|
|
6964
6974
|
:param appstream_agent_version: The version of the AppStream 2.0 agent to use for this image builder. To use the latest version of the AppStream 2.0 agent, specify [LATEST].
|
aws_cdk/aws_appsync/__init__.py
CHANGED
|
@@ -5923,7 +5923,7 @@ class CfnDomainNameProps:
|
|
|
5923
5923
|
) -> None:
|
|
5924
5924
|
'''Properties for defining a ``CfnDomainName``.
|
|
5925
5925
|
|
|
5926
|
-
:param certificate_arn: The Amazon Resource Name (ARN) of the certificate. This will be an
|
|
5926
|
+
:param certificate_arn: The Amazon Resource Name (ARN) of the certificate. This will be an Certificate Manager certificate.
|
|
5927
5927
|
:param domain_name: The domain name.
|
|
5928
5928
|
:param description: The decription for your domain name.
|
|
5929
5929
|
:param tags: A set of tags (key-value pairs) for this domain name.
|
|
@@ -5968,7 +5968,7 @@ class CfnDomainNameProps:
|
|
|
5968
5968
|
def certificate_arn(self) -> builtins.str:
|
|
5969
5969
|
'''The Amazon Resource Name (ARN) of the certificate.
|
|
5970
5970
|
|
|
5971
|
-
This will be an
|
|
5971
|
+
This will be an Certificate Manager certificate.
|
|
5972
5972
|
|
|
5973
5973
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.html#cfn-appsync-domainname-certificatearn
|
|
5974
5974
|
'''
|
|
@@ -20701,7 +20701,7 @@ class CfnDomainName(
|
|
|
20701
20701
|
'''
|
|
20702
20702
|
:param scope: Scope in which this resource is defined.
|
|
20703
20703
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
20704
|
-
:param certificate_arn: The Amazon Resource Name (ARN) of the certificate. This will be an
|
|
20704
|
+
:param certificate_arn: The Amazon Resource Name (ARN) of the certificate. This will be an Certificate Manager certificate.
|
|
20705
20705
|
:param domain_name: The domain name.
|
|
20706
20706
|
:param description: The decription for your domain name.
|
|
20707
20707
|
:param tags: A set of tags (key-value pairs) for this domain name.
|