@awboost/cfn-resource-types 0.1.496 → 0.1.497
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-CleanRooms-AnalysisTemplate.d.ts +49 -0
- package/lib/AWS-CleanRooms-Collaboration.d.ts +8 -0
- package/lib/AWS-CloudFront-AnycastIpList.d.ts +32 -0
- package/lib/AWS-ConnectCampaignsV2-Campaign.d.ts +6 -0
- package/lib/AWS-DSQL-Cluster.d.ts +4 -0
- package/lib/AWS-DataZone-Connection.d.ts +21 -1
- package/lib/AWS-EC2-EC2Fleet.d.ts +1 -0
- package/lib/AWS-NetworkManager-ConnectAttachment.d.ts +4 -0
- package/lib/AWS-NetworkManager-CoreNetworkPrefixListAssociation.d.ts +30 -0
- package/lib/AWS-NetworkManager-CoreNetworkPrefixListAssociation.js +12 -0
- package/lib/AWS-NetworkManager-DirectConnectGatewayAttachment.d.ts +4 -0
- package/lib/AWS-NetworkManager-SiteToSiteVpnAttachment.d.ts +4 -0
- package/lib/AWS-NetworkManager-TransitGatewayRouteTableAttachment.d.ts +4 -0
- package/lib/AWS-NetworkManager-VpcAttachment.d.ts +4 -0
- package/lib/AWS-PaymentCryptography-Key.d.ts +30 -0
- package/lib/AWS-S3Vectors-Index.d.ts +22 -0
- package/lib/AWS-Transfer-Connector.d.ts +5 -0
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ export type CleanRoomsAnalysisTemplateProperties = {
|
|
|
33
33
|
Schema?: AnalysisSchema;
|
|
34
34
|
Source: AnalysisSource;
|
|
35
35
|
SourceMetadata?: AnalysisSourceMetadata;
|
|
36
|
+
SyntheticDataParameters?: SyntheticDataParameters;
|
|
36
37
|
/**
|
|
37
38
|
* An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
|
|
38
39
|
*/
|
|
@@ -148,6 +149,17 @@ export type AnalysisTemplateArtifacts = {
|
|
|
148
149
|
*/
|
|
149
150
|
RoleArn: string;
|
|
150
151
|
};
|
|
152
|
+
/**
|
|
153
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.ColumnClassificationDetails`.
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.html}
|
|
155
|
+
*/
|
|
156
|
+
export type ColumnClassificationDetails = {
|
|
157
|
+
/**
|
|
158
|
+
* @minLength `5`
|
|
159
|
+
* @maxLength `1000`
|
|
160
|
+
*/
|
|
161
|
+
ColumnMapping: SyntheticDataColumnProperties[];
|
|
162
|
+
};
|
|
151
163
|
/**
|
|
152
164
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.ErrorMessageConfiguration`.
|
|
153
165
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-errormessageconfiguration.html}
|
|
@@ -162,6 +174,23 @@ export type ErrorMessageConfiguration = {
|
|
|
162
174
|
export type Hash = {
|
|
163
175
|
Sha256?: string;
|
|
164
176
|
};
|
|
177
|
+
/**
|
|
178
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.MLSyntheticDataParameters`.
|
|
179
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-mlsyntheticdataparameters.html}
|
|
180
|
+
*/
|
|
181
|
+
export type MLSyntheticDataParameters = {
|
|
182
|
+
ColumnClassification: ColumnClassificationDetails;
|
|
183
|
+
/**
|
|
184
|
+
* @min `0.0001`
|
|
185
|
+
* @max `10`
|
|
186
|
+
*/
|
|
187
|
+
Epsilon: number;
|
|
188
|
+
/**
|
|
189
|
+
* @min `0.5`
|
|
190
|
+
* @max `1`
|
|
191
|
+
*/
|
|
192
|
+
MaxMembershipInferenceAttackScore: number;
|
|
193
|
+
};
|
|
165
194
|
/**
|
|
166
195
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.S3Location`.
|
|
167
196
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html}
|
|
@@ -174,6 +203,26 @@ export type S3Location = {
|
|
|
174
203
|
Bucket: string;
|
|
175
204
|
Key: string;
|
|
176
205
|
};
|
|
206
|
+
/**
|
|
207
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataColumnProperties`.
|
|
208
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdatacolumnproperties.html}
|
|
209
|
+
*/
|
|
210
|
+
export type SyntheticDataColumnProperties = {
|
|
211
|
+
/**
|
|
212
|
+
* @maxLength `128`
|
|
213
|
+
* @pattern `^[a-z0-9_](([a-z0-9_]+-)*([a-z0-9_]+))?$`
|
|
214
|
+
*/
|
|
215
|
+
ColumnName: string;
|
|
216
|
+
ColumnType: "CATEGORICAL" | "NUMERICAL";
|
|
217
|
+
IsPredictiveValue: boolean;
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataParameters`.
|
|
221
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdataparameters.html}
|
|
222
|
+
*/
|
|
223
|
+
export type SyntheticDataParameters = {
|
|
224
|
+
MlSyntheticDataParameters: MLSyntheticDataParameters;
|
|
225
|
+
};
|
|
177
226
|
/**
|
|
178
227
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.Tag`.
|
|
179
228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-tag.html}
|
|
@@ -141,6 +141,7 @@ export type MLMemberAbilities = {
|
|
|
141
141
|
export type MLPaymentConfig = {
|
|
142
142
|
ModelInference?: ModelInferencePaymentConfig;
|
|
143
143
|
ModelTraining?: ModelTrainingPaymentConfig;
|
|
144
|
+
SyntheticDataGeneration?: SyntheticDataGenerationPaymentConfig;
|
|
144
145
|
};
|
|
145
146
|
/**
|
|
146
147
|
* Type definition for `AWS::CleanRooms::Collaboration.ModelInferencePaymentConfig`.
|
|
@@ -177,6 +178,13 @@ export type QueryComputePaymentConfig = {
|
|
|
177
178
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-supporteds3region.html}
|
|
178
179
|
*/
|
|
179
180
|
export type SupportedS3Region = "us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1";
|
|
181
|
+
/**
|
|
182
|
+
* Type definition for `AWS::CleanRooms::Collaboration.SyntheticDataGenerationPaymentConfig`.
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-syntheticdatagenerationpaymentconfig.html}
|
|
184
|
+
*/
|
|
185
|
+
export type SyntheticDataGenerationPaymentConfig = {
|
|
186
|
+
IsResponsible: boolean;
|
|
187
|
+
};
|
|
180
188
|
/**
|
|
181
189
|
* Type definition for `AWS::CleanRooms::Collaboration.Tag`.
|
|
182
190
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-tag.html}
|
|
@@ -11,6 +11,7 @@ export type CloudFrontAnycastIpListProperties = {
|
|
|
11
11
|
* The number of IP addresses in the Anycast static IP list.
|
|
12
12
|
*/
|
|
13
13
|
IpCount: number;
|
|
14
|
+
IpamCidrConfigs?: IpamCidrConfig[];
|
|
14
15
|
/**
|
|
15
16
|
* The name of the Anycast static IP list.
|
|
16
17
|
* @minLength `1`
|
|
@@ -49,6 +50,12 @@ export type CloudFrontAnycastIpListAttributes = {
|
|
|
49
50
|
* The number of IP addresses in the Anycast static IP list.
|
|
50
51
|
*/
|
|
51
52
|
IpCount: number;
|
|
53
|
+
IpamCidrConfigResults: {
|
|
54
|
+
AnycastIp: string;
|
|
55
|
+
Cidr: string;
|
|
56
|
+
IpamPoolArn: string;
|
|
57
|
+
Status: string;
|
|
58
|
+
}[];
|
|
52
59
|
/**
|
|
53
60
|
* The last time the Anycast static IP list was modified.
|
|
54
61
|
*/
|
|
@@ -67,6 +74,12 @@ export type CloudFrontAnycastIpListAttributes = {
|
|
|
67
74
|
};
|
|
68
75
|
ETag: string;
|
|
69
76
|
Id: string;
|
|
77
|
+
IpamCidrConfigResults: {
|
|
78
|
+
AnycastIp: string;
|
|
79
|
+
Cidr: string;
|
|
80
|
+
IpamPoolArn: string;
|
|
81
|
+
Status: string;
|
|
82
|
+
}[];
|
|
70
83
|
};
|
|
71
84
|
/**
|
|
72
85
|
* Type definition for `AWS::CloudFront::AnycastIpList.AnycastIpList`.
|
|
@@ -91,6 +104,7 @@ export type AnycastIpList = {
|
|
|
91
104
|
* The number of IP addresses in the Anycast static IP list.
|
|
92
105
|
*/
|
|
93
106
|
IpCount: number;
|
|
107
|
+
IpamCidrConfigResults?: IpamCidrConfigResult[];
|
|
94
108
|
/**
|
|
95
109
|
* The last time the Anycast static IP list was modified.
|
|
96
110
|
*/
|
|
@@ -112,6 +126,24 @@ export type AnycastIpList = {
|
|
|
112
126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipaddresstype.html}
|
|
113
127
|
*/
|
|
114
128
|
export type IpAddressType = "ipv4" | "dualstack";
|
|
129
|
+
/**
|
|
130
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfig`.
|
|
131
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfig.html}
|
|
132
|
+
*/
|
|
133
|
+
export type IpamCidrConfig = {
|
|
134
|
+
Cidr: string;
|
|
135
|
+
IpamPoolArn: string;
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfigResult`.
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfigresult.html}
|
|
140
|
+
*/
|
|
141
|
+
export type IpamCidrConfigResult = {
|
|
142
|
+
AnycastIp?: string;
|
|
143
|
+
Cidr?: string;
|
|
144
|
+
IpamPoolArn?: string;
|
|
145
|
+
Status?: string;
|
|
146
|
+
};
|
|
115
147
|
/**
|
|
116
148
|
* Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
|
|
117
149
|
* A complex type that contains ``Tag`` key and ``Tag`` value.
|
|
@@ -551,6 +551,12 @@ export type TelephonyOutboundConfig = {
|
|
|
551
551
|
* @maxLength `100`
|
|
552
552
|
*/
|
|
553
553
|
ConnectSourcePhoneNumber?: string;
|
|
554
|
+
/**
|
|
555
|
+
* Maximum ring time for outbound calls in seconds
|
|
556
|
+
* @min `15`
|
|
557
|
+
* @max `60`
|
|
558
|
+
*/
|
|
559
|
+
RingTimeout?: number;
|
|
554
560
|
};
|
|
555
561
|
/**
|
|
556
562
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundMode`.
|
|
@@ -272,6 +272,11 @@ export type ConnectionPropertiesInput = {
|
|
|
272
272
|
* S3 Properties Input
|
|
273
273
|
*/
|
|
274
274
|
S3Properties: S3PropertiesInput;
|
|
275
|
+
} | {
|
|
276
|
+
/**
|
|
277
|
+
* MLflow Properties Input
|
|
278
|
+
*/
|
|
279
|
+
MlflowProperties: MlflowPropertiesInput;
|
|
275
280
|
};
|
|
276
281
|
/**
|
|
277
282
|
* Type definition for `AWS::DataZone::Connection.CredentialMap`.
|
|
@@ -406,6 +411,17 @@ export type LineageSyncSchedule = {
|
|
|
406
411
|
*/
|
|
407
412
|
Schedule?: string;
|
|
408
413
|
};
|
|
414
|
+
/**
|
|
415
|
+
* Type definition for `AWS::DataZone::Connection.MlflowPropertiesInput`.
|
|
416
|
+
* MLflow Properties Input
|
|
417
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-mlflowpropertiesinput.html}
|
|
418
|
+
*/
|
|
419
|
+
export type MlflowPropertiesInput = {
|
|
420
|
+
/**
|
|
421
|
+
* The ARN of the MLflow tracking server
|
|
422
|
+
*/
|
|
423
|
+
TrackingServerArn?: string;
|
|
424
|
+
};
|
|
409
425
|
/**
|
|
410
426
|
* Type definition for `AWS::DataZone::Connection.OAuth2ClientApplication`.
|
|
411
427
|
* OAuth2 Client Application
|
|
@@ -599,7 +615,7 @@ export type S3PropertiesInput = {
|
|
|
599
615
|
export type SparkEmrPropertiesInput = {
|
|
600
616
|
/**
|
|
601
617
|
* @maxLength `2048`
|
|
602
|
-
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless):.*`
|
|
618
|
+
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless|emr-containers):.*`
|
|
603
619
|
*/
|
|
604
620
|
ComputeArn?: string;
|
|
605
621
|
/**
|
|
@@ -617,6 +633,10 @@ export type SparkEmrPropertiesInput = {
|
|
|
617
633
|
* @pattern `^s3://.+$`
|
|
618
634
|
*/
|
|
619
635
|
LogUri?: string;
|
|
636
|
+
/**
|
|
637
|
+
* @maxLength `2048`
|
|
638
|
+
*/
|
|
639
|
+
ManagedEndpointArn?: string;
|
|
620
640
|
/**
|
|
621
641
|
* @maxLength `256`
|
|
622
642
|
* @pattern `^[\S]*$`
|
|
@@ -167,6 +167,7 @@ export type InstanceRequirementsRequest = {
|
|
|
167
167
|
NetworkBandwidthGbps?: NetworkBandwidthGbpsRequest;
|
|
168
168
|
NetworkInterfaceCount?: NetworkInterfaceCountRequest;
|
|
169
169
|
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
|
170
|
+
RequireEncryptionInTransit?: boolean;
|
|
170
171
|
RequireHibernateSupport?: boolean;
|
|
171
172
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
172
173
|
TotalLocalStorageGB?: TotalLocalStorageGBRequest;
|
|
@@ -29,6 +29,10 @@ export type NetworkManagerConnectAttachmentProperties = {
|
|
|
29
29
|
* The attachment to move from one segment to another.
|
|
30
30
|
*/
|
|
31
31
|
ProposedSegmentChange?: ProposedSegmentChange;
|
|
32
|
+
/**
|
|
33
|
+
* Routing policy label
|
|
34
|
+
*/
|
|
35
|
+
RoutingPolicyLabel?: string;
|
|
32
36
|
/**
|
|
33
37
|
* Tags for the attachment.
|
|
34
38
|
*/
|
|
@@ -0,0 +1,30 @@
|
|
|
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::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export type NetworkManagerCoreNetworkPrefixListAssociationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The ID of the core network.
|
|
10
|
+
*/
|
|
11
|
+
CoreNetworkId: string;
|
|
12
|
+
/**
|
|
13
|
+
* The alias of the prefix list
|
|
14
|
+
*/
|
|
15
|
+
PrefixListAlias: string;
|
|
16
|
+
/**
|
|
17
|
+
* The Amazon Resource Name (ARN) of the prefix list.
|
|
18
|
+
* @pattern `^arn:[a-z0-9-]+:ec2:[a-z]+-[a-z]+-[0-9]:([0-9]{12}):prefix-list/pl-[a-z0-9]+$`
|
|
19
|
+
*/
|
|
20
|
+
PrefixListArn: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Resource Type definition for AWS::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
|
|
25
|
+
*/
|
|
26
|
+
export declare class NetworkManagerCoreNetworkPrefixListAssociation extends $Resource<"AWS::NetworkManager::CoreNetworkPrefixListAssociation", NetworkManagerCoreNetworkPrefixListAssociationProperties, Record<string, never>> {
|
|
27
|
+
static readonly Type = "AWS::NetworkManager::CoreNetworkPrefixListAssociation";
|
|
28
|
+
constructor(logicalId: string, properties: NetworkManagerCoreNetworkPrefixListAssociationProperties, options?: $ResourceOptions);
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=AWS-NetworkManager-CoreNetworkPrefixListAssociation.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::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
|
|
5
|
+
*/
|
|
6
|
+
export class NetworkManagerCoreNetworkPrefixListAssociation extends $Resource {
|
|
7
|
+
static Type = "AWS::NetworkManager::CoreNetworkPrefixListAssociation";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, NetworkManagerCoreNetworkPrefixListAssociation.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-NetworkManager-CoreNetworkPrefixListAssociation.js.map
|
|
@@ -25,6 +25,10 @@ export type NetworkManagerDirectConnectGatewayAttachmentProperties = {
|
|
|
25
25
|
* The attachment to move from one segment to another.
|
|
26
26
|
*/
|
|
27
27
|
ProposedSegmentChange?: ProposedSegmentChange;
|
|
28
|
+
/**
|
|
29
|
+
* Routing policy label
|
|
30
|
+
*/
|
|
31
|
+
RoutingPolicyLabel?: string;
|
|
28
32
|
/**
|
|
29
33
|
* Tags for the attachment.
|
|
30
34
|
*/
|
|
@@ -21,6 +21,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentProperties = {
|
|
|
21
21
|
* The attachment to move from one segment to another.
|
|
22
22
|
*/
|
|
23
23
|
ProposedSegmentChange?: ProposedSegmentChange;
|
|
24
|
+
/**
|
|
25
|
+
* Routing policy label
|
|
26
|
+
*/
|
|
27
|
+
RoutingPolicyLabel?: string;
|
|
24
28
|
/**
|
|
25
29
|
* Tags for the attachment.
|
|
26
30
|
*/
|
|
@@ -21,6 +21,10 @@ export type NetworkManagerTransitGatewayRouteTableAttachmentProperties = {
|
|
|
21
21
|
* The attachment to move from one segment to another.
|
|
22
22
|
*/
|
|
23
23
|
ProposedSegmentChange?: ProposedSegmentChange;
|
|
24
|
+
/**
|
|
25
|
+
* Routing policy label
|
|
26
|
+
*/
|
|
27
|
+
RoutingPolicyLabel?: string;
|
|
24
28
|
/**
|
|
25
29
|
* An array of key-value pairs to apply to this resource.
|
|
26
30
|
*/
|
|
@@ -21,6 +21,10 @@ export type NetworkManagerVpcAttachmentProperties = {
|
|
|
21
21
|
* The attachment to move from one segment to another.
|
|
22
22
|
*/
|
|
23
23
|
ProposedSegmentChange?: ProposedSegmentChange;
|
|
24
|
+
/**
|
|
25
|
+
* Routing policy label
|
|
26
|
+
*/
|
|
27
|
+
RoutingPolicyLabel?: string;
|
|
24
28
|
/**
|
|
25
29
|
* Subnet Arn list
|
|
26
30
|
*/
|
|
@@ -10,6 +10,7 @@ export type PaymentCryptographyKeyProperties = {
|
|
|
10
10
|
Exportable: boolean;
|
|
11
11
|
KeyAttributes: KeyAttributes;
|
|
12
12
|
KeyCheckValueAlgorithm?: KeyCheckValueAlgorithm;
|
|
13
|
+
ReplicationRegions?: string[];
|
|
13
14
|
/**
|
|
14
15
|
* @minLength `0`
|
|
15
16
|
* @maxLength `200`
|
|
@@ -35,6 +36,13 @@ export type PaymentCryptographyKeyAttributes = {
|
|
|
35
36
|
* Defines the state of a key
|
|
36
37
|
*/
|
|
37
38
|
KeyState: KeyState;
|
|
39
|
+
ReplicationStatus: Record<string, {
|
|
40
|
+
/**
|
|
41
|
+
* Defines the replication state of a key
|
|
42
|
+
*/
|
|
43
|
+
Status: KeyReplicationState;
|
|
44
|
+
StatusMessage: string;
|
|
45
|
+
}>;
|
|
38
46
|
};
|
|
39
47
|
/**
|
|
40
48
|
* Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
|
|
@@ -87,6 +95,12 @@ export type KeyModesOfUse = {
|
|
|
87
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyorigin.html}
|
|
88
96
|
*/
|
|
89
97
|
export type KeyOrigin = "EXTERNAL" | "AWS_PAYMENT_CRYPTOGRAPHY";
|
|
98
|
+
/**
|
|
99
|
+
* Type definition for `AWS::PaymentCryptography::Key.KeyReplicationState`.
|
|
100
|
+
* Defines the replication state of a key
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyreplicationstate.html}
|
|
102
|
+
*/
|
|
103
|
+
export type KeyReplicationState = "IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "SYNCHRONIZED";
|
|
90
104
|
/**
|
|
91
105
|
* Type definition for `AWS::PaymentCryptography::Key.KeyState`.
|
|
92
106
|
* Defines the state of a key
|
|
@@ -98,6 +112,22 @@ export type KeyState = "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDIN
|
|
|
98
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyusage.html}
|
|
99
113
|
*/
|
|
100
114
|
export type KeyUsage = "TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_D1_ASYMMETRIC_KEY_FOR_DATA_ENCRYPTION" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_K3_ASYMMETRIC_KEY_FOR_KEY_AGREEMENT" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_S0_ASYMMETRIC_KEY_FOR_DIGITAL_SIGNATURE" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY" | "TR31_K2_TR34_ASYMMETRIC_KEY";
|
|
115
|
+
/**
|
|
116
|
+
* Type definition for `AWS::PaymentCryptography::Key.ReplicationStatus`.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatus.html}
|
|
118
|
+
*/
|
|
119
|
+
export type ReplicationStatus = Record<string, ReplicationStatusType>;
|
|
120
|
+
/**
|
|
121
|
+
* Type definition for `AWS::PaymentCryptography::Key.ReplicationStatusType`.
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatustype.html}
|
|
123
|
+
*/
|
|
124
|
+
export type ReplicationStatusType = {
|
|
125
|
+
/**
|
|
126
|
+
* Defines the replication state of a key
|
|
127
|
+
*/
|
|
128
|
+
Status: KeyReplicationState;
|
|
129
|
+
StatusMessage?: string;
|
|
130
|
+
};
|
|
101
131
|
/**
|
|
102
132
|
* Type definition for `AWS::PaymentCryptography::Key.Tag`.
|
|
103
133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-tag.html}
|
|
@@ -19,6 +19,10 @@ export type S3VectorsIndexProperties = {
|
|
|
19
19
|
* The distance metric to be used for similarity search.
|
|
20
20
|
*/
|
|
21
21
|
DistanceMetric: DistanceMetric;
|
|
22
|
+
/**
|
|
23
|
+
* The encryption configuration for the index.
|
|
24
|
+
*/
|
|
25
|
+
EncryptionConfiguration?: EncryptionConfiguration;
|
|
22
26
|
/**
|
|
23
27
|
* The name of the vector index to create.
|
|
24
28
|
* @minLength `3`
|
|
@@ -66,6 +70,24 @@ export type DataType = "float32";
|
|
|
66
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-distancemetric.html}
|
|
67
71
|
*/
|
|
68
72
|
export type DistanceMetric = "cosine" | "euclidean";
|
|
73
|
+
/**
|
|
74
|
+
* Type definition for `AWS::S3Vectors::Index.EncryptionConfiguration`.
|
|
75
|
+
* The encryption configuration for the index.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-encryptionconfiguration.html}
|
|
77
|
+
*/
|
|
78
|
+
export type EncryptionConfiguration = {
|
|
79
|
+
/**
|
|
80
|
+
* AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if sseType is set to aws:kms
|
|
81
|
+
* @minLength `1`
|
|
82
|
+
* @maxLength `2048`
|
|
83
|
+
* @pattern `^(arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]{12}:key/.+)$`
|
|
84
|
+
*/
|
|
85
|
+
KmsKeyArn?: string;
|
|
86
|
+
/**
|
|
87
|
+
* Defines the server-side encryption type for index encryption configuration. Defaults to the parent vector bucket's encryption settings when unspecified.
|
|
88
|
+
*/
|
|
89
|
+
SseType?: "AES256" | "aws:kms";
|
|
90
|
+
};
|
|
69
91
|
/**
|
|
70
92
|
* Type definition for `AWS::S3Vectors::Index.MetadataConfiguration`.
|
|
71
93
|
* The metadata configuration for the vector index.
|
|
@@ -141,6 +141,11 @@ export type TransferConnectorAttributes = {
|
|
|
141
141
|
* @pattern `^c-([0-9a-f]{17})$`
|
|
142
142
|
*/
|
|
143
143
|
ConnectorId: string;
|
|
144
|
+
/**
|
|
145
|
+
* Detailed error message when Connector in ERRORED status
|
|
146
|
+
* @maxLength `2048`
|
|
147
|
+
*/
|
|
148
|
+
ErrorMessage: string;
|
|
144
149
|
/**
|
|
145
150
|
* The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
|
|
146
151
|
*/
|