aws-cdk-lib 2.185.0__py3-none-any.whl → 2.186.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 +102 -29
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.185.0.jsii.tgz → aws-cdk-lib@2.186.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_apigatewayv2/__init__.py +9 -0
- aws_cdk/aws_appconfig/__init__.py +3 -3
- aws_cdk/aws_applicationsignals/__init__.py +363 -3
- aws_cdk/aws_appsync/__init__.py +65 -3
- aws_cdk/aws_bedrock/__init__.py +385 -14
- aws_cdk/aws_cleanrooms/__init__.py +21 -9
- aws_cdk/aws_cloudformation/__init__.py +1 -5
- aws_cdk/aws_cloudfront/__init__.py +4 -1
- aws_cdk/aws_cloudfront_origins/__init__.py +4 -2
- aws_cdk/aws_codeartifact/__init__.py +20 -33
- aws_cdk/aws_codepipeline/__init__.py +1328 -120
- aws_cdk/aws_cognito/__init__.py +1 -1
- aws_cdk/aws_cognito_identitypool/__init__.py +2303 -0
- aws_cdk/aws_connect/__init__.py +3 -7
- aws_cdk/aws_controltower/__init__.py +18 -26
- aws_cdk/aws_datazone/__init__.py +3471 -2
- aws_cdk/aws_ec2/__init__.py +560 -25
- aws_cdk/aws_ecs/__init__.py +15 -20
- aws_cdk/aws_events/__init__.py +37 -14
- aws_cdk/aws_gamelift/__init__.py +5 -5
- aws_cdk/aws_iam/__init__.py +264 -0
- aws_cdk/aws_imagebuilder/__init__.py +3 -27
- aws_cdk/aws_kinesisfirehose/__init__.py +2 -3
- aws_cdk/aws_lambda/__init__.py +7 -1
- aws_cdk/aws_location/__init__.py +24 -7
- aws_cdk/aws_msk/__init__.py +8 -2
- aws_cdk/aws_networkfirewall/__init__.py +16 -12
- aws_cdk/aws_oam/__init__.py +8 -37
- aws_cdk/aws_quicksight/__init__.py +6 -69
- aws_cdk/aws_redshiftserverless/__init__.py +192 -15
- aws_cdk/aws_rum/__init__.py +315 -52
- aws_cdk/aws_scheduler/__init__.py +3944 -121
- aws_cdk/aws_scheduler_targets/__init__.py +4472 -0
- aws_cdk/aws_ssmquicksetup/__init__.py +5 -3
- aws_cdk/aws_stepfunctions/__init__.py +17 -15
- aws_cdk/aws_timestream/__init__.py +4 -4
- aws_cdk/aws_wafv2/__init__.py +345 -0
- aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
- aws_cdk/cx_api/__init__.py +23 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/RECORD +49 -47
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/top_level.txt +0 -0
|
@@ -855,7 +855,7 @@ class CfnCollaboration(
|
|
|
855
855
|
:param description: A description of the collaboration provided by the collaboration owner.
|
|
856
856
|
:param members: A list of initial members, not including the creator. This list is immutable.
|
|
857
857
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
858
|
-
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
858
|
+
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
859
859
|
:param analytics_engine: The analytics engine for the collaboration.
|
|
860
860
|
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
861
861
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
@@ -1815,7 +1815,7 @@ class CfnCollaborationProps:
|
|
|
1815
1815
|
:param description: A description of the collaboration provided by the collaboration owner.
|
|
1816
1816
|
:param members: A list of initial members, not including the creator. This list is immutable.
|
|
1817
1817
|
:param name: A human-readable identifier provided by the collaboration owner. Display names are not unique.
|
|
1818
|
-
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
1818
|
+
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the collaboration. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
1819
1819
|
:param analytics_engine: The analytics engine for the collaboration.
|
|
1820
1820
|
:param creator_ml_member_abilities: The ML member abilities for a collaboration member.
|
|
1821
1821
|
:param creator_payment_configuration: An object representing the collaboration member's payment responsibilities set by the collaboration creator.
|
|
@@ -1989,6 +1989,8 @@ class CfnCollaborationProps:
|
|
|
1989
1989
|
def query_log_status(self) -> builtins.str:
|
|
1990
1990
|
'''An indicator as to whether query logging has been enabled or disabled for the collaboration.
|
|
1991
1991
|
|
|
1992
|
+
When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
1993
|
+
|
|
1992
1994
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-collaboration.html#cfn-cleanrooms-collaboration-querylogstatus
|
|
1993
1995
|
'''
|
|
1994
1996
|
result = self._values.get("query_log_status")
|
|
@@ -2183,7 +2185,7 @@ class CfnConfiguredTable(
|
|
|
2183
2185
|
:param scope: Scope in which this resource is defined.
|
|
2184
2186
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
2185
2187
|
:param allowed_columns: The columns within the underlying AWS Glue table that can be utilized within collaborations.
|
|
2186
|
-
:param analysis_method: The analysis method for the configured table.
|
|
2188
|
+
:param analysis_method: The analysis method for the configured table. ``DIRECT_QUERY`` allows SQL queries to be run directly on this table. ``DIRECT_JOB`` allows PySpark jobs to be run directly on this table. ``MULTIPLE`` allows both SQL queries and PySpark jobs to be run directly on this table.
|
|
2187
2189
|
:param name: A name for the configured table.
|
|
2188
2190
|
:param table_reference: The table that this configured table represents.
|
|
2189
2191
|
:param analysis_rules: The analysis rule that was created for the configured table.
|
|
@@ -3492,9 +3494,13 @@ class CfnConfiguredTable(
|
|
|
3492
3494
|
*,
|
|
3493
3495
|
columns: typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConfiguredTable.DifferentialPrivacyColumnProperty", typing.Dict[builtins.str, typing.Any]]]]],
|
|
3494
3496
|
) -> None:
|
|
3495
|
-
'''The analysis method for the configured tables.
|
|
3497
|
+
'''The analysis method allowed for the configured tables.
|
|
3498
|
+
|
|
3499
|
+
``DIRECT_QUERY`` allows SQL queries to be run directly on this table.
|
|
3500
|
+
|
|
3501
|
+
``DIRECT_JOB`` allows PySpark jobs to be run directly on this table.
|
|
3496
3502
|
|
|
3497
|
-
|
|
3503
|
+
``MULTIPLE`` allows both SQL queries and PySpark jobs to be run directly on this table.
|
|
3498
3504
|
|
|
3499
3505
|
:param columns: The name of the column, such as user_id, that contains the unique identifier of your users, whose privacy you want to protect. If you want to turn on differential privacy for two or more tables in a collaboration, you must configure the same column as the user identifier column in both analysis rules.
|
|
3500
3506
|
|
|
@@ -4979,7 +4985,7 @@ class CfnConfiguredTableProps:
|
|
|
4979
4985
|
'''Properties for defining a ``CfnConfiguredTable``.
|
|
4980
4986
|
|
|
4981
4987
|
:param allowed_columns: The columns within the underlying AWS Glue table that can be utilized within collaborations.
|
|
4982
|
-
:param analysis_method: The analysis method for the configured table.
|
|
4988
|
+
:param analysis_method: The analysis method for the configured table. ``DIRECT_QUERY`` allows SQL queries to be run directly on this table. ``DIRECT_JOB`` allows PySpark jobs to be run directly on this table. ``MULTIPLE`` allows both SQL queries and PySpark jobs to be run directly on this table.
|
|
4983
4989
|
:param name: A name for the configured table.
|
|
4984
4990
|
:param table_reference: The table that this configured table represents.
|
|
4985
4991
|
:param analysis_rules: The analysis rule that was created for the configured table.
|
|
@@ -5118,7 +5124,11 @@ class CfnConfiguredTableProps:
|
|
|
5118
5124
|
def analysis_method(self) -> builtins.str:
|
|
5119
5125
|
'''The analysis method for the configured table.
|
|
5120
5126
|
|
|
5121
|
-
|
|
5127
|
+
``DIRECT_QUERY`` allows SQL queries to be run directly on this table.
|
|
5128
|
+
|
|
5129
|
+
``DIRECT_JOB`` allows PySpark jobs to be run directly on this table.
|
|
5130
|
+
|
|
5131
|
+
``MULTIPLE`` allows both SQL queries and PySpark jobs to be run directly on this table.
|
|
5122
5132
|
|
|
5123
5133
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-configuredtable.html#cfn-cleanrooms-configuredtable-analysismethod
|
|
5124
5134
|
'''
|
|
@@ -6513,7 +6523,7 @@ class CfnMembership(
|
|
|
6513
6523
|
:param scope: Scope in which this resource is defined.
|
|
6514
6524
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
6515
6525
|
:param collaboration_identifier: The unique ID for the associated collaboration.
|
|
6516
|
-
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the membership.
|
|
6526
|
+
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the membership. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
6517
6527
|
:param default_result_configuration: The default protected query result configuration as specified by the member who can receive results.
|
|
6518
6528
|
:param payment_configuration: The payment responsibilities accepted by the collaboration member.
|
|
6519
6529
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -7340,7 +7350,7 @@ class CfnMembershipProps:
|
|
|
7340
7350
|
'''Properties for defining a ``CfnMembership``.
|
|
7341
7351
|
|
|
7342
7352
|
:param collaboration_identifier: The unique ID for the associated collaboration.
|
|
7343
|
-
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the membership.
|
|
7353
|
+
:param query_log_status: An indicator as to whether query logging has been enabled or disabled for the membership. When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
7344
7354
|
:param default_result_configuration: The default protected query result configuration as specified by the member who can receive results.
|
|
7345
7355
|
:param payment_configuration: The payment responsibilities accepted by the collaboration member.
|
|
7346
7356
|
:param tags: An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
|
@@ -7427,6 +7437,8 @@ class CfnMembershipProps:
|
|
|
7427
7437
|
def query_log_status(self) -> builtins.str:
|
|
7428
7438
|
'''An indicator as to whether query logging has been enabled or disabled for the membership.
|
|
7429
7439
|
|
|
7440
|
+
When ``ENABLED`` , AWS Clean Rooms logs details about queries run within this collaboration and those logs can be viewed in Amazon CloudWatch Logs. The default value is ``DISABLED`` .
|
|
7441
|
+
|
|
7430
7442
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cleanrooms-membership.html#cfn-cleanrooms-membership-querylogstatus
|
|
7431
7443
|
'''
|
|
7432
7444
|
result = self._values.get("query_log_status")
|
|
@@ -6705,7 +6705,7 @@ class CfnStackSet(
|
|
|
6705
6705
|
:param max_concurrent_count: The maximum number of accounts in which to perform this operation at one time. This is dependent on the value of ``FailureToleranceCount`` . ``MaxConcurrentCount`` is at most one more than the ``FailureToleranceCount`` . Note that this setting lets you specify the *maximum* for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either ``MaxConcurrentCount`` or ``MaxConcurrentPercentage`` , but not both.
|
|
6706
6706
|
:param max_concurrent_percentage: The maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, CloudFormation rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, CloudFormation sets the number as one instead. Note that this setting lets you specify the *maximum* for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. Conditional: You must specify either ``MaxConcurrentCount`` or ``MaxConcurrentPercentage`` , but not both.
|
|
6707
6707
|
:param region_concurrency_type: The concurrency type of deploying StackSets operations in Regions, could be in parallel or one Region at a time.
|
|
6708
|
-
:param region_order: The order of the Regions where you want to perform the stack operation.
|
|
6708
|
+
:param region_order: The order of the Regions where you want to perform the stack operation.
|
|
6709
6709
|
|
|
6710
6710
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-operationpreferences.html
|
|
6711
6711
|
:exampleMetadata: fixture=_generated
|
|
@@ -6837,10 +6837,6 @@ class CfnStackSet(
|
|
|
6837
6837
|
def region_order(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
6838
6838
|
'''The order of the Regions where you want to perform the stack operation.
|
|
6839
6839
|
|
|
6840
|
-
.. epigraph::
|
|
6841
|
-
|
|
6842
|
-
``RegionOrder`` isn't followed if ``AutoDeployment`` is enabled.
|
|
6843
|
-
|
|
6844
6840
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-operationpreferences.html#cfn-cloudformation-stackset-operationpreferences-regionorder
|
|
6845
6841
|
'''
|
|
6846
6842
|
result = self._values.get("region_order")
|
|
@@ -2863,7 +2863,10 @@ class CfnAnycastIpList(
|
|
|
2863
2863
|
@builtins.property
|
|
2864
2864
|
@jsii.member(jsii_name="attrAnycastIpList")
|
|
2865
2865
|
def attr_anycast_ip_list(self) -> _IResolvable_da3f097b:
|
|
2866
|
-
'''
|
|
2866
|
+
'''An Anycast static IP list.
|
|
2867
|
+
|
|
2868
|
+
For more information, see `Request Anycast static IPs to use for allowlisting <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/request-static-ips.html>`_ in the *Amazon CloudFront Developer Guide*.
|
|
2869
|
+
|
|
2867
2870
|
:cloudformationAttribute: AnycastIpList
|
|
2868
2871
|
'''
|
|
2869
2872
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrAnycastIpList"))
|
|
@@ -678,8 +678,10 @@ You can allow the traffic from the CloudFront managed prefix list named **com.am
|
|
|
678
678
|
# alb: elbv2.ApplicationLoadBalancer
|
|
679
679
|
|
|
680
680
|
|
|
681
|
-
|
|
682
|
-
|
|
681
|
+
cf_origin_facing = ec2.PrefixList.from_lookup(self, "CloudFrontOriginFacing",
|
|
682
|
+
prefix_list_name="com.amazonaws.global.cloudfront.origin-facing"
|
|
683
|
+
)
|
|
684
|
+
alb.connections.allow_from(ec2.Peer.prefix_list(cf_origin_facing.prefix_list_id), ec2.Port.HTTP)
|
|
683
685
|
```
|
|
684
686
|
|
|
685
687
|
#### The VPC origin service security group
|
|
@@ -459,7 +459,7 @@ class CfnPackageGroup(
|
|
|
459
459
|
:param description: The description of the package group.
|
|
460
460
|
:param domain_owner: The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
|
|
461
461
|
:param origin_configuration: Details about the package origin configuration of a package group.
|
|
462
|
-
:param tags:
|
|
462
|
+
:param tags: An array of key-value pairs to apply to the package group.
|
|
463
463
|
'''
|
|
464
464
|
if __debug__:
|
|
465
465
|
type_hints = typing.get_type_hints(_typecheckingstub__7a8aaa0852b2af2f8381bac18421469d96d102aa57d00f002433c862966b5603)
|
|
@@ -510,7 +510,7 @@ class CfnPackageGroup(
|
|
|
510
510
|
@builtins.property
|
|
511
511
|
@jsii.member(jsii_name="attrArn")
|
|
512
512
|
def attr_arn(self) -> builtins.str:
|
|
513
|
-
'''
|
|
513
|
+
'''The ARN of the package group.
|
|
514
514
|
|
|
515
515
|
:cloudformationAttribute: Arn
|
|
516
516
|
'''
|
|
@@ -613,7 +613,7 @@ class CfnPackageGroup(
|
|
|
613
613
|
@builtins.property
|
|
614
614
|
@jsii.member(jsii_name="tags")
|
|
615
615
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
616
|
-
'''
|
|
616
|
+
'''An array of key-value pairs to apply to the package group.'''
|
|
617
617
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
618
618
|
|
|
619
619
|
@tags.setter
|
|
@@ -634,9 +634,8 @@ class CfnPackageGroup(
|
|
|
634
634
|
*,
|
|
635
635
|
restrictions: typing.Union[_IResolvable_da3f097b, typing.Union["CfnPackageGroup.RestrictionsProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
636
636
|
) -> None:
|
|
637
|
-
'''
|
|
638
|
-
|
|
639
|
-
:param restrictions: The origin configuration settings that determine how package versions can enter repositories.
|
|
637
|
+
'''
|
|
638
|
+
:param restrictions:
|
|
640
639
|
|
|
641
640
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-originconfiguration.html
|
|
642
641
|
:exampleMetadata: fixture=_generated
|
|
@@ -681,8 +680,7 @@ class CfnPackageGroup(
|
|
|
681
680
|
def restrictions(
|
|
682
681
|
self,
|
|
683
682
|
) -> typing.Union[_IResolvable_da3f097b, "CfnPackageGroup.RestrictionsProperty"]:
|
|
684
|
-
'''
|
|
685
|
-
|
|
683
|
+
'''
|
|
686
684
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-originconfiguration.html#cfn-codeartifact-packagegroup-originconfiguration-restrictions
|
|
687
685
|
'''
|
|
688
686
|
result = self._values.get("restrictions")
|
|
@@ -715,10 +713,9 @@ class CfnPackageGroup(
|
|
|
715
713
|
restriction_mode: builtins.str,
|
|
716
714
|
repositories: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
717
715
|
) -> None:
|
|
718
|
-
'''
|
|
719
|
-
|
|
720
|
-
:param
|
|
721
|
-
:param repositories: The repositories to add to the allowed repositories list. The allowed repositories list is used when the ``RestrictionMode`` is set to ``ALLOW_SPECIFIC_REPOSITORIES`` .
|
|
716
|
+
'''
|
|
717
|
+
:param restriction_mode:
|
|
718
|
+
:param repositories:
|
|
722
719
|
|
|
723
720
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictiontype.html
|
|
724
721
|
:exampleMetadata: fixture=_generated
|
|
@@ -748,10 +745,7 @@ class CfnPackageGroup(
|
|
|
748
745
|
|
|
749
746
|
@builtins.property
|
|
750
747
|
def restriction_mode(self) -> builtins.str:
|
|
751
|
-
'''
|
|
752
|
-
|
|
753
|
-
When the value is ``INHERIT`` , the value is set to the value of the first parent package group which does not have a value of ``INHERIT`` .
|
|
754
|
-
|
|
748
|
+
'''
|
|
755
749
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictiontype.html#cfn-codeartifact-packagegroup-restrictiontype-restrictionmode
|
|
756
750
|
'''
|
|
757
751
|
result = self._values.get("restriction_mode")
|
|
@@ -760,10 +754,7 @@ class CfnPackageGroup(
|
|
|
760
754
|
|
|
761
755
|
@builtins.property
|
|
762
756
|
def repositories(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
763
|
-
'''
|
|
764
|
-
|
|
765
|
-
The allowed repositories list is used when the ``RestrictionMode`` is set to ``ALLOW_SPECIFIC_REPOSITORIES`` .
|
|
766
|
-
|
|
757
|
+
'''
|
|
767
758
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictiontype.html#cfn-codeartifact-packagegroup-restrictiontype-repositories
|
|
768
759
|
'''
|
|
769
760
|
result = self._values.get("repositories")
|
|
@@ -797,11 +788,10 @@ class CfnPackageGroup(
|
|
|
797
788
|
internal_upstream: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPackageGroup.RestrictionTypeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
798
789
|
publish: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnPackageGroup.RestrictionTypeProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
799
790
|
) -> None:
|
|
800
|
-
'''
|
|
801
|
-
|
|
802
|
-
:param
|
|
803
|
-
:param
|
|
804
|
-
:param publish: The package group origin restriction setting for publishing packages.
|
|
791
|
+
'''
|
|
792
|
+
:param external_upstream:
|
|
793
|
+
:param internal_upstream:
|
|
794
|
+
:param publish:
|
|
805
795
|
|
|
806
796
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html
|
|
807
797
|
:exampleMetadata: fixture=_generated
|
|
@@ -850,8 +840,7 @@ class CfnPackageGroup(
|
|
|
850
840
|
def external_upstream(
|
|
851
841
|
self,
|
|
852
842
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPackageGroup.RestrictionTypeProperty"]]:
|
|
853
|
-
'''
|
|
854
|
-
|
|
843
|
+
'''
|
|
855
844
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html#cfn-codeartifact-packagegroup-restrictions-externalupstream
|
|
856
845
|
'''
|
|
857
846
|
result = self._values.get("external_upstream")
|
|
@@ -861,8 +850,7 @@ class CfnPackageGroup(
|
|
|
861
850
|
def internal_upstream(
|
|
862
851
|
self,
|
|
863
852
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPackageGroup.RestrictionTypeProperty"]]:
|
|
864
|
-
'''
|
|
865
|
-
|
|
853
|
+
'''
|
|
866
854
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html#cfn-codeartifact-packagegroup-restrictions-internalupstream
|
|
867
855
|
'''
|
|
868
856
|
result = self._values.get("internal_upstream")
|
|
@@ -872,8 +860,7 @@ class CfnPackageGroup(
|
|
|
872
860
|
def publish(
|
|
873
861
|
self,
|
|
874
862
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPackageGroup.RestrictionTypeProperty"]]:
|
|
875
|
-
'''
|
|
876
|
-
|
|
863
|
+
'''
|
|
877
864
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codeartifact-packagegroup-restrictions.html#cfn-codeartifact-packagegroup-restrictions-publish
|
|
878
865
|
'''
|
|
879
866
|
result = self._values.get("publish")
|
|
@@ -924,7 +911,7 @@ class CfnPackageGroupProps:
|
|
|
924
911
|
:param description: The description of the package group.
|
|
925
912
|
:param domain_owner: The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
|
|
926
913
|
:param origin_configuration: Details about the package origin configuration of a package group.
|
|
927
|
-
:param tags:
|
|
914
|
+
:param tags: An array of key-value pairs to apply to the package group.
|
|
928
915
|
|
|
929
916
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html
|
|
930
917
|
:exampleMetadata: fixture=_generated
|
|
@@ -1059,7 +1046,7 @@ class CfnPackageGroupProps:
|
|
|
1059
1046
|
|
|
1060
1047
|
@builtins.property
|
|
1061
1048
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
1062
|
-
'''
|
|
1049
|
+
'''An array of key-value pairs to apply to the package group.
|
|
1063
1050
|
|
|
1064
1051
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codeartifact-packagegroup.html#cfn-codeartifact-packagegroup-tags
|
|
1065
1052
|
'''
|