@awboost/cfn-resource-types 0.1.466 → 0.1.468
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/lib/AWS-BedrockAgentCore-WorkloadIdentity.d.ts +69 -0
- package/lib/AWS-BedrockAgentCore-WorkloadIdentity.js +12 -0
- package/lib/AWS-Cassandra-Keyspace.d.ts +2 -2
- package/lib/AWS-DataZone-Connection.d.ts +32 -0
- package/lib/AWS-ECS-CapacityProvider.d.ts +1 -1
- package/lib/AWS-Glue-IntegrationResourceProperty.d.ts +94 -0
- package/lib/AWS-Glue-IntegrationResourceProperty.js +12 -0
- package/lib/AWS-OpenSearchServerless-Collection.d.ts +4 -0
- package/lib/AWS-QuickSight-DataSet.d.ts +781 -11
- package/lib/AWS-QuickSight-DataSource.d.ts +1 -1
- package/lib/AWS-SES-MultiRegionEndpoint.d.ts +71 -0
- package/lib/AWS-SES-MultiRegionEndpoint.js +12 -0
- package/lib/AWS-ServiceCatalog-PortfolioPrincipalAssociation.d.ts +16 -10
- package/lib/AWS-WAFv2-WebACL.d.ts +37 -0
- package/package.json +1 -1
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BedrockAgentCoreWorkloadIdentityProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The list of allowed OAuth2 return URLs for resources associated with this workload identity.
|
|
10
|
+
*/
|
|
11
|
+
AllowedResourceOauth2ReturnUrls?: string[];
|
|
12
|
+
/**
|
|
13
|
+
* The name of the workload identity. The name must be unique within your account.
|
|
14
|
+
* @minLength `3`
|
|
15
|
+
* @maxLength `255`
|
|
16
|
+
* @pattern `[A-Za-z0-9_.-]+`
|
|
17
|
+
*/
|
|
18
|
+
Name: string;
|
|
19
|
+
/**
|
|
20
|
+
* An array of key-value pairs to apply to this resource.
|
|
21
|
+
*/
|
|
22
|
+
Tags?: Tag[];
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::BedrockAgentCore::WorkloadIdentity`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html#aws-resource-bedrockagentcore-workloadidentity-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type BedrockAgentCoreWorkloadIdentityAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* The timestamp when the workload identity was created.
|
|
31
|
+
*/
|
|
32
|
+
CreatedTime: number;
|
|
33
|
+
/**
|
|
34
|
+
* The timestamp when the workload identity was last updated.
|
|
35
|
+
*/
|
|
36
|
+
LastUpdatedTime: number;
|
|
37
|
+
/**
|
|
38
|
+
* The Amazon Resource Name (ARN) of the workload identity.
|
|
39
|
+
* @minLength `1`
|
|
40
|
+
* @maxLength `1024`
|
|
41
|
+
*/
|
|
42
|
+
WorkloadIdentityArn: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Type definition for `AWS::BedrockAgentCore::WorkloadIdentity.Tag`.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-workloadidentity-tag.html}
|
|
47
|
+
*/
|
|
48
|
+
export type Tag = {
|
|
49
|
+
/**
|
|
50
|
+
* @minLength `1`
|
|
51
|
+
* @maxLength `128`
|
|
52
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
53
|
+
*/
|
|
54
|
+
Key: string;
|
|
55
|
+
/**
|
|
56
|
+
* @minLength `0`
|
|
57
|
+
* @maxLength `256`
|
|
58
|
+
*/
|
|
59
|
+
Value: string;
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html}
|
|
64
|
+
*/
|
|
65
|
+
export declare class BedrockAgentCoreWorkloadIdentity extends $Resource<"AWS::BedrockAgentCore::WorkloadIdentity", BedrockAgentCoreWorkloadIdentityProperties, BedrockAgentCoreWorkloadIdentityAttributes> {
|
|
66
|
+
static readonly Type = "AWS::BedrockAgentCore::WorkloadIdentity";
|
|
67
|
+
constructor(logicalId: string, properties: BedrockAgentCoreWorkloadIdentityProperties, options?: $ResourceOptions);
|
|
68
|
+
}
|
|
69
|
+
//# sourceMappingURL=AWS-BedrockAgentCore-WorkloadIdentity.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-workloadidentity.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BedrockAgentCoreWorkloadIdentity extends $Resource {
|
|
7
|
+
static Type = "AWS::BedrockAgentCore::WorkloadIdentity";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BedrockAgentCoreWorkloadIdentity.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-BedrockAgentCore-WorkloadIdentity.js.map
|
|
@@ -28,9 +28,9 @@ export type CassandraKeyspaceProperties = {
|
|
|
28
28
|
export type ReplicationSpecification = {
|
|
29
29
|
/**
|
|
30
30
|
* @minLength `2`
|
|
31
|
-
* @maxLength `
|
|
31
|
+
* @maxLength `20`
|
|
32
32
|
*/
|
|
33
|
-
RegionList?: ("af-south-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")[];
|
|
33
|
+
RegionList?: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")[];
|
|
34
34
|
ReplicationStrategy?: "SINGLE_REGION" | "MULTI_REGION";
|
|
35
35
|
};
|
|
36
36
|
/**
|
|
@@ -40,6 +40,10 @@ export type DataZoneConnectionProperties = {
|
|
|
40
40
|
*/
|
|
41
41
|
ProjectIdentifier?: string;
|
|
42
42
|
Props?: ConnectionPropertiesInput;
|
|
43
|
+
/**
|
|
44
|
+
* The scope of the connection.
|
|
45
|
+
*/
|
|
46
|
+
Scope?: "DOMAIN" | "PROJECT";
|
|
43
47
|
};
|
|
44
48
|
/**
|
|
45
49
|
* Attribute type definition for `AWS::DataZone::Connection`.
|
|
@@ -83,6 +87,29 @@ export type DataZoneConnectionAttributes = {
|
|
|
83
87
|
*/
|
|
84
88
|
Type: string;
|
|
85
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* Type definition for `AWS::DataZone::Connection.AmazonQPropertiesInput`.
|
|
92
|
+
* Amazon Q properties of the connection.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-amazonqpropertiesinput.html}
|
|
94
|
+
*/
|
|
95
|
+
export type AmazonQPropertiesInput = {
|
|
96
|
+
/**
|
|
97
|
+
* The authentication mode of the connection's AmazonQ properties
|
|
98
|
+
* @minLength `0`
|
|
99
|
+
* @maxLength `128`
|
|
100
|
+
*/
|
|
101
|
+
AuthMode?: string;
|
|
102
|
+
/**
|
|
103
|
+
* Specifies whether Amazon Q is enabled for the connection
|
|
104
|
+
*/
|
|
105
|
+
IsEnabled?: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* @minLength `0`
|
|
108
|
+
* @maxLength `2048`
|
|
109
|
+
* @pattern `arn:aws[a-z\-]*:[a-z0-9\-]+:[a-z0-9\-]*:[0-9]*:.*`
|
|
110
|
+
*/
|
|
111
|
+
ProfileArn?: string;
|
|
112
|
+
};
|
|
86
113
|
/**
|
|
87
114
|
* Type definition for `AWS::DataZone::Connection.AthenaPropertiesInput`.
|
|
88
115
|
* Athena Properties Input
|
|
@@ -230,6 +257,11 @@ export type ConnectionPropertiesInput = {
|
|
|
230
257
|
* Spark EMR Properties Input.
|
|
231
258
|
*/
|
|
232
259
|
SparkEmrProperties: SparkEmrPropertiesInput;
|
|
260
|
+
} | {
|
|
261
|
+
/**
|
|
262
|
+
* Amazon Q properties of the connection.
|
|
263
|
+
*/
|
|
264
|
+
AmazonQProperties: AmazonQPropertiesInput;
|
|
233
265
|
} | {
|
|
234
266
|
/**
|
|
235
267
|
* Spark Glue Properties Input.
|
|
@@ -66,7 +66,7 @@ export type InstanceLaunchTemplate = {
|
|
|
66
66
|
export type InstanceRequirementsRequest = {
|
|
67
67
|
AcceleratorCount?: AcceleratorCountRequest;
|
|
68
68
|
AcceleratorManufacturers?: ("amazon-web-services" | "amd" | "habana" | "nvidia" | "xilinx")[];
|
|
69
|
-
AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100")[];
|
|
69
|
+
AcceleratorNames?: ("a10g" | "a100" | "h100" | "inferentia" | "k520" | "k80" | "m60" | "radeon-pro-v520" | "t4" | "t4g" | "vu9p" | "v100" | "l40s")[];
|
|
70
70
|
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
|
|
71
71
|
AcceleratorTypes?: ("gpu" | "fpga" | "inference")[];
|
|
72
72
|
AllowedInstanceTypes?: string[];
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html}
|
|
6
|
+
*/
|
|
7
|
+
export type GlueIntegrationResourcePropertyProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The connection ARN of the source, or the database ARN of the target.
|
|
10
|
+
* @pattern `arn:aws:.*:.*:[0-9]+:.*`
|
|
11
|
+
*/
|
|
12
|
+
ResourceArn: string;
|
|
13
|
+
/**
|
|
14
|
+
* The resource properties associated with the integration source.
|
|
15
|
+
*/
|
|
16
|
+
SourceProcessingProperties?: {
|
|
17
|
+
/**
|
|
18
|
+
* The IAM role to access the Glue connection.
|
|
19
|
+
* @maxLength `128`
|
|
20
|
+
*/
|
|
21
|
+
RoleArn: string;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* An array of key-value pairs to apply to this resource.
|
|
25
|
+
* @maxLength `50`
|
|
26
|
+
*/
|
|
27
|
+
Tags?: Tag[];
|
|
28
|
+
/**
|
|
29
|
+
* The resource properties associated with the integration target.
|
|
30
|
+
*/
|
|
31
|
+
TargetProcessingProperties?: {
|
|
32
|
+
/**
|
|
33
|
+
* The Glue network connection to configure the Glue job running in the customer VPC.
|
|
34
|
+
* @maxLength `128`
|
|
35
|
+
*/
|
|
36
|
+
ConnectionName?: string;
|
|
37
|
+
/**
|
|
38
|
+
* The ARN of an Eventbridge event bus to receive the integration status notification.
|
|
39
|
+
* @maxLength `128`
|
|
40
|
+
*/
|
|
41
|
+
EventBusArn?: string;
|
|
42
|
+
/**
|
|
43
|
+
* The ARN of the KMS key used for encryption.
|
|
44
|
+
* @maxLength `128`
|
|
45
|
+
* @pattern `arn:aws:kms:.*:[0-9]+:.*`
|
|
46
|
+
*/
|
|
47
|
+
KmsArn?: string;
|
|
48
|
+
/**
|
|
49
|
+
* The IAM role to access the Glue database.
|
|
50
|
+
* @maxLength `128`
|
|
51
|
+
* @pattern `arn:aws:iam:.*:[0-9]+:.*`
|
|
52
|
+
*/
|
|
53
|
+
RoleArn: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
/**
|
|
57
|
+
* Attribute type definition for `AWS::Glue::IntegrationResourceProperty`.
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html#aws-resource-glue-integrationresourceproperty-return-values}
|
|
59
|
+
*/
|
|
60
|
+
export type GlueIntegrationResourcePropertyAttributes = {
|
|
61
|
+
/**
|
|
62
|
+
* The integration resource property ARN.
|
|
63
|
+
* @pattern `arn:aws:glue:.*:[0-9]+:.*`
|
|
64
|
+
*/
|
|
65
|
+
ResourcePropertyArn: string;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::Glue::IntegrationResourceProperty.Tag`.
|
|
69
|
+
* A key-value pair to associate with a resource.
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integrationresourceproperty-tag.html}
|
|
71
|
+
*/
|
|
72
|
+
export type Tag = {
|
|
73
|
+
/**
|
|
74
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
75
|
+
* @minLength `1`
|
|
76
|
+
* @maxLength `128`
|
|
77
|
+
*/
|
|
78
|
+
Key: string;
|
|
79
|
+
/**
|
|
80
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
81
|
+
* @minLength `0`
|
|
82
|
+
* @maxLength `256`
|
|
83
|
+
*/
|
|
84
|
+
Value?: string;
|
|
85
|
+
};
|
|
86
|
+
/**
|
|
87
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html}
|
|
89
|
+
*/
|
|
90
|
+
export declare class GlueIntegrationResourceProperty extends $Resource<"AWS::Glue::IntegrationResourceProperty", GlueIntegrationResourcePropertyProperties, GlueIntegrationResourcePropertyAttributes> {
|
|
91
|
+
static readonly Type = "AWS::Glue::IntegrationResourceProperty";
|
|
92
|
+
constructor(logicalId: string, properties: GlueIntegrationResourcePropertyProperties, options?: $ResourceOptions);
|
|
93
|
+
}
|
|
94
|
+
//# sourceMappingURL=AWS-Glue-IntegrationResourceProperty.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::Glue::IntegrationResourceProperty
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html}
|
|
5
|
+
*/
|
|
6
|
+
export class GlueIntegrationResourceProperty extends $Resource {
|
|
7
|
+
static Type = "AWS::Glue::IntegrationResourceProperty";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, GlueIntegrationResourceProperty.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Glue-IntegrationResourceProperty.js.map
|
|
@@ -63,6 +63,10 @@ export type OpenSearchServerlessCollectionAttributes = {
|
|
|
63
63
|
* @maxLength `40`
|
|
64
64
|
*/
|
|
65
65
|
Id: string;
|
|
66
|
+
/**
|
|
67
|
+
* The ARN of the AWS KMS key used to encrypt the collection.
|
|
68
|
+
*/
|
|
69
|
+
KmsKeyArn: string;
|
|
66
70
|
};
|
|
67
71
|
/**
|
|
68
72
|
* Type definition for `AWS::OpenSearchServerless::Collection.CollectionType`.
|