@propulsionworks/cloudformation 0.1.33 → 0.1.34
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.
- package/out/exports/resources.generated/aws-appstream-fleet.d.ts +0 -4
- package/out/exports/resources.generated/aws-appstream-imagebuilder.d.ts +0 -4
- package/out/exports/resources.generated/aws-aps-anomalydetector.d.ts +34 -12
- package/out/exports/resources.generated/aws-batch-jobdefinition.d.ts +3 -0
- package/out/exports/resources.generated/aws-bedrock-automatedreasoningpolicy.d.ts +15 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-browsercustom.d.ts +16 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +103 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-workloadidentity.d.ts +61 -0
- package/out/exports/resources.generated/aws-cassandra-keyspace.d.ts +1 -1
- package/out/exports/resources.generated/aws-cleanrooms-collaboration.d.ts +9 -0
- package/out/exports/resources.generated/aws-cleanrooms-configuredtable.d.ts +15 -1
- package/out/exports/resources.generated/aws-cleanrooms-privacybudgettemplate.d.ts +30 -3
- package/out/exports/resources.generated/aws-cloudfront-anycastiplist.d.ts +1 -0
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +1 -0
- package/out/exports/resources.generated/aws-cloudfront-vpcorigin.d.ts +1 -0
- package/out/exports/resources.generated/aws-datazone-connection.d.ts +32 -0
- package/out/exports/resources.generated/aws-dynamodb-globaltable.d.ts +10 -0
- package/out/exports/resources.generated/aws-ec2-volume.d.ts +532 -0
- package/out/exports/resources.generated/aws-ecs-capacityprovider.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-cluster.d.ts +5 -5
- package/out/exports/resources.generated/aws-ecs-clustercapacityproviderassociations.d.ts +5 -5
- package/out/exports/resources.generated/aws-ecs-service.d.ts +42 -5
- package/out/exports/resources.generated/aws-ecs-taskdefinition.d.ts +4 -4
- package/out/exports/resources.generated/aws-ecs-taskset.d.ts +5 -5
- package/out/exports/resources.generated/aws-gamelift-build.d.ts +1 -1
- package/out/exports/resources.generated/aws-glue-integrationresourceproperty.d.ts +74 -0
- package/out/exports/resources.generated/aws-imagebuilder-containerrecipe.d.ts +1 -1
- package/out/exports/resources.generated/aws-imagebuilder-imagerecipe.d.ts +1 -1
- package/out/exports/resources.generated/aws-kendra-datasource.d.ts +19 -19
- package/out/exports/resources.generated/aws-kinesis-stream.d.ts +7 -0
- package/out/exports/resources.generated/aws-kms-key.d.ts +1 -1
- package/out/exports/resources.generated/aws-lambda-permission.d.ts +1 -1
- package/out/exports/resources.generated/aws-location-apikey.d.ts +39 -0
- package/out/exports/resources.generated/aws-networkfirewall-firewall.d.ts +1 -0
- package/out/exports/resources.generated/aws-networkfirewall-firewallpolicy.d.ts +1 -0
- package/out/exports/resources.generated/aws-opensearchserverless-collection.d.ts +5 -0
- package/out/exports/resources.generated/aws-qbusiness-application.d.ts +3 -3
- package/out/exports/resources.generated/aws-quicksight-analysis.d.ts +1 -1
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +1 -1
- package/out/exports/resources.generated/aws-quicksight-dataset.d.ts +987 -27
- package/out/exports/resources.generated/aws-quicksight-datasource.d.ts +1 -1
- package/out/exports/resources.generated/aws-quicksight-template.d.ts +1 -1
- package/out/exports/resources.generated/aws-rtbfabric-link.d.ts +48 -3
- package/out/exports/resources.generated/aws-rtbfabric-requestergateway.d.ts +7 -5
- package/out/exports/resources.generated/aws-rtbfabric-respondergateway.d.ts +29 -5
- package/out/exports/resources.generated/aws-s3vectors-index.d.ts +68 -11
- package/out/exports/resources.generated/aws-s3vectors-vectorbucket.d.ts +74 -8
- package/out/exports/resources.generated/aws-s3vectors-vectorbucketpolicy.d.ts +64 -6
- package/out/exports/resources.generated/aws-servicecatalog-cloudformationproduct.d.ts +16 -15
- package/out/exports/resources.generated/aws-servicecatalog-portfolioprincipalassociation.d.ts +5 -13
- package/out/exports/resources.generated/aws-ses-multiregionendpoint.d.ts +48 -0
- package/out/exports/resources.generated/aws-wafv2-webacl.d.ts +32 -0
- package/package.json +1 -1
|
@@ -1,11 +1,65 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Defines an Amazon S3 vector bucket in the same AWS Region where you create the AWS CloudFormation stack.
|
|
4
|
+
*
|
|
5
|
+
* Vector buckets are specialized storage containers designed for storing and managing vector data used in machine learning and AI applications. They provide optimized storage and retrieval capabilities for high-dimensional vector data.
|
|
6
|
+
*
|
|
7
|
+
* To control how AWS CloudFormation handles the bucket when the stack is deleted, you can set a deletion policy for your bucket. You can choose to *retain* the bucket or to *delete* the bucket. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html) .
|
|
8
|
+
*
|
|
9
|
+
* > You can only delete empty vector buckets. Deletion fails for buckets that have contents.
|
|
10
|
+
*
|
|
11
|
+
* - **Permissions** - The required permissions for CloudFormation to use are based on the operations that are performed on the stack.
|
|
12
|
+
*
|
|
13
|
+
* - Create
|
|
14
|
+
*
|
|
15
|
+
* - s3vectors:CreateVectorBucket
|
|
16
|
+
* - s3vectors:GetVectorBucket
|
|
17
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
18
|
+
* - Read
|
|
19
|
+
*
|
|
20
|
+
* - s3vectors:GetVectorBucket
|
|
21
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
22
|
+
* - Delete
|
|
23
|
+
*
|
|
24
|
+
* - s3vectors:DeleteVectorBucket
|
|
25
|
+
* - s3vectors:GetVectorBucket
|
|
26
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
27
|
+
* - List
|
|
28
|
+
*
|
|
29
|
+
* - s3vectors:ListVectorBuckets
|
|
30
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
4
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html}
|
|
5
32
|
*/
|
|
6
33
|
export type S3VectorsVectorBucket = ResourceDefinitionWithAttributes<"AWS::S3Vectors::VectorBucket", S3VectorsVectorBucketProps, S3VectorsVectorBucketAttribs>;
|
|
7
34
|
/**
|
|
8
|
-
*
|
|
35
|
+
* Defines an Amazon S3 vector bucket in the same AWS Region where you create the AWS CloudFormation stack.
|
|
36
|
+
*
|
|
37
|
+
* Vector buckets are specialized storage containers designed for storing and managing vector data used in machine learning and AI applications. They provide optimized storage and retrieval capabilities for high-dimensional vector data.
|
|
38
|
+
*
|
|
39
|
+
* To control how AWS CloudFormation handles the bucket when the stack is deleted, you can set a deletion policy for your bucket. You can choose to *retain* the bucket or to *delete* the bucket. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html) .
|
|
40
|
+
*
|
|
41
|
+
* > You can only delete empty vector buckets. Deletion fails for buckets that have contents.
|
|
42
|
+
*
|
|
43
|
+
* - **Permissions** - The required permissions for CloudFormation to use are based on the operations that are performed on the stack.
|
|
44
|
+
*
|
|
45
|
+
* - Create
|
|
46
|
+
*
|
|
47
|
+
* - s3vectors:CreateVectorBucket
|
|
48
|
+
* - s3vectors:GetVectorBucket
|
|
49
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
50
|
+
* - Read
|
|
51
|
+
*
|
|
52
|
+
* - s3vectors:GetVectorBucket
|
|
53
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
54
|
+
* - Delete
|
|
55
|
+
*
|
|
56
|
+
* - s3vectors:DeleteVectorBucket
|
|
57
|
+
* - s3vectors:GetVectorBucket
|
|
58
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
59
|
+
* - List
|
|
60
|
+
*
|
|
61
|
+
* - s3vectors:ListVectorBuckets
|
|
62
|
+
* - kms:GenerateDataKey (if using KMS encryption)
|
|
9
63
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html}
|
|
10
64
|
*/
|
|
11
65
|
export type S3VectorsVectorBucketProps = {
|
|
@@ -15,7 +69,11 @@ export type S3VectorsVectorBucketProps = {
|
|
|
15
69
|
*/
|
|
16
70
|
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
17
71
|
/**
|
|
18
|
-
*
|
|
72
|
+
* A name for the vector bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). The bucket name must be unique in the same AWS account for each AWS Region. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the bucket name.
|
|
73
|
+
*
|
|
74
|
+
* The bucket name must be between 3 and 63 characters long and must not contain uppercase characters or underscores.
|
|
75
|
+
*
|
|
76
|
+
* > If you specify a name, you can't perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you need to replace the resource, specify a new name.
|
|
19
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html#cfn-s3vectors-vectorbucket-vectorbucketname}
|
|
20
78
|
*/
|
|
21
79
|
VectorBucketName?: string | undefined;
|
|
@@ -25,23 +83,31 @@ export type S3VectorsVectorBucketProps = {
|
|
|
25
83
|
*/
|
|
26
84
|
export type S3VectorsVectorBucketAttribs = {
|
|
27
85
|
/**
|
|
28
|
-
*
|
|
86
|
+
* Returns the date and time when the vector bucket was created.
|
|
87
|
+
*
|
|
88
|
+
* Example: `2024-12-21T10:30:00Z`
|
|
29
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html#cfn-s3vectors-vectorbucket-creationtime}
|
|
30
90
|
*/
|
|
31
91
|
CreationTime: string;
|
|
32
92
|
/**
|
|
33
|
-
*
|
|
93
|
+
* Returns the Amazon Resource Name (ARN) of the specified vector bucket.
|
|
94
|
+
*
|
|
95
|
+
* Example: `arn:aws:s3vectors:us-east-1:123456789012:bucket/amzn-s3-demo-vector-bucket`
|
|
34
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucket.html#cfn-s3vectors-vectorbucket-vectorbucketarn}
|
|
35
97
|
*/
|
|
36
98
|
VectorBucketArn: string;
|
|
37
99
|
};
|
|
38
100
|
/**
|
|
39
|
-
*
|
|
101
|
+
* Specifies the encryption configuration for the vector bucket. By default, all new vectors in Amazon S3 vector buckets use server-side encryption with Amazon S3 managed keys (SSE-S3), specifically AES256.
|
|
40
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-vectorbucket-encryptionconfiguration.html}
|
|
41
103
|
*/
|
|
42
104
|
export type EncryptionConfiguration = {
|
|
43
105
|
/**
|
|
44
|
-
* AWS Key Management Service (KMS) customer managed key
|
|
106
|
+
* AWS Key Management Service (KMS) customer managed key ARN to use for the encryption configuration. This parameter is required if and only if `SseType` is set to `aws:kms` .
|
|
107
|
+
*
|
|
108
|
+
* You must specify the full ARN of the KMS key. Key IDs or key aliases aren't supported.
|
|
109
|
+
*
|
|
110
|
+
* > Amazon S3 Vectors only supports symmetric encryption KMS keys. For more information, see [Asymmetric keys in AWS KMS](https://docs.aws.amazon.com//kms/latest/developerguide/symmetric-asymmetric.html) in the *AWS Key Management Service Developer Guide* .
|
|
45
111
|
* @minLength 1
|
|
46
112
|
* @maxLength 2048
|
|
47
113
|
* @pattern ^(arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]{12}:key/.+)$
|
|
@@ -49,7 +115,7 @@ export type EncryptionConfiguration = {
|
|
|
49
115
|
*/
|
|
50
116
|
KmsKeyArn?: string | undefined;
|
|
51
117
|
/**
|
|
52
|
-
* The server-side encryption type to use for the encryption configuration of the vector bucket.
|
|
118
|
+
* The server-side encryption type to use for the encryption configuration of the vector bucket. Valid values are `AES256` for Amazon S3 managed keys and `aws:kms` for AWS KMS keys.
|
|
53
119
|
* @default "AES256"
|
|
54
120
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-vectorbucket-encryptionconfiguration.html#cfn-s3vectors-vectorbucket-encryptionconfiguration-ssetype}
|
|
55
121
|
*/
|
|
@@ -1,40 +1,98 @@
|
|
|
1
1
|
import type { ResourceDefinition } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* The `AWS::S3Vectors::VectorBucketPolicy` resource defines an Amazon S3 vector bucket policy to control access to an Amazon S3 vector bucket.
|
|
4
|
+
*
|
|
5
|
+
* Vector bucket policies are written in JSON and allow you to grant or deny permissions across all (or a subset of) objects within a vector bucket.
|
|
6
|
+
*
|
|
7
|
+
* You must specify either `VectorBucketName` or `VectorBucketArn` to identify the target bucket.
|
|
8
|
+
*
|
|
9
|
+
* To control how AWS CloudFormation handles the vector bucket policy when the stack is deleted, you can set a deletion policy for your policy. You can choose to *retain* the policy or to *delete* the policy. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html) .
|
|
10
|
+
*
|
|
11
|
+
* - **Permissions** - The required permissions for CloudFormation to use are based on the operations that are performed on the stack.
|
|
12
|
+
*
|
|
13
|
+
* - Create
|
|
14
|
+
*
|
|
15
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
16
|
+
* - s3vectors:PutVectorBucketPolicy
|
|
17
|
+
* - Read
|
|
18
|
+
*
|
|
19
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
20
|
+
* - Update
|
|
21
|
+
*
|
|
22
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
23
|
+
* - s3vectors:PutVectorBucketPolicy
|
|
24
|
+
* - Delete
|
|
25
|
+
*
|
|
26
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
27
|
+
* - s3vectors:DeleteVectorBucketPolicy
|
|
28
|
+
* - List
|
|
29
|
+
*
|
|
30
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
31
|
+
* - s3vectors:ListVectorBuckets
|
|
4
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html}
|
|
5
33
|
*/
|
|
6
34
|
export type S3VectorsVectorBucketPolicy = ResourceDefinition<"AWS::S3Vectors::VectorBucketPolicy", S3VectorsVectorBucketPolicyProps>;
|
|
7
35
|
/**
|
|
8
|
-
*
|
|
36
|
+
* The `AWS::S3Vectors::VectorBucketPolicy` resource defines an Amazon S3 vector bucket policy to control access to an Amazon S3 vector bucket.
|
|
37
|
+
*
|
|
38
|
+
* Vector bucket policies are written in JSON and allow you to grant or deny permissions across all (or a subset of) objects within a vector bucket.
|
|
39
|
+
*
|
|
40
|
+
* You must specify either `VectorBucketName` or `VectorBucketArn` to identify the target bucket.
|
|
41
|
+
*
|
|
42
|
+
* To control how AWS CloudFormation handles the vector bucket policy when the stack is deleted, you can set a deletion policy for your policy. You can choose to *retain* the policy or to *delete* the policy. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html) .
|
|
43
|
+
*
|
|
44
|
+
* - **Permissions** - The required permissions for CloudFormation to use are based on the operations that are performed on the stack.
|
|
45
|
+
*
|
|
46
|
+
* - Create
|
|
47
|
+
*
|
|
48
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
49
|
+
* - s3vectors:PutVectorBucketPolicy
|
|
50
|
+
* - Read
|
|
51
|
+
*
|
|
52
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
53
|
+
* - Update
|
|
54
|
+
*
|
|
55
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
56
|
+
* - s3vectors:PutVectorBucketPolicy
|
|
57
|
+
* - Delete
|
|
58
|
+
*
|
|
59
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
60
|
+
* - s3vectors:DeleteVectorBucketPolicy
|
|
61
|
+
* - List
|
|
62
|
+
*
|
|
63
|
+
* - s3vectors:GetVectorBucketPolicy
|
|
64
|
+
* - s3vectors:ListVectorBuckets
|
|
9
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html}
|
|
10
66
|
*/
|
|
11
67
|
export type S3VectorsVectorBucketPolicyProps = {
|
|
12
68
|
/**
|
|
69
|
+
* A policy document containing permissions to add to the specified vector bucket. In IAM , you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM .
|
|
13
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html#cfn-s3vectors-vectorbucketpolicy-policy}
|
|
14
71
|
*/
|
|
15
72
|
Policy: Policy;
|
|
16
73
|
/**
|
|
17
|
-
* The Amazon Resource Name (ARN) of the vector bucket.
|
|
74
|
+
* The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
18
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html#cfn-s3vectors-vectorbucketpolicy-vectorbucketarn}
|
|
19
76
|
*/
|
|
20
77
|
VectorBucketArn?: string | undefined;
|
|
21
78
|
/**
|
|
22
|
-
* The name of the vector bucket
|
|
79
|
+
* The name of the S3 vector bucket to which the policy applies.
|
|
23
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html#cfn-s3vectors-vectorbucketpolicy-vectorbucketname}
|
|
24
81
|
*/
|
|
25
82
|
VectorBucketName: string;
|
|
26
83
|
} | {
|
|
27
84
|
/**
|
|
85
|
+
* A policy document containing permissions to add to the specified vector bucket. In IAM , you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM .
|
|
28
86
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html#cfn-s3vectors-vectorbucketpolicy-policy}
|
|
29
87
|
*/
|
|
30
88
|
Policy: Policy;
|
|
31
89
|
/**
|
|
32
|
-
* The Amazon Resource Name (ARN) of the vector bucket.
|
|
90
|
+
* The Amazon Resource Name (ARN) of the S3 vector bucket to which the policy applies.
|
|
33
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html#cfn-s3vectors-vectorbucketpolicy-vectorbucketarn}
|
|
34
92
|
*/
|
|
35
93
|
VectorBucketArn: string;
|
|
36
94
|
/**
|
|
37
|
-
* The name of the vector bucket
|
|
95
|
+
* The name of the S3 vector bucket to which the policy applies.
|
|
38
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3vectors-vectorbucketpolicy.html#cfn-s3vectors-vectorbucketpolicy-vectorbucketname}
|
|
39
97
|
*/
|
|
40
98
|
VectorBucketName?: string | undefined;
|
|
@@ -41,7 +41,7 @@ export type ServiceCatalogCloudFormationProductProps = {
|
|
|
41
41
|
* The type of product.
|
|
42
42
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-producttype}
|
|
43
43
|
*/
|
|
44
|
-
ProductType?:
|
|
44
|
+
ProductType?: "CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL" | undefined;
|
|
45
45
|
/**
|
|
46
46
|
* The configuration of the provisioning artifact (also known as a version).
|
|
47
47
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactparameters}
|
|
@@ -87,6 +87,7 @@ export type ServiceCatalogCloudFormationProductProps = {
|
|
|
87
87
|
*/
|
|
88
88
|
export type ServiceCatalogCloudFormationProductAttribs = {
|
|
89
89
|
/**
|
|
90
|
+
* The ID of the product, such as prod-tsjbmal34qvek
|
|
90
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#cfn-servicecatalog-cloudformationproduct-id}
|
|
91
92
|
*/
|
|
92
93
|
Id: string;
|
|
@@ -132,17 +133,6 @@ export type CodeStarParameters = {
|
|
|
132
133
|
*/
|
|
133
134
|
Repository: string;
|
|
134
135
|
};
|
|
135
|
-
/**
|
|
136
|
-
* Provides connection details.
|
|
137
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-connectionparameters.html}
|
|
138
|
-
*/
|
|
139
|
-
export type ConnectionParameters = {
|
|
140
|
-
/**
|
|
141
|
-
* Provides `ConnectionType` details.
|
|
142
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-connectionparameters.html#cfn-servicecatalog-cloudformationproduct-connectionparameters-codestar}
|
|
143
|
-
*/
|
|
144
|
-
CodeStar?: CodeStarParameters | undefined;
|
|
145
|
-
};
|
|
146
136
|
/**
|
|
147
137
|
* Information about a provisioning artifact (also known as a version) for a product.
|
|
148
138
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html}
|
|
@@ -168,7 +158,16 @@ export type ProvisioningArtifactProperties = {
|
|
|
168
158
|
* `ImportFromPhysicalId` : The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: `ImportFromPhysicalId: “arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]`
|
|
169
159
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-info}
|
|
170
160
|
*/
|
|
171
|
-
Info:
|
|
161
|
+
Info: {
|
|
162
|
+
/**
|
|
163
|
+
* The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
|
|
164
|
+
*/
|
|
165
|
+
ImportFromPhysicalId?: string | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
|
|
168
|
+
*/
|
|
169
|
+
LoadTemplateFromURL?: string | undefined;
|
|
170
|
+
};
|
|
172
171
|
/**
|
|
173
172
|
* The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
|
|
174
173
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-name}
|
|
@@ -183,7 +182,7 @@ export type ProvisioningArtifactProperties = {
|
|
|
183
182
|
* - `EXTERNAL` - External configuration file
|
|
184
183
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html#cfn-servicecatalog-cloudformationproduct-provisioningartifactproperties-type}
|
|
185
184
|
*/
|
|
186
|
-
Type?:
|
|
185
|
+
Type?: "CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL" | undefined;
|
|
187
186
|
};
|
|
188
187
|
/**
|
|
189
188
|
* A top level `ProductViewDetail` response containing details about the product’s connection. AWS Service Catalog returns this field for the `CreateProduct` , `UpdateProduct` , `DescribeProductAsAdmin` , and `SearchProductAsAdmin` APIs. This response contains the same fields as the `ConnectionParameters` request, with the addition of the `LastSync` response.
|
|
@@ -194,7 +193,9 @@ export type SourceConnection = {
|
|
|
194
193
|
* The connection details based on the connection `Type` .
|
|
195
194
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-sourceconnection.html#cfn-servicecatalog-cloudformationproduct-sourceconnection-connectionparameters}
|
|
196
195
|
*/
|
|
197
|
-
ConnectionParameters:
|
|
196
|
+
ConnectionParameters: {
|
|
197
|
+
CodeStar?: CodeStarParameters | undefined;
|
|
198
|
+
};
|
|
198
199
|
/**
|
|
199
200
|
* The only supported `SourceConnection` type is Codestar.
|
|
200
201
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-sourceconnection.html#cfn-servicecatalog-cloudformationproduct-sourceconnection-type}
|
package/out/exports/resources.generated/aws-servicecatalog-portfolioprincipalassociation.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ResourceDefinition } from "../main.ts";
|
|
2
2
|
/**
|
|
3
3
|
* Associates the specified principal ARN with the specified portfolio.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
|
|
5
5
|
*/
|
|
6
|
-
export type ServiceCatalogPortfolioPrincipalAssociation =
|
|
6
|
+
export type ServiceCatalogPortfolioPrincipalAssociation = ResourceDefinition<"AWS::ServiceCatalog::PortfolioPrincipalAssociation", ServiceCatalogPortfolioPrincipalAssociationProps>;
|
|
7
7
|
/**
|
|
8
8
|
* Associates the specified principal ARN with the specified portfolio.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html}
|
|
@@ -21,25 +21,17 @@ export type ServiceCatalogPortfolioPrincipalAssociationProps = {
|
|
|
21
21
|
* The portfolio identifier.
|
|
22
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-portfolioid}
|
|
23
23
|
*/
|
|
24
|
-
PortfolioId
|
|
24
|
+
PortfolioId?: string | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* The ARN of the principal ( IAM user, role, or group).
|
|
27
|
+
* @pattern arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*
|
|
27
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principalarn}
|
|
28
29
|
*/
|
|
29
|
-
PrincipalARN
|
|
30
|
+
PrincipalARN?: string | undefined;
|
|
30
31
|
/**
|
|
31
32
|
* The principal type. The supported values are `IAM` and `IAM_PATTERN` .
|
|
32
33
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-principaltype}
|
|
33
34
|
*/
|
|
34
35
|
PrincipalType: string;
|
|
35
36
|
};
|
|
36
|
-
/**
|
|
37
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#aws-resource-servicecatalog-portfolioprincipalassociation-return-values}
|
|
38
|
-
*/
|
|
39
|
-
export type ServiceCatalogPortfolioPrincipalAssociationAttribs = {
|
|
40
|
-
/**
|
|
41
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioprincipalassociation.html#cfn-servicecatalog-portfolioprincipalassociation-id}
|
|
42
|
-
*/
|
|
43
|
-
Id: string;
|
|
44
|
-
};
|
|
45
37
|
//# sourceMappingURL=aws-servicecatalog-portfolioprincipalassociation.d.ts.map
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import type { ResourceDefinition, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Creates a multi-region endpoint (global-endpoint).
|
|
4
|
+
*
|
|
5
|
+
* The primary region is going to be the AWS-Region where the operation is executed. The secondary region has to be provided in request's parameters. From the data flow standpoint there is no difference between primary and secondary regions - sending traffic will be split equally between the two. The primary region is the region where the resource has been created and where it can be managed.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
|
|
7
|
+
*/
|
|
8
|
+
export type SESMultiRegionEndpoint = ResourceDefinition<"AWS::SES::MultiRegionEndpoint", SESMultiRegionEndpointProps>;
|
|
9
|
+
/**
|
|
10
|
+
* Creates a multi-region endpoint (global-endpoint).
|
|
11
|
+
*
|
|
12
|
+
* The primary region is going to be the AWS-Region where the operation is executed. The secondary region has to be provided in request's parameters. From the data flow standpoint there is no difference between primary and secondary regions - sending traffic will be split equally between the two. The primary region is the region where the resource has been created and where it can be managed.
|
|
13
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
|
|
14
|
+
*/
|
|
15
|
+
export type SESMultiRegionEndpointProps = {
|
|
16
|
+
/**
|
|
17
|
+
* Contains details of a multi-region endpoint (global-endpoint) being created.
|
|
18
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html#cfn-ses-multiregionendpoint-details}
|
|
19
|
+
*/
|
|
20
|
+
Details: Details;
|
|
21
|
+
/**
|
|
22
|
+
* The name of the multi-region endpoint (global-endpoint).
|
|
23
|
+
* @minLength 1
|
|
24
|
+
* @maxLength 64
|
|
25
|
+
* @pattern ^[\w\-_]+$
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html#cfn-ses-multiregionendpoint-endpointname}
|
|
27
|
+
*/
|
|
28
|
+
EndpointName: string;
|
|
29
|
+
/**
|
|
30
|
+
* An array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html#cfn-ses-multiregionendpoint-tags}
|
|
32
|
+
*/
|
|
33
|
+
Tags?: Tag[] | undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* An object that contains configuration details of multi-region endpoint (global-endpoint).
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-details.html}
|
|
38
|
+
*/
|
|
39
|
+
export type Details = {
|
|
40
|
+
/**
|
|
41
|
+
* A list of route configuration details. Must contain exactly one route configuration
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-details.html#cfn-ses-multiregionendpoint-details-routedetails}
|
|
43
|
+
*/
|
|
44
|
+
RouteDetails: {
|
|
45
|
+
Region: string;
|
|
46
|
+
}[];
|
|
47
|
+
};
|
|
48
|
+
//# sourceMappingURL=aws-ses-multiregionendpoint.d.ts.map
|
|
@@ -45,6 +45,11 @@ export type WAFv2WebACL = ResourceDefinitionWithAttributes<"AWS::WAFv2::WebACL",
|
|
|
45
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html}
|
|
46
46
|
*/
|
|
47
47
|
export type WAFv2WebACLProps = {
|
|
48
|
+
/**
|
|
49
|
+
* Returns a list of `ApplicationAttribute` s.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafv2-webacl.html#cfn-wafv2-webacl-applicationconfig}
|
|
51
|
+
*/
|
|
52
|
+
ApplicationConfig?: ApplicationConfig | undefined;
|
|
48
53
|
/**
|
|
49
54
|
* Specifies custom configurations for the associations between the web ACL and protected resources.
|
|
50
55
|
*
|
|
@@ -322,6 +327,33 @@ export type AndStatement = {
|
|
|
322
327
|
*/
|
|
323
328
|
Statements: Statement[];
|
|
324
329
|
};
|
|
330
|
+
/**
|
|
331
|
+
* Application details defined during the web ACL creation process. Application attributes help AWS WAF give recommendations for protection packs.
|
|
332
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationattribute.html}
|
|
333
|
+
*/
|
|
334
|
+
export type ApplicationAttribute = {
|
|
335
|
+
/**
|
|
336
|
+
* Specifies the attribute name.
|
|
337
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationattribute.html#cfn-wafv2-webacl-applicationattribute-name}
|
|
338
|
+
*/
|
|
339
|
+
Name: string;
|
|
340
|
+
/**
|
|
341
|
+
* Specifies the attribute value.
|
|
342
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationattribute.html#cfn-wafv2-webacl-applicationattribute-values}
|
|
343
|
+
*/
|
|
344
|
+
Values: string[];
|
|
345
|
+
};
|
|
346
|
+
/**
|
|
347
|
+
* A list of `ApplicationAttribute` s that contains information about the application.
|
|
348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationconfig.html}
|
|
349
|
+
*/
|
|
350
|
+
export type ApplicationConfig = {
|
|
351
|
+
/**
|
|
352
|
+
* Contains the attribute name and a list of values for that attribute.
|
|
353
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-webacl-applicationconfig.html#cfn-wafv2-webacl-applicationconfig-attributes}
|
|
354
|
+
*/
|
|
355
|
+
Attributes: ApplicationAttribute[];
|
|
356
|
+
};
|
|
325
357
|
/**
|
|
326
358
|
* A rule statement that inspects web traffic based on the Autonomous System Number (ASN) associated with the request's IP address.
|
|
327
359
|
*
|