@propulsionworks/cloudformation 0.1.19 → 0.1.20
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-arcregionswitch-plan.d.ts +716 -0
- package/out/exports/resources.generated/aws-batch-jobqueue.d.ts +72 -1
- package/out/exports/resources.generated/aws-batch-serviceenvironment.d.ts +66 -0
- package/out/exports/resources.generated/aws-cassandra-table.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +10 -2
- package/out/exports/resources.generated/aws-cognito-managedloginbranding.d.ts +7 -0
- package/out/exports/resources.generated/aws-datazone-environmentblueprintconfiguration.d.ts +4 -0
- package/out/exports/resources.generated/aws-datazone-project.d.ts +9 -2
- package/out/exports/resources.generated/aws-datazone-projectprofile.d.ts +26 -2
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +0 -4
- package/out/exports/resources.generated/aws-ec2-ipam.d.ts +6 -1
- package/out/exports/resources.generated/aws-ec2-transitgatewayconnectpeer.d.ts +73 -0
- package/out/exports/resources.generated/aws-ecr-repository.d.ts +25 -1
- package/out/exports/resources.generated/aws-ecr-repositorycreationtemplate.d.ts +23 -1
- package/out/exports/resources.generated/aws-entityresolution-idmappingworkflow.d.ts +12 -8
- package/out/exports/resources.generated/aws-entityresolution-idnamespace.d.ts +8 -8
- package/out/exports/resources.generated/aws-entityresolution-matchingworkflow.d.ts +45 -15
- package/out/exports/resources.generated/aws-glue-job.d.ts +1 -1
- package/out/exports/resources.generated/aws-iotsitewise-computationmodel.d.ts +158 -0
- package/out/exports/resources.generated/aws-iotsitewise-gateway.d.ts +1 -1
- package/out/exports/resources.generated/aws-lambda-version.d.ts +1 -1
- package/out/exports/resources.generated/aws-lightsail-domain.d.ts +26 -11
- package/out/exports/resources.generated/aws-logs-destination.d.ts +6 -1
- package/out/exports/resources.generated/aws-logs-loggroup.d.ts +4 -0
- package/out/exports/resources.generated/aws-medialive-channel.d.ts +3 -0
- package/out/exports/resources.generated/aws-mediapackagev2-channel.d.ts +7 -0
- package/out/exports/resources.generated/aws-mediapackagev2-originendpointpolicy.d.ts +23 -0
- package/out/exports/resources.generated/aws-opensearchserverless-securityconfig.d.ts +1 -1
- package/out/exports/resources.generated/aws-opsworkscm-server.d.ts +0 -2
- package/out/exports/resources.generated/aws-quicksight-topic.d.ts +15 -0
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +45 -0
- package/out/exports/resources.generated/aws-s3-accesspoint.d.ts +6 -1
- package/out/exports/resources.generated/aws-s3express-accesspoint.d.ts +5 -1
- package/out/exports/resources.generated/aws-sagemaker-cluster.d.ts +107 -1
- package/out/exports/resources.generated/aws-sagemaker-domain.d.ts +5 -1
- package/out/exports/resources.generated/aws-sagemaker-processingjob.d.ts +608 -0
- package/out/exports/resources.generated/aws-sagemaker-space.d.ts +3 -0
- package/out/exports/resources.generated/aws-sagemaker-userprofile.d.ts +4 -0
- package/out/exports/resources.generated/aws-ses-configurationset.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-dedicatedippool.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-emailidentity.d.ts +1 -1
- package/out/exports/resources.generated/aws-ssm-patchbaseline.d.ts +5 -1
- package/out/exports/resources.generated/aws-wisdom-messagetemplate.d.ts +2 -2
- package/package.json +1 -1
|
@@ -23,6 +23,60 @@ export type BatchJobQueueProps = {
|
|
|
23
23
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename}
|
|
24
24
|
*/
|
|
25
25
|
JobQueueName?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuetype}
|
|
28
|
+
*/
|
|
29
|
+
JobQueueType?: string | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* The set of actions that AWS Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. AWS Batch will perform each action after `maxTimeSeconds` has passed.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobstatetimelimitactions}
|
|
33
|
+
*/
|
|
34
|
+
JobStateTimeLimitActions?: JobStateTimeLimitAction[] | undefined;
|
|
35
|
+
/**
|
|
36
|
+
* The priority of the job queue. Job queues with a higher priority (or a higher integer value for the `priority` parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of `10` is given scheduling preference over a job queue with a priority value of `1` . All of the compute environments must be either EC2 ( `EC2` or `SPOT` ) or Fargate ( `FARGATE` or `FARGATE_SPOT` ); EC2 and Fargate compute environments can't be mixed.
|
|
37
|
+
* @min 0
|
|
38
|
+
* @max 1000
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority}
|
|
40
|
+
*/
|
|
41
|
+
Priority: number;
|
|
42
|
+
/**
|
|
43
|
+
* The Amazon Resource Name (ARN) of the scheduling policy. The format is `aws: *Partition* :batch: *Region* : *Account* :scheduling-policy/ *Name*` . For example, `aws:aws:batch:us-west-2:123456789012:scheduling-policy/MySchedulingPolicy` .
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-schedulingpolicyarn}
|
|
45
|
+
*/
|
|
46
|
+
SchedulingPolicyArn?: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-serviceenvironmentorder}
|
|
49
|
+
*/
|
|
50
|
+
ServiceEnvironmentOrder?: ServiceEnvironmentOrder[] | undefined;
|
|
51
|
+
/**
|
|
52
|
+
* The state of the job queue. If the job queue state is `ENABLED` , it is able to accept jobs. If the job queue state is `DISABLED` , new jobs can't be added to the queue, but jobs already in the queue can finish.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state}
|
|
54
|
+
*/
|
|
55
|
+
State?: "DISABLED" | "ENABLED" | undefined;
|
|
56
|
+
/**
|
|
57
|
+
* The tags that are applied to the job queue. For more information, see [Tagging your AWS Batch resources](https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html) in *AWS Batch User Guide* .
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-tags}
|
|
59
|
+
*/
|
|
60
|
+
Tags?: Record<string, string> | undefined;
|
|
61
|
+
} | {
|
|
62
|
+
/**
|
|
63
|
+
* The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment runs a specific job. Compute environments must be in the `VALID` state before you can associate them with a job queue. You can associate up to three compute environments with a job queue. All of the compute environments must be either EC2 ( `EC2` or `SPOT` ) or Fargate ( `FARGATE` or `FARGATE_SPOT` ); EC2 and Fargate compute environments can't be mixed.
|
|
64
|
+
*
|
|
65
|
+
* > All compute environments that are associated with a job queue must share the same architecture. AWS Batch doesn't support mixing compute environment architecture types in a single job queue.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-computeenvironmentorder}
|
|
67
|
+
*/
|
|
68
|
+
ComputeEnvironmentOrder?: ComputeEnvironmentOrder[] | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* The name of the job queue. It can be up to 128 letters long. It can contain uppercase and lowercase letters, numbers, hyphens (-), and underscores (_).
|
|
71
|
+
* @minLength 1
|
|
72
|
+
* @maxLength 128
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename}
|
|
74
|
+
*/
|
|
75
|
+
JobQueueName?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuetype}
|
|
78
|
+
*/
|
|
79
|
+
JobQueueType?: string | undefined;
|
|
26
80
|
/**
|
|
27
81
|
* The set of actions that AWS Batch perform on jobs that remain at the head of the job queue in the specified state longer than specified times. AWS Batch will perform each action after `maxTimeSeconds` has passed.
|
|
28
82
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobstatetimelimitactions}
|
|
@@ -40,6 +94,10 @@ export type BatchJobQueueProps = {
|
|
|
40
94
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-schedulingpolicyarn}
|
|
41
95
|
*/
|
|
42
96
|
SchedulingPolicyArn?: string | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-serviceenvironmentorder}
|
|
99
|
+
*/
|
|
100
|
+
ServiceEnvironmentOrder: ServiceEnvironmentOrder[];
|
|
43
101
|
/**
|
|
44
102
|
* The state of the job queue. If the job queue state is `ENABLED` , it is able to accept jobs. If the job queue state is `DISABLED` , new jobs can't be added to the queue, but jobs already in the queue can finish.
|
|
45
103
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state}
|
|
@@ -88,7 +146,7 @@ export type JobStateTimeLimitAction = {
|
|
|
88
146
|
* The action to take when a job is at the head of the job queue in the specified state for the specified period of time. The only supported value is `CANCEL` , which will cancel the job.
|
|
89
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-jobstatetimelimitaction.html#cfn-batch-jobqueue-jobstatetimelimitaction-action}
|
|
90
148
|
*/
|
|
91
|
-
Action: "CANCEL";
|
|
149
|
+
Action: "CANCEL" | "TERMINATE";
|
|
92
150
|
/**
|
|
93
151
|
* The approximate amount of time, in seconds, that must pass with the job in the specified state before the action is taken. The minimum value is 600 (10 minutes) and the maximum value is 86,400 (24 hours).
|
|
94
152
|
* @min 600
|
|
@@ -107,4 +165,17 @@ export type JobStateTimeLimitAction = {
|
|
|
107
165
|
*/
|
|
108
166
|
State: "RUNNABLE";
|
|
109
167
|
};
|
|
168
|
+
/**
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-serviceenvironmentorder.html}
|
|
170
|
+
*/
|
|
171
|
+
export type ServiceEnvironmentOrder = {
|
|
172
|
+
/**
|
|
173
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-serviceenvironmentorder.html#cfn-batch-jobqueue-serviceenvironmentorder-order}
|
|
174
|
+
*/
|
|
175
|
+
Order: number;
|
|
176
|
+
/**
|
|
177
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-serviceenvironmentorder.html#cfn-batch-jobqueue-serviceenvironmentorder-serviceenvironment}
|
|
178
|
+
*/
|
|
179
|
+
ServiceEnvironment: string;
|
|
180
|
+
};
|
|
110
181
|
//# sourceMappingURL=aws-batch-jobqueue.d.ts.map
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Creates a service environment for running service jobs. Service environments define capacity limits for specific service types such as SageMaker Training jobs.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html}
|
|
5
|
+
*/
|
|
6
|
+
export type BatchServiceEnvironment = ResourceDefinitionWithAttributes<"AWS::Batch::ServiceEnvironment", BatchServiceEnvironmentProps, BatchServiceEnvironmentAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Creates a service environment for running service jobs. Service environments define capacity limits for specific service types such as SageMaker Training jobs.
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html}
|
|
10
|
+
*/
|
|
11
|
+
export type BatchServiceEnvironmentProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The capacity limits for the service environment. This defines the maximum resources that can be used by service jobs in this environment.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html#cfn-batch-serviceenvironment-capacitylimits}
|
|
15
|
+
*/
|
|
16
|
+
CapacityLimits: CapacityLimit[];
|
|
17
|
+
/**
|
|
18
|
+
* The name of the service environment.
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html#cfn-batch-serviceenvironment-serviceenvironmentname}
|
|
20
|
+
*/
|
|
21
|
+
ServiceEnvironmentName?: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* The type of service environment. For SageMaker Training jobs, this value is `SAGEMAKER_TRAINING` .
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html#cfn-batch-serviceenvironment-serviceenvironmenttype}
|
|
25
|
+
*/
|
|
26
|
+
ServiceEnvironmentType: string;
|
|
27
|
+
/**
|
|
28
|
+
* The state of the service environment. Valid values are `ENABLED` and `DISABLED` .
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html#cfn-batch-serviceenvironment-state}
|
|
30
|
+
*/
|
|
31
|
+
State?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* The tags associated with the service environment. Each tag consists of a key and an optional value. For more information, see [Tagging your AWS Batch resources](https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html) .
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html#cfn-batch-serviceenvironment-tags}
|
|
35
|
+
*/
|
|
36
|
+
Tags?: Record<string, string> | undefined;
|
|
37
|
+
};
|
|
38
|
+
/**
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html#aws-resource-batch-serviceenvironment-return-values}
|
|
40
|
+
*/
|
|
41
|
+
export type BatchServiceEnvironmentAttribs = {
|
|
42
|
+
/**
|
|
43
|
+
* The Amazon Resource Name (ARN) of the service environment.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-serviceenvironment.html#cfn-batch-serviceenvironment-serviceenvironmentarn}
|
|
45
|
+
*/
|
|
46
|
+
ServiceEnvironmentArn: string;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Defines the capacity limit for a service environment. This structure specifies the maximum amount of resources that can be used by service jobs in the environment.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-serviceenvironment-capacitylimit.html}
|
|
51
|
+
*/
|
|
52
|
+
export type CapacityLimit = {
|
|
53
|
+
/**
|
|
54
|
+
* The unit of measure for the capacity limit. This defines how the maxCapacity value should be interpreted. For `SAGEMAKER_TRAINING` jobs, use `NUM_INSTANCES` .
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-serviceenvironment-capacitylimit.html#cfn-batch-serviceenvironment-capacitylimit-capacityunit}
|
|
56
|
+
*/
|
|
57
|
+
CapacityUnit?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* The maximum capacity available for the service environment. This value represents the maximum amount of resources that can be allocated to service jobs.
|
|
60
|
+
*
|
|
61
|
+
* For example, `maxCapacity=50` , `capacityUnit=NUM_INSTANCES` . This indicates that the maximum number of instances that can be run on this service environment is 50. You could then run 5 SageMaker Training jobs that each use 10 instances. However, if you submit another job that requires 10 instances, it will wait in the queue.
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-serviceenvironment-capacitylimit.html#cfn-batch-serviceenvironment-capacitylimit-maxcapacity}
|
|
63
|
+
*/
|
|
64
|
+
MaxCapacity?: number | undefined;
|
|
65
|
+
};
|
|
66
|
+
//# sourceMappingURL=aws-batch-serviceenvironment.d.ts.map
|
|
@@ -206,7 +206,7 @@ export type CdcSpecification = {
|
|
|
206
206
|
*/
|
|
207
207
|
Status: CdcStatus;
|
|
208
208
|
/**
|
|
209
|
-
*
|
|
209
|
+
* The tags (key-value pairs) that you want to apply to the stream.
|
|
210
210
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-cdcspecification.html#cfn-cassandra-table-cdcspecification-tags}
|
|
211
211
|
*/
|
|
212
212
|
Tags?: Tag[] | undefined;
|
|
@@ -353,7 +353,7 @@ export type CustomOriginConfig = {
|
|
|
353
353
|
/**
|
|
354
354
|
* Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
355
355
|
*
|
|
356
|
-
* For more information, see [Response timeout
|
|
356
|
+
* For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide* .
|
|
357
357
|
* @default 30
|
|
358
358
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originreadtimeout}
|
|
359
359
|
*/
|
|
@@ -1056,6 +1056,11 @@ export type Origin = {
|
|
|
1056
1056
|
*/
|
|
1057
1057
|
OriginShield?: OriginShield | undefined;
|
|
1058
1058
|
/**
|
|
1059
|
+
* The time (in seconds) that a request from CloudFront to the origin can stay open and wait for a response. If the complete response isn't received from the origin by this time, CloudFront ends the connection.
|
|
1060
|
+
*
|
|
1061
|
+
* The value for `ResponseCompletionTimeout` must be equal to or greater than the value for `OriginReadTimeout` . If you don't set a value for `ResponseCompletionTimeout` , CloudFront doesn't enforce a maximum value.
|
|
1062
|
+
*
|
|
1063
|
+
* For more information, see [Response completion timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#response-completion-timeout) in the *Amazon CloudFront Developer Guide* .
|
|
1059
1064
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-responsecompletiontimeout}
|
|
1060
1065
|
*/
|
|
1061
1066
|
ResponseCompletionTimeout?: number | undefined;
|
|
@@ -1255,6 +1260,9 @@ export type S3OriginConfig = {
|
|
|
1255
1260
|
*/
|
|
1256
1261
|
OriginAccessIdentity?: string | undefined;
|
|
1257
1262
|
/**
|
|
1263
|
+
* Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
1264
|
+
*
|
|
1265
|
+
* For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide* .
|
|
1258
1266
|
* @default 30
|
|
1259
1267
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-s3originconfig.html#cfn-cloudfront-distribution-s3originconfig-originreadtimeout}
|
|
1260
1268
|
*/
|
|
@@ -1374,7 +1382,7 @@ export type VpcOriginConfig = {
|
|
|
1374
1382
|
/**
|
|
1375
1383
|
* Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout* . The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
1376
1384
|
*
|
|
1377
|
-
* For more information, see [Response timeout
|
|
1385
|
+
* For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide* .
|
|
1378
1386
|
* @default 30
|
|
1379
1387
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-vpcoriginconfig.html#cfn-cloudfront-distribution-vpcoriginconfig-originreadtimeout}
|
|
1380
1388
|
*/
|
|
@@ -38,6 +38,13 @@ export type CognitoManagedLoginBrandingProps = {
|
|
|
38
38
|
ReturnMergedResources?: boolean | undefined;
|
|
39
39
|
/**
|
|
40
40
|
* A JSON file, encoded as a `Document` type, with the the settings that you want to apply to your style.
|
|
41
|
+
*
|
|
42
|
+
* The following components are not currently implemented and reserved for future use:
|
|
43
|
+
*
|
|
44
|
+
* - `signUp`
|
|
45
|
+
* - `instructions`
|
|
46
|
+
* - `sessionTimerDisplay`
|
|
47
|
+
* - `languageSelector` (for localization, see [Managed login localization)](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-managed-login.html#managed-login-localization)
|
|
41
48
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-managedloginbranding.html#cfn-cognito-managedloginbranding-settings}
|
|
42
49
|
*/
|
|
43
50
|
Settings?: Record<string, unknown> | undefined;
|
|
@@ -87,20 +87,24 @@ export type DataZoneEnvironmentBlueprintConfigurationAttribs = {
|
|
|
87
87
|
UpdatedAt: string;
|
|
88
88
|
};
|
|
89
89
|
/**
|
|
90
|
+
* The Lake Formation configuration of the Data Lake blueprint.
|
|
90
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html}
|
|
91
92
|
*/
|
|
92
93
|
export type LakeFormationConfiguration = {
|
|
93
94
|
/**
|
|
95
|
+
* Specifies certain Amazon S3 locations if you do not want Amazon DataZone to automatically register them in hybrid mode.
|
|
94
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html#cfn-datazone-environmentblueprintconfiguration-lakeformationconfiguration-locationregistrationexcludes3locations}
|
|
95
97
|
*/
|
|
96
98
|
LocationRegistrationExcludeS3Locations?: string[] | undefined;
|
|
97
99
|
/**
|
|
100
|
+
* The role that is used to manage read/write access to the chosen Amazon S3 bucket(s) for Data Lake using AWS Lake Formation hybrid access mode.
|
|
98
101
|
* @pattern ^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$
|
|
99
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html#cfn-datazone-environmentblueprintconfiguration-lakeformationconfiguration-locationregistrationrole}
|
|
100
103
|
*/
|
|
101
104
|
LocationRegistrationRole?: string | undefined;
|
|
102
105
|
};
|
|
103
106
|
/**
|
|
107
|
+
* The provisioning configuration of the blueprint.
|
|
104
108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-provisioningconfiguration.html}
|
|
105
109
|
*/
|
|
106
110
|
export type ProvisioningConfiguration = {
|
|
@@ -41,13 +41,13 @@ export type DataZoneProjectProps = {
|
|
|
41
41
|
*/
|
|
42
42
|
Name: string;
|
|
43
43
|
/**
|
|
44
|
-
* The project profile
|
|
44
|
+
* The ID of the project profile.
|
|
45
45
|
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
46
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileid}
|
|
47
47
|
*/
|
|
48
48
|
ProjectProfileId?: string | undefined;
|
|
49
49
|
/**
|
|
50
|
-
* The project profile version to which the project should be updated. You can only specify the following string for this parameter: latest.
|
|
50
|
+
* The project profile version to which the project should be updated. You can only specify the following string for this parameter: `latest` .
|
|
51
51
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html#cfn-datazone-project-projectprofileversion}
|
|
52
52
|
*/
|
|
53
53
|
ProjectProfileVersion?: string | undefined;
|
|
@@ -97,10 +97,12 @@ export type DataZoneProjectAttribs = {
|
|
|
97
97
|
ProjectStatus: ProjectStatus;
|
|
98
98
|
};
|
|
99
99
|
/**
|
|
100
|
+
* The environment configuration user parameters.
|
|
100
101
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html}
|
|
101
102
|
*/
|
|
102
103
|
export type EnvironmentConfigurationUserParameter = {
|
|
103
104
|
/**
|
|
105
|
+
* The environment configuration name.
|
|
104
106
|
* @minLength 1
|
|
105
107
|
* @maxLength 64
|
|
106
108
|
* @pattern ^[\w -]+$
|
|
@@ -108,24 +110,29 @@ export type EnvironmentConfigurationUserParameter = {
|
|
|
108
110
|
*/
|
|
109
111
|
EnvironmentConfigurationName?: string | undefined;
|
|
110
112
|
/**
|
|
113
|
+
* The ID of the environment.
|
|
111
114
|
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
112
115
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentid}
|
|
113
116
|
*/
|
|
114
117
|
EnvironmentId?: string | undefined;
|
|
115
118
|
/**
|
|
119
|
+
* The environment parameters.
|
|
116
120
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentparameters}
|
|
117
121
|
*/
|
|
118
122
|
EnvironmentParameters?: EnvironmentParameter[] | undefined;
|
|
119
123
|
};
|
|
120
124
|
/**
|
|
125
|
+
* The parameter details of an evironment profile.
|
|
121
126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html}
|
|
122
127
|
*/
|
|
123
128
|
export type EnvironmentParameter = {
|
|
124
129
|
/**
|
|
130
|
+
* The name of an environment profile parameter.
|
|
125
131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html#cfn-datazone-project-environmentparameter-name}
|
|
126
132
|
*/
|
|
127
133
|
Name?: string | undefined;
|
|
128
134
|
/**
|
|
135
|
+
* The value of an environment profile parameter.
|
|
129
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html#cfn-datazone-project-environmentparameter-value}
|
|
130
137
|
*/
|
|
131
138
|
Value?: string | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* The summary of a project profile.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html}
|
|
5
5
|
*/
|
|
6
6
|
export type DataZoneProjectProfile = ResourceDefinitionWithAttributes<"AWS::DataZone::ProjectProfile", DataZoneProjectProfileProps, DataZoneProjectProfileAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* The summary of a project profile.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html}
|
|
10
10
|
*/
|
|
11
11
|
export type DataZoneProjectProfileProps = {
|
|
@@ -16,11 +16,13 @@ export type DataZoneProjectProfileProps = {
|
|
|
16
16
|
*/
|
|
17
17
|
Description?: string | undefined;
|
|
18
18
|
/**
|
|
19
|
+
* A domain ID of the project profile.
|
|
19
20
|
* @pattern ^dzd[_][a-zA-Z0-9_-]{1,36}$
|
|
20
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-domainidentifier}
|
|
21
22
|
*/
|
|
22
23
|
DomainIdentifier?: string | undefined;
|
|
23
24
|
/**
|
|
25
|
+
* A domain unit ID of the project profile.
|
|
24
26
|
* @minLength 1
|
|
25
27
|
* @maxLength 256
|
|
26
28
|
* @pattern ^[a-z0-9_\-]+$
|
|
@@ -28,6 +30,7 @@ export type DataZoneProjectProfileProps = {
|
|
|
28
30
|
*/
|
|
29
31
|
DomainUnitIdentifier?: string | undefined;
|
|
30
32
|
/**
|
|
33
|
+
* Environment configurations of a project profile.
|
|
31
34
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-environmentconfigurations}
|
|
32
35
|
*/
|
|
33
36
|
EnvironmentConfigurations?: EnvironmentConfiguration[] | undefined;
|
|
@@ -81,6 +84,7 @@ export type DataZoneProjectProfileAttribs = {
|
|
|
81
84
|
*/
|
|
82
85
|
Id: string;
|
|
83
86
|
/**
|
|
87
|
+
* Project profile ID.
|
|
84
88
|
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
85
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-identifier}
|
|
86
90
|
*/
|
|
@@ -93,10 +97,12 @@ export type DataZoneProjectProfileAttribs = {
|
|
|
93
97
|
LastUpdatedAt: string;
|
|
94
98
|
};
|
|
95
99
|
/**
|
|
100
|
+
* The AWS account of the environment.
|
|
96
101
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html}
|
|
97
102
|
*/
|
|
98
103
|
export type AwsAccount = {
|
|
99
104
|
/**
|
|
105
|
+
* The account ID of a project.
|
|
100
106
|
* @pattern ^\d{12}$
|
|
101
107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-awsaccount.html#cfn-datazone-projectprofile-awsaccount-awsaccountid}
|
|
102
108
|
*/
|
|
@@ -107,42 +113,51 @@ export type AwsAccount = {
|
|
|
107
113
|
*/
|
|
108
114
|
export type DeploymentMode = "ON_CREATE" | "ON_DEMAND";
|
|
109
115
|
/**
|
|
116
|
+
* The configuration of an environment.
|
|
110
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html}
|
|
111
118
|
*/
|
|
112
119
|
export type EnvironmentConfiguration = {
|
|
113
120
|
/**
|
|
121
|
+
* The AWS account of the environment.
|
|
114
122
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-awsaccount}
|
|
115
123
|
*/
|
|
116
124
|
AwsAccount?: AwsAccount | undefined;
|
|
117
125
|
/**
|
|
126
|
+
* The AWS Region of the environment.
|
|
118
127
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-awsregion}
|
|
119
128
|
*/
|
|
120
129
|
AwsRegion: Region;
|
|
121
130
|
/**
|
|
131
|
+
* The configuration parameters of the environment.
|
|
122
132
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-configurationparameters}
|
|
123
133
|
*/
|
|
124
134
|
ConfigurationParameters?: EnvironmentConfigurationParametersDetails | undefined;
|
|
125
135
|
/**
|
|
136
|
+
* The deployment mode of the environment.
|
|
126
137
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-deploymentmode}
|
|
127
138
|
*/
|
|
128
139
|
DeploymentMode?: DeploymentMode | undefined;
|
|
129
140
|
/**
|
|
141
|
+
* The deployment order of the environment.
|
|
130
142
|
* @min 0
|
|
131
143
|
* @max 16
|
|
132
144
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-deploymentorder}
|
|
133
145
|
*/
|
|
134
146
|
DeploymentOrder?: number | undefined;
|
|
135
147
|
/**
|
|
148
|
+
* The environment description.
|
|
136
149
|
* @maxLength 2048
|
|
137
150
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-description}
|
|
138
151
|
*/
|
|
139
152
|
Description?: string | undefined;
|
|
140
153
|
/**
|
|
154
|
+
* The environment blueprint ID.
|
|
141
155
|
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
142
156
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfiguration.html#cfn-datazone-projectprofile-environmentconfiguration-environmentblueprintid}
|
|
143
157
|
*/
|
|
144
158
|
EnvironmentBlueprintId: string;
|
|
145
159
|
/**
|
|
160
|
+
* The environment name.
|
|
146
161
|
* @minLength 1
|
|
147
162
|
* @maxLength 64
|
|
148
163
|
* @pattern ^[\w -]+$
|
|
@@ -151,32 +166,39 @@ export type EnvironmentConfiguration = {
|
|
|
151
166
|
Name: string;
|
|
152
167
|
};
|
|
153
168
|
/**
|
|
169
|
+
* The environment configuration parameter.
|
|
154
170
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html}
|
|
155
171
|
*/
|
|
156
172
|
export type EnvironmentConfigurationParameter = {
|
|
157
173
|
/**
|
|
174
|
+
* Specifies whether the environment parameter is editable.
|
|
158
175
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-iseditable}
|
|
159
176
|
*/
|
|
160
177
|
IsEditable?: boolean | undefined;
|
|
161
178
|
/**
|
|
179
|
+
* The name of the environment configuration parameter.
|
|
162
180
|
* @pattern ^[a-zA-Z_][a-zA-Z0-9_]*$
|
|
163
181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-name}
|
|
164
182
|
*/
|
|
165
183
|
Name?: string | undefined;
|
|
166
184
|
/**
|
|
185
|
+
* The value of the environment configuration parameter.
|
|
167
186
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparameter.html#cfn-datazone-projectprofile-environmentconfigurationparameter-value}
|
|
168
187
|
*/
|
|
169
188
|
Value?: string | undefined;
|
|
170
189
|
};
|
|
171
190
|
/**
|
|
191
|
+
* The details of the environment configuration parameter.
|
|
172
192
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html}
|
|
173
193
|
*/
|
|
174
194
|
export type EnvironmentConfigurationParametersDetails = {
|
|
175
195
|
/**
|
|
196
|
+
* The parameter overrides.
|
|
176
197
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-parameteroverrides}
|
|
177
198
|
*/
|
|
178
199
|
ParameterOverrides?: EnvironmentConfigurationParameter[] | undefined;
|
|
179
200
|
/**
|
|
201
|
+
* Ssm path environment configuration parameters.
|
|
180
202
|
* @minLength 1
|
|
181
203
|
* @maxLength 2048
|
|
182
204
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-ssmpath}
|
|
@@ -184,10 +206,12 @@ export type EnvironmentConfigurationParametersDetails = {
|
|
|
184
206
|
SsmPath?: string | undefined;
|
|
185
207
|
};
|
|
186
208
|
/**
|
|
209
|
+
* The AWS Region.
|
|
187
210
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-region.html}
|
|
188
211
|
*/
|
|
189
212
|
export type Region = {
|
|
190
213
|
/**
|
|
214
|
+
* The AWS Region name.
|
|
191
215
|
* @minLength 4
|
|
192
216
|
* @maxLength 16
|
|
193
217
|
* @pattern ^[a-z]{2}-?(iso|gov)?-{1}[a-z]*-{1}[0-9]$
|
|
@@ -258,10 +258,6 @@ export type EbsBlockDevice = {
|
|
|
258
258
|
*
|
|
259
259
|
* Encrypted volumes can only be attached to instances that support Amazon EBS encryption. For more information, see [Supported instance types](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances) .
|
|
260
260
|
*
|
|
261
|
-
* This parameter is not returned by `DescribeImageAttribute` .
|
|
262
|
-
*
|
|
263
|
-
* For `CreateImage` and `RegisterImage` , whether you can include this parameter, and the allowed values differ depending on the type of block device mapping you are creating.
|
|
264
|
-
*
|
|
265
261
|
* - If you are creating a block device mapping for a *new (empty) volume* , you can include this parameter, and specify either `true` for an encrypted volume, or `false` for an unencrypted volume. If you omit this parameter, it defaults to `false` (unencrypted).
|
|
266
262
|
* - If you are creating a block device mapping from an *existing encrypted or unencrypted snapshot* , you must omit this parameter. If you include this parameter, the request will fail, regardless of the value that you specify.
|
|
267
263
|
* - If you are creating a block device mapping from an *existing unencrypted volume* , you can include this parameter, but you must specify `false` . If you specify `true` , the request will fail. In this case, we recommend that you omit the parameter.
|
|
@@ -29,7 +29,12 @@ export type EC2IPAMProps = {
|
|
|
29
29
|
*/
|
|
30
30
|
EnablePrivateGua?: boolean | undefined;
|
|
31
31
|
/**
|
|
32
|
-
* A metered account is an account that is charged for active IP addresses managed in IPAM
|
|
32
|
+
* A metered account is an AWS account that is charged for active IP addresses managed in IPAM. For more information, see [Enable cost distribution](https://docs.aws.amazon.com/vpc/latest/ipam/ipam-enable-cost-distro.html) in the *Amazon VPC IPAM User Guide* .
|
|
33
|
+
*
|
|
34
|
+
* Possible values:
|
|
35
|
+
*
|
|
36
|
+
* - `ipam-owner` (default): The AWS account which owns the IPAM is charged for all active IP addresses managed in IPAM.
|
|
37
|
+
* - `resource-owner` : The AWS account that owns the IP address is charged for the active IP address.
|
|
33
38
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html#cfn-ec2-ipam-meteredaccount}
|
|
34
39
|
*/
|
|
35
40
|
MeteredAccount?: "ipam-owner" | "resource-owner" | undefined;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::EC2::TransitGatewayConnectPeer
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html}
|
|
5
|
+
*/
|
|
6
|
+
export type EC2TransitGatewayConnectPeer = ResourceDefinitionWithAttributes<"AWS::EC2::TransitGatewayConnectPeer", EC2TransitGatewayConnectPeerProps, EC2TransitGatewayConnectPeerAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::EC2::TransitGatewayConnectPeer
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html}
|
|
10
|
+
*/
|
|
11
|
+
export type EC2TransitGatewayConnectPeerProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The Connect peer details.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#cfn-ec2-transitgatewayconnectpeer-connectpeerconfiguration}
|
|
15
|
+
*/
|
|
16
|
+
ConnectPeerConfiguration: TransitGatewayConnectPeerConfiguration;
|
|
17
|
+
/**
|
|
18
|
+
* The tags for the Connect Peer.
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#cfn-ec2-transitgatewayconnectpeer-tags}
|
|
20
|
+
*/
|
|
21
|
+
Tags?: Tag[] | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the Connect attachment.
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#cfn-ec2-transitgatewayconnectpeer-transitgatewayattachmentid}
|
|
25
|
+
*/
|
|
26
|
+
TransitGatewayAttachmentId: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#aws-resource-ec2-transitgatewayconnectpeer-return-values}
|
|
30
|
+
*/
|
|
31
|
+
export type EC2TransitGatewayConnectPeerAttribs = {
|
|
32
|
+
/**
|
|
33
|
+
* The tunnel protocol.
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration.html#cfn-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration-protocol}
|
|
35
|
+
*/
|
|
36
|
+
"ConnectPeerConfiguration.Protocol": string;
|
|
37
|
+
/**
|
|
38
|
+
* The creation time.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#cfn-ec2-transitgatewayconnectpeer-creationtime}
|
|
40
|
+
*/
|
|
41
|
+
CreationTime: string;
|
|
42
|
+
/**
|
|
43
|
+
* The state of the Connect peer.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#cfn-ec2-transitgatewayconnectpeer-state}
|
|
45
|
+
*/
|
|
46
|
+
State: string;
|
|
47
|
+
/**
|
|
48
|
+
* The ID of the Connect peer.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#cfn-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerid}
|
|
50
|
+
*/
|
|
51
|
+
TransitGatewayConnectPeerId: string;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration.html}
|
|
55
|
+
*/
|
|
56
|
+
export type TransitGatewayConnectPeerConfiguration = {
|
|
57
|
+
/**
|
|
58
|
+
* The range of interior BGP peer IP addresses.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration.html#cfn-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration-insidecidrblocks}
|
|
60
|
+
*/
|
|
61
|
+
InsideCidrBlocks: string[];
|
|
62
|
+
/**
|
|
63
|
+
* The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration.html#cfn-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration-peeraddress}
|
|
65
|
+
*/
|
|
66
|
+
PeerAddress: string;
|
|
67
|
+
/**
|
|
68
|
+
* The Connect peer IP address on the transit gateway side of the tunnel.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration.html#cfn-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration-transitgatewayaddress}
|
|
70
|
+
*/
|
|
71
|
+
TransitGatewayAddress?: string | undefined;
|
|
72
|
+
};
|
|
73
|
+
//# sourceMappingURL=aws-ec2-transitgatewayconnectpeer.d.ts.map
|
|
@@ -28,7 +28,11 @@ export type ECRRepositoryProps = {
|
|
|
28
28
|
* The tag mutability setting for the repository. If this parameter is omitted, the default setting of `MUTABLE` will be used which will allow image tags to be overwritten. If `IMMUTABLE` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
|
|
29
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-imagetagmutability}
|
|
30
30
|
*/
|
|
31
|
-
ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | undefined;
|
|
31
|
+
ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "MUTABLE_WITH_EXCLUSION" | "IMMUTABLE_WITH_EXCLUSION" | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-imagetagmutabilityexclusionfilters}
|
|
34
|
+
*/
|
|
35
|
+
ImageTagMutabilityExclusionFilters?: ImageTagMutabilityExclusionFilter[] | undefined;
|
|
32
36
|
/**
|
|
33
37
|
* Creates or updates a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html) .
|
|
34
38
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html#cfn-ecr-repository-lifecyclepolicy}
|
|
@@ -116,6 +120,26 @@ export type ImageScanningConfiguration = {
|
|
|
116
120
|
*/
|
|
117
121
|
ScanOnPush?: boolean | undefined;
|
|
118
122
|
};
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html}
|
|
125
|
+
*/
|
|
126
|
+
export type ImageTagMutabilityExclusionFilter = {
|
|
127
|
+
/**
|
|
128
|
+
* Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html#cfn-ecr-repository-imagetagmutabilityexclusionfilter-imagetagmutabilityexclusionfiltertype}
|
|
130
|
+
*/
|
|
131
|
+
ImageTagMutabilityExclusionFilterType: ImageTagMutabilityExclusionFilterType;
|
|
132
|
+
/**
|
|
133
|
+
* The value to use when filtering image tags.
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html#cfn-ecr-repository-imagetagmutabilityexclusionfilter-imagetagmutabilityexclusionfiltervalue}
|
|
135
|
+
*/
|
|
136
|
+
ImageTagMutabilityExclusionFilterValue: string;
|
|
137
|
+
};
|
|
138
|
+
/**
|
|
139
|
+
* Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
|
|
140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfiltertype.html}
|
|
141
|
+
*/
|
|
142
|
+
export type ImageTagMutabilityExclusionFilterType = "WILDCARD";
|
|
119
143
|
/**
|
|
120
144
|
* The `LifecyclePolicy` property type specifies a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html) in the *Amazon ECR User Guide* .
|
|
121
145
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-lifecyclepolicy.html}
|