aws-cdk-lib 2.195.0__py3-none-any.whl → 2.196.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 +433 -20
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.195.0.jsii.tgz → aws-cdk-lib@2.196.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_amazonmq/__init__.py +2 -2
- aws_cdk/aws_apigateway/__init__.py +148 -69
- aws_cdk/aws_apigatewayv2/__init__.py +155 -24
- aws_cdk/aws_appconfig/__init__.py +24 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -0
- aws_cdk/aws_appmesh/__init__.py +42 -0
- aws_cdk/aws_appsync/__init__.py +92 -20
- aws_cdk/aws_autoscaling/__init__.py +24 -0
- aws_cdk/aws_backup/__init__.py +53 -14
- aws_cdk/aws_batch/__init__.py +72 -0
- aws_cdk/aws_bedrock/__init__.py +620 -14
- aws_cdk/aws_budgets/__init__.py +569 -0
- aws_cdk/aws_certificatemanager/__init__.py +21 -0
- aws_cdk/aws_chatbot/__init__.py +6 -0
- aws_cdk/aws_cloudfront/__init__.py +87 -0
- aws_cdk/aws_cloudfront/experimental/__init__.py +6 -0
- aws_cdk/aws_cloudtrail/__init__.py +6 -0
- aws_cdk/aws_cloudwatch/__init__.py +18 -0
- aws_cdk/aws_cloudwatch_actions/__init__.py +75 -1
- aws_cdk/aws_codebuild/__init__.py +48 -0
- aws_cdk/aws_codecommit/__init__.py +6 -0
- aws_cdk/aws_codedeploy/__init__.py +63 -0
- aws_cdk/aws_codeguruprofiler/__init__.py +6 -0
- aws_cdk/aws_codepipeline/__init__.py +6 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
- aws_cdk/aws_codestarnotifications/__init__.py +6 -0
- aws_cdk/aws_cognito/__init__.py +91 -12
- aws_cdk/aws_cognito_identitypool/__init__.py +6 -0
- aws_cdk/aws_config/__init__.py +36 -0
- aws_cdk/aws_datazone/__init__.py +557 -14
- aws_cdk/aws_docdb/__init__.py +27 -3
- aws_cdk/aws_dsql/__init__.py +21 -13
- aws_cdk/aws_dynamodb/__init__.py +20 -8
- aws_cdk/aws_ec2/__init__.py +282 -21
- aws_cdk/aws_ecr/__init__.py +6 -0
- aws_cdk/aws_ecr_assets/__init__.py +6 -0
- aws_cdk/aws_ecs/__init__.py +112 -19
- aws_cdk/aws_ecs_patterns/__init__.py +58 -0
- aws_cdk/aws_efs/__init__.py +12 -0
- aws_cdk/aws_eks/__init__.py +42 -0
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -0
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +112 -9
- aws_cdk/aws_elasticsearch/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +36 -0
- aws_cdk/aws_events_targets/__init__.py +10 -10
- aws_cdk/aws_fsx/__init__.py +6 -0
- aws_cdk/aws_globalaccelerator/__init__.py +18 -0
- aws_cdk/aws_iam/__init__.py +66 -0
- aws_cdk/aws_imagebuilder/__init__.py +21 -16
- aws_cdk/aws_inspector/__init__.py +6 -0
- aws_cdk/aws_kinesis/__init__.py +19 -1
- aws_cdk/aws_kinesisanalytics/__init__.py +9 -11
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +9 -11
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -0
- aws_cdk/aws_kms/__init__.py +16 -4
- aws_cdk/aws_lambda/__init__.py +76 -6
- aws_cdk/aws_lambda_nodejs/__init__.py +6 -0
- aws_cdk/aws_logs/__init__.py +155 -12
- aws_cdk/aws_opensearchservice/__init__.py +6 -0
- aws_cdk/aws_quicksight/__init__.py +22 -22
- aws_cdk/aws_rds/__init__.py +306 -30
- aws_cdk/aws_redshiftserverless/__init__.py +7 -7
- aws_cdk/aws_route53/__init__.py +723 -25
- aws_cdk/aws_s3/__init__.py +37 -10
- aws_cdk/aws_s3_deployment/__init__.py +6 -0
- aws_cdk/aws_sagemaker/__init__.py +199 -4
- aws_cdk/aws_scheduler/__init__.py +12 -0
- aws_cdk/aws_secretsmanager/__init__.py +24 -0
- aws_cdk/aws_servicecatalog/__init__.py +24 -0
- aws_cdk/aws_servicediscovery/__init__.py +48 -0
- aws_cdk/aws_ses/__init__.py +133 -33
- aws_cdk/aws_signer/__init__.py +6 -0
- aws_cdk/aws_sns/__init__.py +18 -0
- aws_cdk/aws_sns_subscriptions/__init__.py +6 -0
- aws_cdk/aws_sqs/__init__.py +12 -0
- aws_cdk/aws_ssm/__init__.py +12 -0
- aws_cdk/aws_ssmcontacts/__init__.py +53 -2
- aws_cdk/aws_ssmguiconnect/__init__.py +7 -7
- aws_cdk/aws_stepfunctions/__init__.py +153 -7
- aws_cdk/aws_stepfunctions_tasks/__init__.py +46 -10
- aws_cdk/aws_synthetics/__init__.py +32 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +168 -3
- aws_cdk/aws_vpclattice/__init__.py +3 -1
- aws_cdk/aws_wisdom/__init__.py +6 -4
- aws_cdk/custom_resources/__init__.py +18 -0
- aws_cdk/cx_api/__init__.py +33 -0
- aws_cdk/lambda_layer_awscli/__init__.py +6 -0
- aws_cdk/lambda_layer_node_proxy_agent/__init__.py +6 -0
- aws_cdk/pipelines/__init__.py +10 -10
- aws_cdk/triggers/__init__.py +6 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/METADATA +83 -5
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/RECORD +100 -100
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.195.0.dist-info → aws_cdk_lib-2.196.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ssm/__init__.py
CHANGED
|
@@ -8350,6 +8350,12 @@ class StringListParameter(
|
|
|
8350
8350
|
check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
|
|
8351
8351
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantWrite", [grantee]))
|
|
8352
8352
|
|
|
8353
|
+
@jsii.python.classproperty
|
|
8354
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
8355
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
8356
|
+
'''Uniquely identifies this class.'''
|
|
8357
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
8358
|
+
|
|
8353
8359
|
@builtins.property
|
|
8354
8360
|
@jsii.member(jsii_name="parameterArn")
|
|
8355
8361
|
def parameter_arn(self) -> builtins.str:
|
|
@@ -8871,6 +8877,12 @@ class StringParameter(
|
|
|
8871
8877
|
check_type(argname="argument grantee", value=grantee, expected_type=type_hints["grantee"])
|
|
8872
8878
|
return typing.cast(_Grant_a7ae64f8, jsii.invoke(self, "grantWrite", [grantee]))
|
|
8873
8879
|
|
|
8880
|
+
@jsii.python.classproperty
|
|
8881
|
+
@jsii.member(jsii_name="PROPERTY_INJECTION_ID")
|
|
8882
|
+
def PROPERTY_INJECTION_ID(cls) -> builtins.str:
|
|
8883
|
+
'''Uniquely identifies this class.'''
|
|
8884
|
+
return typing.cast(builtins.str, jsii.sget(cls, "PROPERTY_INJECTION_ID"))
|
|
8885
|
+
|
|
8874
8886
|
@builtins.property
|
|
8875
8887
|
@jsii.member(jsii_name="parameterArn")
|
|
8876
8888
|
def parameter_arn(self) -> builtins.str:
|
|
@@ -64,12 +64,13 @@ from .. import (
|
|
|
64
64
|
IInspectable as _IInspectable_c2943556,
|
|
65
65
|
IResolvable as _IResolvable_da3f097b,
|
|
66
66
|
ITaggable as _ITaggable_36806126,
|
|
67
|
+
ITaggableV2 as _ITaggableV2_4e6798f8,
|
|
67
68
|
TagManager as _TagManager_0a598cb3,
|
|
68
69
|
TreeInspector as _TreeInspector_488e0dd5,
|
|
69
70
|
)
|
|
70
71
|
|
|
71
72
|
|
|
72
|
-
@jsii.implements(_IInspectable_c2943556)
|
|
73
|
+
@jsii.implements(_IInspectable_c2943556, _ITaggableV2_4e6798f8)
|
|
73
74
|
class CfnContact(
|
|
74
75
|
_CfnResource_9df397a6,
|
|
75
76
|
metaclass=jsii.JSIIMeta,
|
|
@@ -108,6 +109,10 @@ class CfnContact(
|
|
|
108
109
|
is_essential=False
|
|
109
110
|
)
|
|
110
111
|
)]
|
|
112
|
+
)],
|
|
113
|
+
tags=[CfnTag(
|
|
114
|
+
key="key",
|
|
115
|
+
value="value"
|
|
111
116
|
)]
|
|
112
117
|
)
|
|
113
118
|
'''
|
|
@@ -121,6 +126,7 @@ class CfnContact(
|
|
|
121
126
|
display_name: builtins.str,
|
|
122
127
|
type: builtins.str,
|
|
123
128
|
plan: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnContact.StageProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
129
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
124
130
|
) -> None:
|
|
125
131
|
'''
|
|
126
132
|
:param scope: Scope in which this resource is defined.
|
|
@@ -129,13 +135,14 @@ class CfnContact(
|
|
|
129
135
|
:param display_name: The full name of the contact or escalation plan.
|
|
130
136
|
:param type: The type of contact. - ``PERSONAL`` : A single, individual contact. - ``ESCALATION`` : An escalation plan. - ``ONCALL_SCHEDULE`` : An on-call schedule.
|
|
131
137
|
:param plan: A list of stages. A contact has an engagement plan with stages that contact specified contact channels. An escalation plan uses stages that contact specified contacts.
|
|
138
|
+
:param tags:
|
|
132
139
|
'''
|
|
133
140
|
if __debug__:
|
|
134
141
|
type_hints = typing.get_type_hints(_typecheckingstub__96185056d36e15643884f48a931b8d7005ac84a62576223bb952c88328d7d90c)
|
|
135
142
|
check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
|
|
136
143
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
137
144
|
props = CfnContactProps(
|
|
138
|
-
alias=alias, display_name=display_name, type=type, plan=plan
|
|
145
|
+
alias=alias, display_name=display_name, type=type, plan=plan, tags=tags
|
|
139
146
|
)
|
|
140
147
|
|
|
141
148
|
jsii.create(self.__class__, self, [scope, id, props])
|
|
@@ -179,6 +186,12 @@ class CfnContact(
|
|
|
179
186
|
'''
|
|
180
187
|
return typing.cast(builtins.str, jsii.get(self, "attrArn"))
|
|
181
188
|
|
|
189
|
+
@builtins.property
|
|
190
|
+
@jsii.member(jsii_name="cdkTagManager")
|
|
191
|
+
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
192
|
+
'''Tag Manager which manages the tags for this resource.'''
|
|
193
|
+
return typing.cast(_TagManager_0a598cb3, jsii.get(self, "cdkTagManager"))
|
|
194
|
+
|
|
182
195
|
@builtins.property
|
|
183
196
|
@jsii.member(jsii_name="cfnProperties")
|
|
184
197
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -241,6 +254,18 @@ class CfnContact(
|
|
|
241
254
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
242
255
|
jsii.set(self, "plan", value) # pyright: ignore[reportArgumentType]
|
|
243
256
|
|
|
257
|
+
@builtins.property
|
|
258
|
+
@jsii.member(jsii_name="tags")
|
|
259
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
260
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
261
|
+
|
|
262
|
+
@tags.setter
|
|
263
|
+
def tags(self, value: typing.Optional[typing.List[_CfnTag_f6864754]]) -> None:
|
|
264
|
+
if __debug__:
|
|
265
|
+
type_hints = typing.get_type_hints(_typecheckingstub__59cff570ee94d66883c27c541d2b2e0ef7a60913a10e8561bd8fcab3f1a9341a)
|
|
266
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
267
|
+
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
268
|
+
|
|
244
269
|
@jsii.data_type(
|
|
245
270
|
jsii_type="aws-cdk-lib.aws_ssmcontacts.CfnContact.ChannelTargetInfoProperty",
|
|
246
271
|
jsii_struct_bases=[],
|
|
@@ -898,6 +923,7 @@ class CfnContactChannelProps:
|
|
|
898
923
|
"display_name": "displayName",
|
|
899
924
|
"type": "type",
|
|
900
925
|
"plan": "plan",
|
|
926
|
+
"tags": "tags",
|
|
901
927
|
},
|
|
902
928
|
)
|
|
903
929
|
class CfnContactProps:
|
|
@@ -908,6 +934,7 @@ class CfnContactProps:
|
|
|
908
934
|
display_name: builtins.str,
|
|
909
935
|
type: builtins.str,
|
|
910
936
|
plan: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContact.StageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
937
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
911
938
|
) -> None:
|
|
912
939
|
'''Properties for defining a ``CfnContact``.
|
|
913
940
|
|
|
@@ -915,6 +942,7 @@ class CfnContactProps:
|
|
|
915
942
|
:param display_name: The full name of the contact or escalation plan.
|
|
916
943
|
:param type: The type of contact. - ``PERSONAL`` : A single, individual contact. - ``ESCALATION`` : An escalation plan. - ``ONCALL_SCHEDULE`` : An on-call schedule.
|
|
917
944
|
:param plan: A list of stages. A contact has an engagement plan with stages that contact specified contact channels. An escalation plan uses stages that contact specified contacts.
|
|
945
|
+
:param tags:
|
|
918
946
|
|
|
919
947
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmcontacts-contact.html
|
|
920
948
|
:exampleMetadata: fixture=_generated
|
|
@@ -944,6 +972,10 @@ class CfnContactProps:
|
|
|
944
972
|
is_essential=False
|
|
945
973
|
)
|
|
946
974
|
)]
|
|
975
|
+
)],
|
|
976
|
+
tags=[CfnTag(
|
|
977
|
+
key="key",
|
|
978
|
+
value="value"
|
|
947
979
|
)]
|
|
948
980
|
)
|
|
949
981
|
'''
|
|
@@ -953,6 +985,7 @@ class CfnContactProps:
|
|
|
953
985
|
check_type(argname="argument display_name", value=display_name, expected_type=type_hints["display_name"])
|
|
954
986
|
check_type(argname="argument type", value=type, expected_type=type_hints["type"])
|
|
955
987
|
check_type(argname="argument plan", value=plan, expected_type=type_hints["plan"])
|
|
988
|
+
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
956
989
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
957
990
|
"alias": alias,
|
|
958
991
|
"display_name": display_name,
|
|
@@ -960,6 +993,8 @@ class CfnContactProps:
|
|
|
960
993
|
}
|
|
961
994
|
if plan is not None:
|
|
962
995
|
self._values["plan"] = plan
|
|
996
|
+
if tags is not None:
|
|
997
|
+
self._values["tags"] = tags
|
|
963
998
|
|
|
964
999
|
@builtins.property
|
|
965
1000
|
def alias(self) -> builtins.str:
|
|
@@ -1008,6 +1043,14 @@ class CfnContactProps:
|
|
|
1008
1043
|
result = self._values.get("plan")
|
|
1009
1044
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnContact.StageProperty]]]], result)
|
|
1010
1045
|
|
|
1046
|
+
@builtins.property
|
|
1047
|
+
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1048
|
+
'''
|
|
1049
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmcontacts-contact.html#cfn-ssmcontacts-contact-tags
|
|
1050
|
+
'''
|
|
1051
|
+
result = self._values.get("tags")
|
|
1052
|
+
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
|
|
1053
|
+
|
|
1011
1054
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
1012
1055
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
1013
1056
|
|
|
@@ -2480,6 +2523,7 @@ def _typecheckingstub__96185056d36e15643884f48a931b8d7005ac84a62576223bb952c8832
|
|
|
2480
2523
|
display_name: builtins.str,
|
|
2481
2524
|
type: builtins.str,
|
|
2482
2525
|
plan: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContact.StageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2526
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2483
2527
|
) -> None:
|
|
2484
2528
|
"""Type checking stubs"""
|
|
2485
2529
|
pass
|
|
@@ -2520,6 +2564,12 @@ def _typecheckingstub__1b53265c2630d58664ca7f46c1ce619caeab6eec0dc5682af154a1d6e
|
|
|
2520
2564
|
"""Type checking stubs"""
|
|
2521
2565
|
pass
|
|
2522
2566
|
|
|
2567
|
+
def _typecheckingstub__59cff570ee94d66883c27c541d2b2e0ef7a60913a10e8561bd8fcab3f1a9341a(
|
|
2568
|
+
value: typing.Optional[typing.List[_CfnTag_f6864754]],
|
|
2569
|
+
) -> None:
|
|
2570
|
+
"""Type checking stubs"""
|
|
2571
|
+
pass
|
|
2572
|
+
|
|
2523
2573
|
def _typecheckingstub__d9859de101893bc6eb79fa20a2bb897c167951655effac5d46a65e9ddbe0e527(
|
|
2524
2574
|
*,
|
|
2525
2575
|
channel_id: builtins.str,
|
|
@@ -2625,6 +2675,7 @@ def _typecheckingstub__f741949260f507a90eb76a4ec5f8c03a5b8eeee237bc39b33a8add5cd
|
|
|
2625
2675
|
display_name: builtins.str,
|
|
2626
2676
|
type: builtins.str,
|
|
2627
2677
|
plan: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnContact.StageProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
2678
|
+
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2628
2679
|
) -> None:
|
|
2629
2680
|
"""Type checking stubs"""
|
|
2630
2681
|
pass
|
|
@@ -82,7 +82,7 @@ class CfnPreferences(
|
|
|
82
82
|
metaclass=jsii.JSIIMeta,
|
|
83
83
|
jsii_type="aws-cdk-lib.aws_ssmguiconnect.CfnPreferences",
|
|
84
84
|
):
|
|
85
|
-
'''
|
|
85
|
+
'''Specify new or changed connection recording preferences for your AWS Systems Manager GUI Connect connections.
|
|
86
86
|
|
|
87
87
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html
|
|
88
88
|
:cloudformationResource: AWS::SSMGuiConnect::Preferences
|
|
@@ -117,7 +117,7 @@ class CfnPreferences(
|
|
|
117
117
|
'''
|
|
118
118
|
:param scope: Scope in which this resource is defined.
|
|
119
119
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
120
|
-
:param connection_recording_preferences: The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region. This includes details such as which S3 bucket recordings are stored in.
|
|
120
|
+
:param connection_recording_preferences: The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region . This includes details such as which S3 bucket recordings are stored in.
|
|
121
121
|
'''
|
|
122
122
|
if __debug__:
|
|
123
123
|
type_hints = typing.get_type_hints(_typecheckingstub__045e31f70bcabcaa4437ed6c7e11fb8462233ba15c60675b143088abfe090752)
|
|
@@ -162,7 +162,7 @@ class CfnPreferences(
|
|
|
162
162
|
@builtins.property
|
|
163
163
|
@jsii.member(jsii_name="attrAccountId")
|
|
164
164
|
def attr_account_id(self) -> builtins.str:
|
|
165
|
-
'''The
|
|
165
|
+
'''The primary identifier for the AWS CloudFormation resource.
|
|
166
166
|
|
|
167
167
|
:cloudformationAttribute: AccountId
|
|
168
168
|
'''
|
|
@@ -178,7 +178,7 @@ class CfnPreferences(
|
|
|
178
178
|
def connection_recording_preferences(
|
|
179
179
|
self,
|
|
180
180
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPreferences.ConnectionRecordingPreferencesProperty"]]:
|
|
181
|
-
'''The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region.'''
|
|
181
|
+
'''The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region .'''
|
|
182
182
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPreferences.ConnectionRecordingPreferencesProperty"]], jsii.get(self, "connectionRecordingPreferences"))
|
|
183
183
|
|
|
184
184
|
@connection_recording_preferences.setter
|
|
@@ -206,7 +206,7 @@ class CfnPreferences(
|
|
|
206
206
|
kms_key_arn: builtins.str,
|
|
207
207
|
recording_destinations: typing.Union[_IResolvable_da3f097b, typing.Union["CfnPreferences.RecordingDestinationsProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
208
208
|
) -> None:
|
|
209
|
-
'''The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region.
|
|
209
|
+
'''The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region .
|
|
210
210
|
|
|
211
211
|
This includes details such as which S3 bucket recordings are stored in.
|
|
212
212
|
|
|
@@ -424,7 +424,7 @@ class CfnPreferencesProps:
|
|
|
424
424
|
) -> None:
|
|
425
425
|
'''Properties for defining a ``CfnPreferences``.
|
|
426
426
|
|
|
427
|
-
:param connection_recording_preferences: The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region. This includes details such as which S3 bucket recordings are stored in.
|
|
427
|
+
:param connection_recording_preferences: The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region . This includes details such as which S3 bucket recordings are stored in.
|
|
428
428
|
|
|
429
429
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmguiconnect-preferences.html
|
|
430
430
|
:exampleMetadata: fixture=_generated
|
|
@@ -458,7 +458,7 @@ class CfnPreferencesProps:
|
|
|
458
458
|
def connection_recording_preferences(
|
|
459
459
|
self,
|
|
460
460
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPreferences.ConnectionRecordingPreferencesProperty]]:
|
|
461
|
-
'''The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region.
|
|
461
|
+
'''The set of preferences used for recording RDP connections in the requesting AWS account and AWS Region .
|
|
462
462
|
|
|
463
463
|
This includes details such as which S3 bucket recordings are stored in.
|
|
464
464
|
|