aws-cdk-lib 2.166.0__py3-none-any.whl → 2.167.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.

Files changed (38) hide show
  1. aws_cdk/__init__.py +1 -1
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.166.0.jsii.tgz → aws-cdk-lib@2.167.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigateway/__init__.py +9 -0
  5. aws_cdk/aws_appsync/__init__.py +209 -79
  6. aws_cdk/aws_bedrock/__init__.py +51 -45
  7. aws_cdk/aws_cleanrooms/__init__.py +66 -5
  8. aws_cdk/aws_cloudfront/__init__.py +21 -3
  9. aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
  10. aws_cdk/aws_codebuild/__init__.py +59 -29
  11. aws_cdk/aws_datasync/__init__.py +51 -0
  12. aws_cdk/aws_ec2/__init__.py +305 -9
  13. aws_cdk/aws_ecs/__init__.py +37 -34
  14. aws_cdk/aws_elasticache/__init__.py +5 -3
  15. aws_cdk/aws_elasticloadbalancingv2/__init__.py +73 -46
  16. aws_cdk/aws_gamelift/__init__.py +52 -40
  17. aws_cdk/aws_inspectorv2/__init__.py +6 -12
  18. aws_cdk/aws_kms/__init__.py +2 -0
  19. aws_cdk/aws_lambda/__init__.py +336 -19
  20. aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
  21. aws_cdk/aws_logs/__init__.py +214 -0
  22. aws_cdk/aws_nimblestudio/__init__.py +6 -103
  23. aws_cdk/aws_quicksight/__init__.py +481 -10
  24. aws_cdk/aws_rds/__init__.py +602 -0
  25. aws_cdk/aws_s3_assets/__init__.py +37 -0
  26. aws_cdk/aws_s3_deployment/__init__.py +5 -0
  27. aws_cdk/aws_servicecatalog/__init__.py +52 -4
  28. aws_cdk/aws_ses/__init__.py +5 -3
  29. aws_cdk/aws_stepfunctions/__init__.py +8 -0
  30. aws_cdk/aws_synthetics/__init__.py +12 -1
  31. aws_cdk/aws_wisdom/__init__.py +344 -24
  32. aws_cdk/triggers/__init__.py +3 -3
  33. {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/METADATA +1 -1
  34. {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/RECORD +38 -38
  35. {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/WHEEL +1 -1
  36. {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/LICENSE +0 -0
  37. {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/NOTICE +0 -0
  38. {aws_cdk_lib-2.166.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/top_level.txt +0 -0
@@ -377,8 +377,8 @@ class CfnLaunchProfile(
377
377
  :param ec2_instance_types: The EC2 instance types that users can select from when launching a streaming session with this launch profile.
378
378
  :param streaming_image_ids: The streaming images that users can select from when launching a streaming session with this launch profile.
379
379
  :param automatic_termination_mode: Indicates if a streaming session created from this launch profile should be terminated automatically or retained without termination after being in a ``STOPPED`` state. - When ``ACTIVATED`` , the streaming session is scheduled for termination after being in the ``STOPPED`` state for the time specified in ``maxStoppedSessionLengthInMinutes`` . - When ``DEACTIVATED`` , the streaming session can remain in the ``STOPPED`` state indefinitely. This parameter is only allowed when ``sessionPersistenceMode`` is ``ACTIVATED`` . When allowed, the default value for this parameter is ``DEACTIVATED`` .
380
- :param max_session_length_in_minutes: The length of time, in minutes, that a streaming session can be active before it is stopped or terminated. After this point, Nimble Studio automatically terminates or stops the session. The default length of time is 690 minutes, and the maximum length of time is 30 days. Default: - 690
381
- :param max_stopped_session_length_in_minutes: Integer that determines if you can start and stop your sessions and how long a session can stay in the ``STOPPED`` state. The default value is 0. The maximum value is 5760. This field is allowed only when ``sessionPersistenceMode`` is ``ACTIVATED`` and ``automaticTerminationMode`` is ``ACTIVATED`` . If the value is set to 0, your sessions can’t be ``STOPPED`` . If you then call ``StopStreamingSession`` , the session fails. If the time that a session stays in the ``READY`` state exceeds the ``maxSessionLengthInMinutes`` value, the session will automatically be terminated (instead of ``STOPPED`` ). If the value is set to a positive number, the session can be stopped. You can call ``StopStreamingSession`` to stop sessions in the ``READY`` state. If the time that a session stays in the ``READY`` state exceeds the ``maxSessionLengthInMinutes`` value, the session will automatically be stopped (instead of terminated). Default: - 0
380
+ :param max_session_length_in_minutes: The length of time, in minutes, that a streaming session can be active before it is stopped or terminated. After this point, Nimble Studio automatically terminates or stops the session. The default length of time is 690 minutes, and the maximum length of time is 30 days.
381
+ :param max_stopped_session_length_in_minutes: Integer that determines if you can start and stop your sessions and how long a session can stay in the ``STOPPED`` state. The default value is 0. The maximum value is 5760. This field is allowed only when ``sessionPersistenceMode`` is ``ACTIVATED`` and ``automaticTerminationMode`` is ``ACTIVATED`` . If the value is set to 0, your sessions can’t be ``STOPPED`` . If you then call ``StopStreamingSession`` , the session fails. If the time that a session stays in the ``READY`` state exceeds the ``maxSessionLengthInMinutes`` value, the session will automatically be terminated (instead of ``STOPPED`` ). If the value is set to a positive number, the session can be stopped. You can call ``StopStreamingSession`` to stop sessions in the ``READY`` state. If the time that a session stays in the ``READY`` state exceeds the ``maxSessionLengthInMinutes`` value, the session will automatically be stopped (instead of terminated).
382
382
  :param session_backup: Information about the streaming session backup.
383
383
  :param session_persistence_mode: Determine if a streaming session created from this launch profile can configure persistent storage. This means that ``volumeConfiguration`` and ``automaticTerminationMode`` are configured.
384
384
  :param session_storage: The upload storage for a streaming session.
@@ -505,8 +505,6 @@ class CfnLaunchProfile(
505
505
 
506
506
  After this point, Nimble Studio automatically terminates or stops the session. The default length of time is 690 minutes, and the maximum length of time is 30 days.
507
507
 
508
- :default: - 690
509
-
510
508
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamconfiguration.html#cfn-nimblestudio-launchprofile-streamconfiguration-maxsessionlengthinminutes
511
509
  '''
512
510
  result = self._values.get("max_session_length_in_minutes")
@@ -524,8 +522,6 @@ class CfnLaunchProfile(
524
522
 
525
523
  If the value is set to a positive number, the session can be stopped. You can call ``StopStreamingSession`` to stop sessions in the ``READY`` state. If the time that a session stays in the ``READY`` state exceeds the ``maxSessionLengthInMinutes`` value, the session will automatically be stopped (instead of terminated).
526
524
 
527
- :default: - 0
528
-
529
525
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamconfiguration.html#cfn-nimblestudio-launchprofile-streamconfiguration-maxstoppedsessionlengthinminutes
530
526
  '''
531
527
  result = self._values.get("max_stopped_session_length_in_minutes")
@@ -602,7 +598,7 @@ class CfnLaunchProfile(
602
598
  ) -> None:
603
599
  '''Configures how streaming sessions are backed up when launched from this launch profile.
604
600
 
605
- :param max_backups_to_retain: The maximum number of backups that each streaming session created from this launch profile can have. Default: - 0
601
+ :param max_backups_to_retain: The maximum number of backups that each streaming session created from this launch profile can have.
606
602
  :param mode: Specifies how artists sessions are backed up. Configures backups for streaming sessions launched with this launch profile. The default value is ``DEACTIVATED`` , which means that backups are deactivated. To allow backups, set this value to ``AUTOMATIC`` .
607
603
 
608
604
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamconfigurationsessionbackup.html
@@ -633,8 +629,6 @@ class CfnLaunchProfile(
633
629
  def max_backups_to_retain(self) -> typing.Optional[jsii.Number]:
634
630
  '''The maximum number of backups that each streaming session created from this launch profile can have.
635
631
 
636
- :default: - 0
637
-
638
632
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-streamconfigurationsessionbackup.html#cfn-nimblestudio-launchprofile-streamconfigurationsessionbackup-maxbackupstoretain
639
633
  '''
640
634
  result = self._values.get("max_backups_to_retain")
@@ -829,9 +823,9 @@ class CfnLaunchProfile(
829
823
 
830
824
  This parameter is only allowed when ``sessionPersistenceMode`` is ``ACTIVATED`` .
831
825
 
832
- :param iops: The number of I/O operations per second for the root volume that is attached to streaming session. Default: - 3000
833
- :param size: The size of the root volume that is attached to the streaming session. The root volume size is measured in GiBs. Default: - 500
834
- :param throughput: The throughput to provision for the root volume that is attached to the streaming session. The throughput is measured in MiB/s. Default: - 125
826
+ :param iops: The number of I/O operations per second for the root volume that is attached to streaming session.
827
+ :param size: The size of the root volume that is attached to the streaming session. The root volume size is measured in GiBs.
828
+ :param throughput: The throughput to provision for the root volume that is attached to the streaming session. The throughput is measured in MiB/s.
835
829
 
836
830
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-volumeconfiguration.html
837
831
  :exampleMetadata: fixture=_generated
@@ -865,8 +859,6 @@ class CfnLaunchProfile(
865
859
  def iops(self) -> typing.Optional[jsii.Number]:
866
860
  '''The number of I/O operations per second for the root volume that is attached to streaming session.
867
861
 
868
- :default: - 3000
869
-
870
862
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-volumeconfiguration.html#cfn-nimblestudio-launchprofile-volumeconfiguration-iops
871
863
  '''
872
864
  result = self._values.get("iops")
@@ -878,8 +870,6 @@ class CfnLaunchProfile(
878
870
 
879
871
  The root volume size is measured in GiBs.
880
872
 
881
- :default: - 500
882
-
883
873
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-volumeconfiguration.html#cfn-nimblestudio-launchprofile-volumeconfiguration-size
884
874
  '''
885
875
  result = self._values.get("size")
@@ -891,8 +881,6 @@ class CfnLaunchProfile(
891
881
 
892
882
  The throughput is measured in MiB/s.
893
883
 
894
- :default: - 125
895
-
896
884
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-nimblestudio-launchprofile-volumeconfiguration.html#cfn-nimblestudio-launchprofile-volumeconfiguration-throughput
897
885
  '''
898
886
  result = self._values.get("throughput")
@@ -1941,12 +1929,10 @@ class CfnStudioComponent(
1941
1929
  run_context="runContext",
1942
1930
  script="script"
1943
1931
  )],
1944
- runtime_role_arn="runtimeRoleArn",
1945
1932
  script_parameters=[nimblestudio.CfnStudioComponent.ScriptParameterKeyValueProperty(
1946
1933
  key="key",
1947
1934
  value="value"
1948
1935
  )],
1949
- secure_initialization_role_arn="secureInitializationRoleArn",
1950
1936
  subtype="subtype",
1951
1937
  tags={
1952
1938
  "tags_key": "tags"
@@ -1966,9 +1952,7 @@ class CfnStudioComponent(
1966
1952
  description: typing.Optional[builtins.str] = None,
1967
1953
  ec2_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
1968
1954
  initialization_scripts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnStudioComponent.StudioComponentInitializationScriptProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
1969
- runtime_role_arn: typing.Optional[builtins.str] = None,
1970
1955
  script_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnStudioComponent.ScriptParameterKeyValueProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
1971
- secure_initialization_role_arn: typing.Optional[builtins.str] = None,
1972
1956
  subtype: typing.Optional[builtins.str] = None,
1973
1957
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
1974
1958
  ) -> None:
@@ -1982,9 +1966,7 @@ class CfnStudioComponent(
1982
1966
  :param description: A human-readable description for the studio component resource.
1983
1967
  :param ec2_security_group_ids: The EC2 security groups that control access to the studio component.
1984
1968
  :param initialization_scripts: Initialization scripts for studio components.
1985
- :param runtime_role_arn: An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.
1986
1969
  :param script_parameters: Parameters for the studio component scripts.
1987
- :param secure_initialization_role_arn: An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.
1988
1970
  :param subtype: The specific subtype of a studio component.
1989
1971
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
1990
1972
  '''
@@ -2000,9 +1982,7 @@ class CfnStudioComponent(
2000
1982
  description=description,
2001
1983
  ec2_security_group_ids=ec2_security_group_ids,
2002
1984
  initialization_scripts=initialization_scripts,
2003
- runtime_role_arn=runtime_role_arn,
2004
1985
  script_parameters=script_parameters,
2005
- secure_initialization_role_arn=secure_initialization_role_arn,
2006
1986
  subtype=subtype,
2007
1987
  tags=tags,
2008
1988
  )
@@ -2163,19 +2143,6 @@ class CfnStudioComponent(
2163
2143
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2164
2144
  jsii.set(self, "initializationScripts", value) # pyright: ignore[reportArgumentType]
2165
2145
 
2166
- @builtins.property
2167
- @jsii.member(jsii_name="runtimeRoleArn")
2168
- def runtime_role_arn(self) -> typing.Optional[builtins.str]:
2169
- '''An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.'''
2170
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "runtimeRoleArn"))
2171
-
2172
- @runtime_role_arn.setter
2173
- def runtime_role_arn(self, value: typing.Optional[builtins.str]) -> None:
2174
- if __debug__:
2175
- type_hints = typing.get_type_hints(_typecheckingstub__b81da422d011c4a82640eb49baceab2f76b57ee93b27f43a10c611ad081a6e03)
2176
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2177
- jsii.set(self, "runtimeRoleArn", value) # pyright: ignore[reportArgumentType]
2178
-
2179
2146
  @builtins.property
2180
2147
  @jsii.member(jsii_name="scriptParameters")
2181
2148
  def script_parameters(
@@ -2194,22 +2161,6 @@ class CfnStudioComponent(
2194
2161
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2195
2162
  jsii.set(self, "scriptParameters", value) # pyright: ignore[reportArgumentType]
2196
2163
 
2197
- @builtins.property
2198
- @jsii.member(jsii_name="secureInitializationRoleArn")
2199
- def secure_initialization_role_arn(self) -> typing.Optional[builtins.str]:
2200
- '''An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.'''
2201
- return typing.cast(typing.Optional[builtins.str], jsii.get(self, "secureInitializationRoleArn"))
2202
-
2203
- @secure_initialization_role_arn.setter
2204
- def secure_initialization_role_arn(
2205
- self,
2206
- value: typing.Optional[builtins.str],
2207
- ) -> None:
2208
- if __debug__:
2209
- type_hints = typing.get_type_hints(_typecheckingstub__ed299be512003df10a0838a8f90e93c49ae8d9bf5993557d1fa9f773a302abc0)
2210
- check_type(argname="argument value", value=value, expected_type=type_hints["value"])
2211
- jsii.set(self, "secureInitializationRoleArn", value) # pyright: ignore[reportArgumentType]
2212
-
2213
2164
  @builtins.property
2214
2165
  @jsii.member(jsii_name="subtype")
2215
2166
  def subtype(self) -> typing.Optional[builtins.str]:
@@ -2970,9 +2921,7 @@ class CfnStudioComponent(
2970
2921
  "description": "description",
2971
2922
  "ec2_security_group_ids": "ec2SecurityGroupIds",
2972
2923
  "initialization_scripts": "initializationScripts",
2973
- "runtime_role_arn": "runtimeRoleArn",
2974
2924
  "script_parameters": "scriptParameters",
2975
- "secure_initialization_role_arn": "secureInitializationRoleArn",
2976
2925
  "subtype": "subtype",
2977
2926
  "tags": "tags",
2978
2927
  },
@@ -2988,9 +2937,7 @@ class CfnStudioComponentProps:
2988
2937
  description: typing.Optional[builtins.str] = None,
2989
2938
  ec2_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
2990
2939
  initialization_scripts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStudioComponent.StudioComponentInitializationScriptProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
2991
- runtime_role_arn: typing.Optional[builtins.str] = None,
2992
2940
  script_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStudioComponent.ScriptParameterKeyValueProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
2993
- secure_initialization_role_arn: typing.Optional[builtins.str] = None,
2994
2941
  subtype: typing.Optional[builtins.str] = None,
2995
2942
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
2996
2943
  ) -> None:
@@ -3003,9 +2950,7 @@ class CfnStudioComponentProps:
3003
2950
  :param description: A human-readable description for the studio component resource.
3004
2951
  :param ec2_security_group_ids: The EC2 security groups that control access to the studio component.
3005
2952
  :param initialization_scripts: Initialization scripts for studio components.
3006
- :param runtime_role_arn: An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.
3007
2953
  :param script_parameters: Parameters for the studio component scripts.
3008
- :param secure_initialization_role_arn: An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.
3009
2954
  :param subtype: The specific subtype of a studio component.
3010
2955
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
3011
2956
 
@@ -3056,12 +3001,10 @@ class CfnStudioComponentProps:
3056
3001
  run_context="runContext",
3057
3002
  script="script"
3058
3003
  )],
3059
- runtime_role_arn="runtimeRoleArn",
3060
3004
  script_parameters=[nimblestudio.CfnStudioComponent.ScriptParameterKeyValueProperty(
3061
3005
  key="key",
3062
3006
  value="value"
3063
3007
  )],
3064
- secure_initialization_role_arn="secureInitializationRoleArn",
3065
3008
  subtype="subtype",
3066
3009
  tags={
3067
3010
  "tags_key": "tags"
@@ -3077,9 +3020,7 @@ class CfnStudioComponentProps:
3077
3020
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
3078
3021
  check_type(argname="argument ec2_security_group_ids", value=ec2_security_group_ids, expected_type=type_hints["ec2_security_group_ids"])
3079
3022
  check_type(argname="argument initialization_scripts", value=initialization_scripts, expected_type=type_hints["initialization_scripts"])
3080
- check_type(argname="argument runtime_role_arn", value=runtime_role_arn, expected_type=type_hints["runtime_role_arn"])
3081
3023
  check_type(argname="argument script_parameters", value=script_parameters, expected_type=type_hints["script_parameters"])
3082
- check_type(argname="argument secure_initialization_role_arn", value=secure_initialization_role_arn, expected_type=type_hints["secure_initialization_role_arn"])
3083
3024
  check_type(argname="argument subtype", value=subtype, expected_type=type_hints["subtype"])
3084
3025
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
3085
3026
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -3095,12 +3036,8 @@ class CfnStudioComponentProps:
3095
3036
  self._values["ec2_security_group_ids"] = ec2_security_group_ids
3096
3037
  if initialization_scripts is not None:
3097
3038
  self._values["initialization_scripts"] = initialization_scripts
3098
- if runtime_role_arn is not None:
3099
- self._values["runtime_role_arn"] = runtime_role_arn
3100
3039
  if script_parameters is not None:
3101
3040
  self._values["script_parameters"] = script_parameters
3102
- if secure_initialization_role_arn is not None:
3103
- self._values["secure_initialization_role_arn"] = secure_initialization_role_arn
3104
3041
  if subtype is not None:
3105
3042
  self._values["subtype"] = subtype
3106
3043
  if tags is not None:
@@ -3178,15 +3115,6 @@ class CfnStudioComponentProps:
3178
3115
  result = self._values.get("initialization_scripts")
3179
3116
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnStudioComponent.StudioComponentInitializationScriptProperty]]]], result)
3180
3117
 
3181
- @builtins.property
3182
- def runtime_role_arn(self) -> typing.Optional[builtins.str]:
3183
- '''An IAM role attached to a Studio Component that gives the studio component access to AWS resources at anytime while the instance is running.
3184
-
3185
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studiocomponent.html#cfn-nimblestudio-studiocomponent-runtimerolearn
3186
- '''
3187
- result = self._values.get("runtime_role_arn")
3188
- return typing.cast(typing.Optional[builtins.str], result)
3189
-
3190
3118
  @builtins.property
3191
3119
  def script_parameters(
3192
3120
  self,
@@ -3198,15 +3126,6 @@ class CfnStudioComponentProps:
3198
3126
  result = self._values.get("script_parameters")
3199
3127
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnStudioComponent.ScriptParameterKeyValueProperty]]]], result)
3200
3128
 
3201
- @builtins.property
3202
- def secure_initialization_role_arn(self) -> typing.Optional[builtins.str]:
3203
- '''An IAM role attached to Studio Component when the system initialization script runs which give the studio component access to AWS resources when the system initialization script runs.
3204
-
3205
- :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studiocomponent.html#cfn-nimblestudio-studiocomponent-secureinitializationrolearn
3206
- '''
3207
- result = self._values.get("secure_initialization_role_arn")
3208
- return typing.cast(typing.Optional[builtins.str], result)
3209
-
3210
3129
  @builtins.property
3211
3130
  def subtype(self) -> typing.Optional[builtins.str]:
3212
3131
  '''The specific subtype of a studio component.
@@ -3698,9 +3617,7 @@ def _typecheckingstub__c22fe0082d9b44d07e4ef368d5f042dd2864628399c458b780e181e7b
3698
3617
  description: typing.Optional[builtins.str] = None,
3699
3618
  ec2_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
3700
3619
  initialization_scripts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStudioComponent.StudioComponentInitializationScriptProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3701
- runtime_role_arn: typing.Optional[builtins.str] = None,
3702
3620
  script_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStudioComponent.ScriptParameterKeyValueProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3703
- secure_initialization_role_arn: typing.Optional[builtins.str] = None,
3704
3621
  subtype: typing.Optional[builtins.str] = None,
3705
3622
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3706
3623
  ) -> None:
@@ -3761,24 +3678,12 @@ def _typecheckingstub__659216de4760e25164d033c057bfa0fdf83af861fc798a0f08b86ff4d
3761
3678
  """Type checking stubs"""
3762
3679
  pass
3763
3680
 
3764
- def _typecheckingstub__b81da422d011c4a82640eb49baceab2f76b57ee93b27f43a10c611ad081a6e03(
3765
- value: typing.Optional[builtins.str],
3766
- ) -> None:
3767
- """Type checking stubs"""
3768
- pass
3769
-
3770
3681
  def _typecheckingstub__4d03432e7064ac8ade176413120d4effe4df12f3c4c0ea0d5812102bd65db908(
3771
3682
  value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnStudioComponent.ScriptParameterKeyValueProperty]]]],
3772
3683
  ) -> None:
3773
3684
  """Type checking stubs"""
3774
3685
  pass
3775
3686
 
3776
- def _typecheckingstub__ed299be512003df10a0838a8f90e93c49ae8d9bf5993557d1fa9f773a302abc0(
3777
- value: typing.Optional[builtins.str],
3778
- ) -> None:
3779
- """Type checking stubs"""
3780
- pass
3781
-
3782
3687
  def _typecheckingstub__83a7858d87ccc1b3698f54725ddcb72b48818d28bf2b6cf8b26640011e6028cd(
3783
3688
  value: typing.Optional[builtins.str],
3784
3689
  ) -> None:
@@ -3871,9 +3776,7 @@ def _typecheckingstub__452974fbd84550efbe28df9f5e4cb6049d1527391e07a1544107fc2f0
3871
3776
  description: typing.Optional[builtins.str] = None,
3872
3777
  ec2_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
3873
3778
  initialization_scripts: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStudioComponent.StudioComponentInitializationScriptProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3874
- runtime_role_arn: typing.Optional[builtins.str] = None,
3875
3779
  script_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnStudioComponent.ScriptParameterKeyValueProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
3876
- secure_initialization_role_arn: typing.Optional[builtins.str] = None,
3877
3780
  subtype: typing.Optional[builtins.str] = None,
3878
3781
  tags: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
3879
3782
  ) -> None: