@propulsionworks/cloudformation 0.1.28 → 0.1.29
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-amazonmq-broker.d.ts +15 -3
- package/out/exports/resources.generated/aws-applicationsignals-discovery.d.ts +8 -0
- package/out/exports/resources.generated/aws-applicationsignals-groupingconfiguration.d.ts +48 -0
- package/out/exports/resources.generated/aws-arcregionswitch-plan.d.ts +4 -0
- package/out/exports/resources.generated/aws-bedrock-dataautomationproject.d.ts +54 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-browsercustom.d.ts +57 -19
- package/out/exports/resources.generated/aws-bedrockagentcore-codeinterpretercustom.d.ts +50 -15
- package/out/exports/resources.generated/aws-bedrockagentcore-gateway.d.ts +170 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-gatewaytarget.d.ts +260 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +63 -25
- package/out/exports/resources.generated/aws-bedrockagentcore-runtimeendpoint.d.ts +28 -16
- package/out/exports/resources.generated/aws-cognito-userpooluser.d.ts +3 -3
- package/out/exports/resources.generated/aws-connect-routingprofile.d.ts +3 -3
- package/out/exports/resources.generated/aws-connect-user.d.ts +1 -1
- package/out/exports/resources.generated/aws-cur-reportdefinition.d.ts +1 -0
- package/out/exports/resources.generated/aws-datasync-locationsmb.d.ts +16 -8
- package/out/exports/resources.generated/aws-datazone-formtype.d.ts +14 -14
- package/out/exports/resources.generated/aws-datazone-owner.d.ts +2 -0
- package/out/exports/resources.generated/aws-dms-instanceprofile.d.ts +1 -3
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +3 -2
- package/out/exports/resources.generated/aws-ec2-launchtemplate.d.ts +5 -4
- package/out/exports/resources.generated/aws-ec2-localgatewayvirtualinterface.d.ts +9 -7
- package/out/exports/resources.generated/aws-ec2-localgatewayvirtualinterfacegroup.d.ts +11 -9
- package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +3 -2
- package/out/exports/resources.generated/aws-ec2-volume.d.ts +3 -2
- package/out/exports/resources.generated/aws-ec2-vpcendpoint.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecs-capacityprovider.d.ts +375 -6
- package/out/exports/resources.generated/aws-fsx-filesystem.d.ts +2 -2
- package/out/exports/resources.generated/aws-imagebuilder-image.d.ts +26 -0
- package/out/exports/resources.generated/aws-imagebuilder-imagepipeline.d.ts +40 -2
- package/out/exports/resources.generated/aws-imagebuilder-imagerecipe.d.ts +5 -0
- package/out/exports/resources.generated/aws-lightsail-disksnapshot.d.ts +86 -0
- package/out/exports/resources.generated/aws-lookoutmetrics-alert.d.ts +4 -0
- package/out/exports/resources.generated/aws-lookoutmetrics-anomalydetector.d.ts +4 -0
- package/out/exports/resources.generated/aws-medialive-channel.d.ts +24 -0
- package/out/exports/resources.generated/aws-msk-clusterpolicy.d.ts +1 -1
- package/out/exports/resources.generated/aws-neptune-eventsubscription.d.ts +15 -10
- package/out/exports/resources.generated/aws-networkfirewall-rulegroup.d.ts +3 -1
- package/out/exports/resources.generated/aws-observabilityadmin-organizationcentralizationrule.d.ts +146 -0
- package/out/exports/resources.generated/aws-pcs-computenodegroup.d.ts +1 -1
- package/out/exports/resources.generated/aws-pcs-queue.d.ts +26 -0
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +2 -0
- package/out/exports/resources.generated/aws-rds-dbcluster.d.ts +1 -1
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +1 -1
- package/out/exports/resources.generated/aws-rds-dbproxy.d.ts +12 -1
- package/out/exports/resources.generated/aws-rds-dbproxyendpoint.d.ts +6 -0
- package/out/exports/resources.generated/aws-route53-recordset.d.ts +5 -1
- package/out/exports/resources.generated/aws-servicecatalog-portfolioprincipalassociation.d.ts +2 -2
- package/out/exports/resources.generated/aws-servicecatalog-portfolioshare.d.ts +3 -11
- package/package.json +1 -1
|
@@ -1,36 +1,48 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* > Amazon Bedrock AgentCore is in preview release and is subject to change.
|
|
4
|
+
*
|
|
5
|
+
* AgentCore Runtime is a secure, serverless runtime purpose-built for deploying and scaling dynamic AI agents and tools using any open-source framework including LangGraph, CrewAI, and Strands Agents, any protocol, and any model.
|
|
6
|
+
*
|
|
7
|
+
* For more information about using agent runtime endpoints in Amazon Bedrock AgentCore, see [AgentCore Runtime versioning and endpoints](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/agent-runtime-versioning.html) .
|
|
8
|
+
*
|
|
9
|
+
* See the *Properties* section below for descriptions of both the required and optional properties.
|
|
4
10
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html}
|
|
5
11
|
*/
|
|
6
12
|
export type BedrockAgentCoreRuntimeEndpoint = ResourceDefinitionWithAttributes<"AWS::BedrockAgentCore::RuntimeEndpoint", BedrockAgentCoreRuntimeEndpointProps, BedrockAgentCoreRuntimeEndpointAttribs>;
|
|
7
13
|
/**
|
|
8
|
-
*
|
|
14
|
+
* > Amazon Bedrock AgentCore is in preview release and is subject to change.
|
|
15
|
+
*
|
|
16
|
+
* AgentCore Runtime is a secure, serverless runtime purpose-built for deploying and scaling dynamic AI agents and tools using any open-source framework including LangGraph, CrewAI, and Strands Agents, any protocol, and any model.
|
|
17
|
+
*
|
|
18
|
+
* For more information about using agent runtime endpoints in Amazon Bedrock AgentCore, see [AgentCore Runtime versioning and endpoints](https://docs.aws.amazon.com/bedrock-agentcore/latest/devguide/agent-runtime-versioning.html) .
|
|
19
|
+
*
|
|
20
|
+
* See the *Properties* section below for descriptions of both the required and optional properties.
|
|
9
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html}
|
|
10
22
|
*/
|
|
11
23
|
export type BedrockAgentCoreRuntimeEndpointProps = {
|
|
12
24
|
/**
|
|
13
|
-
* The
|
|
25
|
+
* The agent runtime ID.
|
|
14
26
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimeid}
|
|
15
27
|
*/
|
|
16
28
|
AgentRuntimeId: string;
|
|
17
29
|
/**
|
|
18
|
-
* The version of the
|
|
30
|
+
* The version of the agent.
|
|
19
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimeversion}
|
|
20
32
|
*/
|
|
21
33
|
AgentRuntimeVersion?: string | undefined;
|
|
22
34
|
/**
|
|
23
|
-
*
|
|
35
|
+
* Contains information about an agent runtime endpoint. An agent runtime is the execution environment for a Amazon Bedrock Agent.
|
|
24
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-description}
|
|
25
37
|
*/
|
|
26
38
|
Description?: string | undefined;
|
|
27
39
|
/**
|
|
28
|
-
* The name of the
|
|
40
|
+
* The name of the AgentCore Runtime endpoint.
|
|
29
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-name}
|
|
30
42
|
*/
|
|
31
43
|
Name: string;
|
|
32
44
|
/**
|
|
33
|
-
*
|
|
45
|
+
* The tags for the AgentCore Runtime endpoint.
|
|
34
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-tags}
|
|
35
47
|
*/
|
|
36
48
|
Tags?: Record<string, string> | undefined;
|
|
@@ -40,47 +52,47 @@ export type BedrockAgentCoreRuntimeEndpointProps = {
|
|
|
40
52
|
*/
|
|
41
53
|
export type BedrockAgentCoreRuntimeEndpointAttribs = {
|
|
42
54
|
/**
|
|
43
|
-
* The ARN of the
|
|
55
|
+
* The Amazon Resource Name (ARN) of the runtime agent.
|
|
44
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimearn}
|
|
45
57
|
*/
|
|
46
58
|
AgentRuntimeArn: string;
|
|
47
59
|
/**
|
|
48
|
-
* The Amazon Resource Name (ARN)
|
|
60
|
+
* The endpoint Amazon Resource Name (ARN).
|
|
49
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-agentruntimeendpointarn}
|
|
50
62
|
*/
|
|
51
63
|
AgentRuntimeEndpointArn: string;
|
|
52
64
|
/**
|
|
53
|
-
* The
|
|
65
|
+
* The time at which the endpoint was created.
|
|
54
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-createdat}
|
|
55
67
|
*/
|
|
56
68
|
CreatedAt: string;
|
|
57
69
|
/**
|
|
58
|
-
* The reason for failure if the
|
|
70
|
+
* The reason for failure if the memory is in a failed state.
|
|
59
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-failurereason}
|
|
60
72
|
*/
|
|
61
73
|
FailureReason: string;
|
|
62
74
|
/**
|
|
63
|
-
* The
|
|
75
|
+
* The ID of the runtime endpoint.
|
|
64
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-id}
|
|
65
77
|
*/
|
|
66
78
|
Id: string;
|
|
67
79
|
/**
|
|
68
|
-
* The
|
|
80
|
+
* The time at which the endpoint was last updated.
|
|
69
81
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-lastupdatedat}
|
|
70
82
|
*/
|
|
71
83
|
LastUpdatedAt: string;
|
|
72
84
|
/**
|
|
73
|
-
* The
|
|
85
|
+
* The live version for the runtime endpoint.
|
|
74
86
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-liveversion}
|
|
75
87
|
*/
|
|
76
88
|
LiveVersion: string;
|
|
77
89
|
/**
|
|
78
|
-
* The status of the
|
|
90
|
+
* The status of the runtime endpoint.
|
|
79
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-status}
|
|
80
92
|
*/
|
|
81
93
|
Status: AgentRuntimeEndpointStatus;
|
|
82
94
|
/**
|
|
83
|
-
* The target version
|
|
95
|
+
* The target version.
|
|
84
96
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtimeendpoint.html#cfn-bedrockagentcore-runtimeendpoint-targetversion}
|
|
85
97
|
*/
|
|
86
98
|
TargetVersion: string;
|
|
@@ -10,11 +10,11 @@ export type CognitoUserPoolUser = ResourceDefinition<"AWS::Cognito::UserPoolUser
|
|
|
10
10
|
*/
|
|
11
11
|
export type CognitoUserPoolUserProps = {
|
|
12
12
|
/**
|
|
13
|
-
* A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers.
|
|
13
|
+
* A map of custom key-value pairs that you can provide as input for any custom workflows that this action triggers. You create custom workflows by assigning AWS Lambda functions to user pool triggers.
|
|
14
14
|
*
|
|
15
|
-
*
|
|
15
|
+
* When Amazon Cognito invokes any of these functions, it passes a JSON payload, which the function receives as input. This payload contains a `clientMetadata` attribute that provides the data that you assigned to the ClientMetadata parameter in your request. In your function code, you can process the `clientMetadata` value to enhance your workflow for your specific needs.
|
|
16
16
|
*
|
|
17
|
-
*
|
|
17
|
+
* To review the Lambda trigger types that Amazon Cognito invokes at runtime with API requests, see [Connecting API actions to Lambda triggers](https://docs.aws.amazon.com/cognito/latest/developerguide/cognito-user-pools-working-with-lambda-triggers.html#lambda-triggers-by-event) in the *Amazon Cognito Developer Guide* .
|
|
18
18
|
*
|
|
19
19
|
* > When you use the `ClientMetadata` parameter, note that Amazon Cognito won't do the following:
|
|
20
20
|
* >
|
|
@@ -34,7 +34,7 @@ export type ConnectRoutingProfileProps = {
|
|
|
34
34
|
*/
|
|
35
35
|
InstanceArn: string;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Contains information about the queue and channel for manual assignment behaviour can be enabled.
|
|
38
38
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-routingprofile.html#cfn-connect-routingprofile-manualassignmentqueueconfigs}
|
|
39
39
|
*/
|
|
40
40
|
ManualAssignmentQueueConfigs?: RoutingProfileManualAssignmentQueueConfig[] | undefined;
|
|
@@ -121,12 +121,12 @@ export type MediaConcurrency = {
|
|
|
121
121
|
CrossChannelBehavior?: CrossChannelBehavior | undefined;
|
|
122
122
|
};
|
|
123
123
|
/**
|
|
124
|
-
* Contains information about the manual assignment
|
|
124
|
+
* Contains information about the queue and channel for manual assignment behaviour can be enabled.
|
|
125
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-routingprofilemanualassignmentqueueconfig.html}
|
|
126
126
|
*/
|
|
127
127
|
export type RoutingProfileManualAssignmentQueueConfig = {
|
|
128
128
|
/**
|
|
129
|
-
* Contains
|
|
129
|
+
* Contains information about a queue resource.
|
|
130
130
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-routingprofile-routingprofilemanualassignmentqueueconfig.html#cfn-connect-routingprofile-routingprofilemanualassignmentqueueconfig-queuereference}
|
|
131
131
|
*/
|
|
132
132
|
QueueReference: RoutingProfileQueueReference;
|
|
@@ -150,7 +150,7 @@ export type UserPhoneConfig = {
|
|
|
150
150
|
*/
|
|
151
151
|
DeskPhoneNumber?: string | undefined;
|
|
152
152
|
/**
|
|
153
|
-
* The
|
|
153
|
+
* The persistent connection setting for the user.
|
|
154
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-user-userphoneconfig.html#cfn-connect-user-userphoneconfig-persistentconnection}
|
|
155
155
|
*/
|
|
156
156
|
PersistentConnection?: boolean | undefined;
|
|
@@ -80,6 +80,7 @@ export type CURReportDefinitionProps = {
|
|
|
80
80
|
*/
|
|
81
81
|
S3Region: string;
|
|
82
82
|
/**
|
|
83
|
+
* The tags to be assigned to the report definition resource.
|
|
83
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cur-reportdefinition.html#cfn-cur-reportdefinition-tags}
|
|
84
85
|
*/
|
|
85
86
|
Tags?: Tag[] | undefined;
|
|
@@ -20,12 +20,16 @@ export type DataSyncLocationSMBProps = {
|
|
|
20
20
|
*/
|
|
21
21
|
AuthenticationType?: "NTLM" | "KERBEROS" | undefined;
|
|
22
22
|
/**
|
|
23
|
-
* Specifies configuration information for a DataSync-managed secret, such as
|
|
23
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key .
|
|
24
|
+
*
|
|
25
|
+
* > You can use either `CmkSecretConfig` or `CustomSecretConfig` to provide credentials for a `CreateLocation` request. Do not provide both parameters for the same request.
|
|
24
26
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html#cfn-datasync-locationsmb-cmksecretconfig}
|
|
25
27
|
*/
|
|
26
28
|
CmkSecretConfig?: CmkSecretConfig | undefined;
|
|
27
29
|
/**
|
|
28
|
-
* Specifies configuration information for a customer-managed secret
|
|
30
|
+
* Specifies configuration information for a customer-managed Secrets Manager secret where a storage location authentication token or secret key is stored in plain text. This configuration includes the secret ARN, and the ARN for an IAM role that provides access to the secret.
|
|
31
|
+
*
|
|
32
|
+
* > You can use either `CmkSecretConfig` or `CustomSecretConfig` to provide credentials for a `CreateLocation` request. Do not provide both parameters for the same request.
|
|
29
33
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationsmb.html#cfn-datasync-locationsmb-customsecretconfig}
|
|
30
34
|
*/
|
|
31
35
|
CustomSecretConfig?: CustomSecretConfig | undefined;
|
|
@@ -115,7 +119,7 @@ export type DataSyncLocationSMBProps = {
|
|
|
115
119
|
*/
|
|
116
120
|
export type DataSyncLocationSMBAttribs = {
|
|
117
121
|
/**
|
|
118
|
-
* Specifies the ARN for
|
|
122
|
+
* Specifies the ARN for the DataSync-managed AWS Secrets Manager secret that that is used to access a specific storage location. This property is generated by DataSync and is read-only. DataSync encrypts this secret with the KMS key that you specify for `KmsKeyArn` .
|
|
119
123
|
* @maxLength 2048
|
|
120
124
|
* @pattern ^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$
|
|
121
125
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-cmksecretconfig.html#cfn-datasync-locationsmb-cmksecretconfig-secretarn}
|
|
@@ -137,12 +141,14 @@ export type DataSyncLocationSMBAttribs = {
|
|
|
137
141
|
LocationUri: string;
|
|
138
142
|
};
|
|
139
143
|
/**
|
|
140
|
-
* Specifies configuration information for a DataSync-managed secret, such as
|
|
144
|
+
* Specifies configuration information for a DataSync-managed secret, such as an authentication token or secret key that DataSync uses to access a specific storage location, with a customer-managed AWS KMS key .
|
|
145
|
+
*
|
|
146
|
+
* > You can use either `CmkSecretConfig` or `CustomSecretConfig` to provide credentials for a `CreateLocation` request. Do not provide both parameters for the same request.
|
|
141
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-cmksecretconfig.html}
|
|
142
148
|
*/
|
|
143
149
|
export type CmkSecretConfig = {
|
|
144
150
|
/**
|
|
145
|
-
* Specifies the ARN for the customer-managed AWS KMS key
|
|
151
|
+
* Specifies the ARN for the customer-managed AWS KMS key that DataSync uses to encrypt the DataSync-managed secret stored for `SecretArn` . DataSync provides this key to AWS Secrets Manager .
|
|
146
152
|
* @maxLength 2048
|
|
147
153
|
* @pattern ^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):kms:[a-z-0-9]+:[0-9]{12}:key/.*|)$
|
|
148
154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-cmksecretconfig.html#cfn-datasync-locationsmb-cmksecretconfig-kmskeyarn}
|
|
@@ -150,19 +156,21 @@ export type CmkSecretConfig = {
|
|
|
150
156
|
KmsKeyArn?: string | undefined;
|
|
151
157
|
};
|
|
152
158
|
/**
|
|
153
|
-
* Specifies configuration information for a customer-managed secret
|
|
159
|
+
* Specifies configuration information for a customer-managed Secrets Manager secret where a storage location authentication token or secret key is stored in plain text. This configuration includes the secret ARN, and the ARN for an IAM role that provides access to the secret.
|
|
160
|
+
*
|
|
161
|
+
* > You can use either `CmkSecretConfig` or `CustomSecretConfig` to provide credentials for a `CreateLocation` request. Do not provide both parameters for the same request.
|
|
154
162
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-customsecretconfig.html}
|
|
155
163
|
*/
|
|
156
164
|
export type CustomSecretConfig = {
|
|
157
165
|
/**
|
|
158
|
-
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for SecretArn.
|
|
166
|
+
* Specifies the ARN for the AWS Identity and Access Management role that DataSync uses to access the secret specified for `SecretArn` .
|
|
159
167
|
* @maxLength 2048
|
|
160
168
|
* @pattern ^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):iam::[0-9]{12}:role/.*|)$
|
|
161
169
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-customsecretconfig.html#cfn-datasync-locationsmb-customsecretconfig-secretaccessrolearn}
|
|
162
170
|
*/
|
|
163
171
|
SecretAccessRoleArn: string;
|
|
164
172
|
/**
|
|
165
|
-
* Specifies the ARN for
|
|
173
|
+
* Specifies the ARN for an AWS Secrets Manager secret.
|
|
166
174
|
* @maxLength 2048
|
|
167
175
|
* @pattern ^(arn:(aws|aws-cn|aws-us-gov|aws-iso|aws-iso-b):secretsmanager:[a-z-0-9]+:[0-9]{12}:secret:.*|)$
|
|
168
176
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationsmb-customsecretconfig.html#cfn-datasync-locationsmb-customsecretconfig-secretarn}
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* The details of the metadata form type.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html}
|
|
5
5
|
*/
|
|
6
6
|
export type DataZoneFormType = ResourceDefinitionWithAttributes<"AWS::DataZone::FormType", DataZoneFormTypeProps, DataZoneFormTypeAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* The details of the metadata form type.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html}
|
|
10
10
|
*/
|
|
11
11
|
export type DataZoneFormTypeProps = {
|
|
12
12
|
/**
|
|
13
|
-
* The description of
|
|
13
|
+
* The description of the metadata form type.
|
|
14
14
|
* @minLength 0
|
|
15
15
|
* @maxLength 2048
|
|
16
16
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-description}
|
|
17
17
|
*/
|
|
18
18
|
Description?: string | undefined;
|
|
19
19
|
/**
|
|
20
|
-
* The
|
|
20
|
+
* The identifier of the Amazon DataZone domain in which the form type exists.
|
|
21
21
|
* @pattern ^dzd[-_][a-zA-Z0-9_-]{1,36}$
|
|
22
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-domainidentifier}
|
|
23
23
|
*/
|
|
24
24
|
DomainIdentifier: string;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* The model of the form type.
|
|
27
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-model}
|
|
28
28
|
*/
|
|
29
29
|
Model: Model;
|
|
30
30
|
/**
|
|
31
|
-
* The name of
|
|
31
|
+
* The name of the form type.
|
|
32
32
|
* @minLength 1
|
|
33
33
|
* @maxLength 128
|
|
34
34
|
* @pattern ^(?![0-9_])\w+$|^_\w*[a-zA-Z0-9]\w*$
|
|
@@ -36,13 +36,13 @@ export type DataZoneFormTypeProps = {
|
|
|
36
36
|
*/
|
|
37
37
|
Name: string;
|
|
38
38
|
/**
|
|
39
|
-
* The
|
|
39
|
+
* The identifier of the project that owns the form type.
|
|
40
40
|
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
41
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-owningprojectidentifier}
|
|
42
42
|
*/
|
|
43
43
|
OwningProjectIdentifier: string;
|
|
44
44
|
/**
|
|
45
|
-
* The status of
|
|
45
|
+
* The status of the form type.
|
|
46
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-status}
|
|
47
47
|
*/
|
|
48
48
|
Status?: "ENABLED" | "DISABLED" | undefined;
|
|
@@ -52,25 +52,25 @@ export type DataZoneFormTypeProps = {
|
|
|
52
52
|
*/
|
|
53
53
|
export type DataZoneFormTypeAttribs = {
|
|
54
54
|
/**
|
|
55
|
-
* The timestamp of when
|
|
55
|
+
* The timestamp of when the metadata form type was created.
|
|
56
56
|
* @format date-time
|
|
57
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-createdat}
|
|
58
58
|
*/
|
|
59
59
|
CreatedAt: string;
|
|
60
60
|
/**
|
|
61
|
-
* The user who created
|
|
61
|
+
* The Amazon DataZone user who created teh metadata form type.
|
|
62
62
|
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
63
63
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-createdby}
|
|
64
64
|
*/
|
|
65
65
|
CreatedBy: string;
|
|
66
66
|
/**
|
|
67
|
-
* The
|
|
67
|
+
* The identifier of the Amazon DataZone domain in which the form type exists.
|
|
68
68
|
* @pattern ^dzd[-_][a-zA-Z0-9_-]{1,36}$
|
|
69
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-domainid}
|
|
70
70
|
*/
|
|
71
71
|
DomainId: string;
|
|
72
72
|
/**
|
|
73
|
-
* The ID of
|
|
73
|
+
* The ID of the metadata form type.
|
|
74
74
|
* @minLength 1
|
|
75
75
|
* @maxLength 385
|
|
76
76
|
* @pattern ^(?!\.)[\w\.]*\w$
|
|
@@ -78,13 +78,13 @@ export type DataZoneFormTypeAttribs = {
|
|
|
78
78
|
*/
|
|
79
79
|
FormTypeIdentifier: string;
|
|
80
80
|
/**
|
|
81
|
-
* The
|
|
81
|
+
* The identifier of the project that owns the form type.
|
|
82
82
|
* @pattern ^[a-zA-Z0-9_-]{1,36}$
|
|
83
83
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-owningprojectid}
|
|
84
84
|
*/
|
|
85
85
|
OwningProjectId: string;
|
|
86
86
|
/**
|
|
87
|
-
* The revision of
|
|
87
|
+
* The revision of the form type.
|
|
88
88
|
* @minLength 1
|
|
89
89
|
* @maxLength 64
|
|
90
90
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#cfn-datazone-formtype-revision}
|
|
@@ -36,10 +36,12 @@ export type DataZoneOwnerProps = {
|
|
|
36
36
|
*/
|
|
37
37
|
export type DataZoneOwnerAttribs = {
|
|
38
38
|
/**
|
|
39
|
+
* The ID of the entity to which you want to add an owner.
|
|
39
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-owneridentifier}
|
|
40
41
|
*/
|
|
41
42
|
OwnerIdentifier: string;
|
|
42
43
|
/**
|
|
44
|
+
* The owner that you want to add to the entity.
|
|
43
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-ownertype}
|
|
44
46
|
*/
|
|
45
47
|
OwnerType: "USER" | "GROUP";
|
|
@@ -40,9 +40,7 @@ export type DMSInstanceProfileProps = {
|
|
|
40
40
|
/**
|
|
41
41
|
* The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the connection parameters for the instance profile.
|
|
42
42
|
*
|
|
43
|
-
* If you don't specify a value for the `KmsKeyArn` parameter, then AWS DMS uses
|
|
44
|
-
*
|
|
45
|
-
* AWS KMS creates the default encryption key for your AWS account . Your AWS account has a different default encryption key for each AWS Region .
|
|
43
|
+
* If you don't specify a value for the `KmsKeyArn` parameter, then AWS DMS uses an AWS owned encryption key to encrypt your resources.
|
|
46
44
|
* @minLength 1
|
|
47
45
|
* @maxLength 255
|
|
48
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-instanceprofile.html#cfn-dms-instanceprofile-kmskeyarn}
|
|
@@ -270,7 +270,7 @@ export type EbsBlockDevice = {
|
|
|
270
270
|
*
|
|
271
271
|
* The following are the supported values for each volume type:
|
|
272
272
|
*
|
|
273
|
-
* - `gp3` : 3,000 -
|
|
273
|
+
* - `gp3` : 3,000 - 80,000 IOPS
|
|
274
274
|
* - `io1` : 100 - 64,000 IOPS
|
|
275
275
|
* - `io2` : 100 - 256,000 IOPS
|
|
276
276
|
*
|
|
@@ -297,7 +297,8 @@ export type EbsBlockDevice = {
|
|
|
297
297
|
*
|
|
298
298
|
* The following are the supported sizes for each volume type:
|
|
299
299
|
*
|
|
300
|
-
* - `gp2`
|
|
300
|
+
* - `gp2` : 1 - 16,384 GiB
|
|
301
|
+
* - `gp3` : 1 - 65,536 GiB
|
|
301
302
|
* - `io1` : 4 - 16,384 GiB
|
|
302
303
|
* - `io2` : 4 - 65,536 GiB
|
|
303
304
|
* - `st1` and `sc1` : 125 - 16,384 GiB
|
|
@@ -293,7 +293,7 @@ export type Ebs = {
|
|
|
293
293
|
*
|
|
294
294
|
* The following are the supported values for each volume type:
|
|
295
295
|
*
|
|
296
|
-
* - `gp3` : 3,000 -
|
|
296
|
+
* - `gp3` : 3,000 - 80,000 IOPS
|
|
297
297
|
* - `io1` : 100 - 64,000 IOPS
|
|
298
298
|
* - `io2` : 100 - 256,000 IOPS
|
|
299
299
|
*
|
|
@@ -314,9 +314,9 @@ export type Ebs = {
|
|
|
314
314
|
*/
|
|
315
315
|
SnapshotId?: string | undefined;
|
|
316
316
|
/**
|
|
317
|
-
* The throughput to provision for a `gp3` volume, with a maximum of
|
|
317
|
+
* The throughput to provision for a `gp3` volume, with a maximum of 2,000 MiB/s.
|
|
318
318
|
*
|
|
319
|
-
* Valid Range: Minimum value of 125. Maximum value of
|
|
319
|
+
* Valid Range: Minimum value of 125. Maximum value of 2,000.
|
|
320
320
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-ebs.html#cfn-ec2-launchtemplate-ebs-throughput}
|
|
321
321
|
*/
|
|
322
322
|
Throughput?: number | undefined;
|
|
@@ -339,7 +339,8 @@ export type Ebs = {
|
|
|
339
339
|
/**
|
|
340
340
|
* The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. The following are the supported volumes sizes for each volume type:
|
|
341
341
|
*
|
|
342
|
-
* - `gp2`
|
|
342
|
+
* - `gp2` : 1 - 16,384 GiB
|
|
343
|
+
* - `gp3` : 1 - 65,536 GiB
|
|
343
344
|
* - `io1` : 4 - 16,384 GiB
|
|
344
345
|
* - `io2` : 4 - 65,536 GiB
|
|
345
346
|
* - `st1` and `sc1` : 125 - 16,384 GiB
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
+
* Describes a local gateway virtual interface.
|
|
3
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html}
|
|
4
5
|
*/
|
|
5
6
|
export type EC2LocalGatewayVirtualInterface = ResourceDefinitionWithAttributes<"AWS::EC2::LocalGatewayVirtualInterface", EC2LocalGatewayVirtualInterfaceProps, EC2LocalGatewayVirtualInterfaceAttribs>;
|
|
6
7
|
/**
|
|
8
|
+
* Describes a local gateway virtual interface.
|
|
7
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html}
|
|
8
10
|
*/
|
|
9
11
|
export type EC2LocalGatewayVirtualInterfaceProps = {
|
|
@@ -13,7 +15,7 @@ export type EC2LocalGatewayVirtualInterfaceProps = {
|
|
|
13
15
|
*/
|
|
14
16
|
LocalAddress: string;
|
|
15
17
|
/**
|
|
16
|
-
* The ID of the virtual interface group
|
|
18
|
+
* The ID of the local gateway virtual interface group.
|
|
17
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#cfn-ec2-localgatewayvirtualinterface-localgatewayvirtualinterfacegroupid}
|
|
18
20
|
*/
|
|
19
21
|
LocalGatewayVirtualInterfaceGroupId: string;
|
|
@@ -39,7 +41,7 @@ export type EC2LocalGatewayVirtualInterfaceProps = {
|
|
|
39
41
|
*/
|
|
40
42
|
PeerBgpAsnExtended?: number | undefined;
|
|
41
43
|
/**
|
|
42
|
-
*
|
|
44
|
+
* The tags assigned to the virtual interface.
|
|
43
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#cfn-ec2-localgatewayvirtualinterface-tags}
|
|
44
46
|
*/
|
|
45
47
|
Tags?: Tag[] | undefined;
|
|
@@ -54,27 +56,27 @@ export type EC2LocalGatewayVirtualInterfaceProps = {
|
|
|
54
56
|
*/
|
|
55
57
|
export type EC2LocalGatewayVirtualInterfaceAttribs = {
|
|
56
58
|
/**
|
|
57
|
-
* The current state of the local gateway virtual interface
|
|
59
|
+
* The current state of the local gateway virtual interface.
|
|
58
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#cfn-ec2-localgatewayvirtualinterface-configurationstate}
|
|
59
61
|
*/
|
|
60
62
|
ConfigurationState: string;
|
|
61
63
|
/**
|
|
62
|
-
* The Autonomous System Number(ASN)
|
|
64
|
+
* The Border Gateway Protocol (BGP) Autonomous System Number (ASN) of the local gateway.
|
|
63
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#cfn-ec2-localgatewayvirtualinterface-localbgpasn}
|
|
64
66
|
*/
|
|
65
67
|
LocalBgpAsn: number;
|
|
66
68
|
/**
|
|
67
|
-
* The ID of the local gateway
|
|
69
|
+
* The ID of the local gateway.
|
|
68
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#cfn-ec2-localgatewayvirtualinterface-localgatewayid}
|
|
69
71
|
*/
|
|
70
72
|
LocalGatewayId: string;
|
|
71
73
|
/**
|
|
72
|
-
* The ID of the virtual interface
|
|
74
|
+
* The ID of the virtual interface.
|
|
73
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#cfn-ec2-localgatewayvirtualinterface-localgatewayvirtualinterfaceid}
|
|
74
76
|
*/
|
|
75
77
|
LocalGatewayVirtualInterfaceId: string;
|
|
76
78
|
/**
|
|
77
|
-
* The ID of the
|
|
79
|
+
* The ID of the AWS account that owns the local gateway virtual interface.
|
|
78
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterface.html#cfn-ec2-localgatewayvirtualinterface-ownerid}
|
|
79
81
|
*/
|
|
80
82
|
OwnerId: string;
|
|
@@ -1,30 +1,32 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
+
* Describes a local gateway virtual interface group.
|
|
3
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html}
|
|
4
5
|
*/
|
|
5
6
|
export type EC2LocalGatewayVirtualInterfaceGroup = ResourceDefinitionWithAttributes<"AWS::EC2::LocalGatewayVirtualInterfaceGroup", EC2LocalGatewayVirtualInterfaceGroupProps, EC2LocalGatewayVirtualInterfaceGroupAttribs>;
|
|
6
7
|
/**
|
|
8
|
+
* Describes a local gateway virtual interface group.
|
|
7
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html}
|
|
8
10
|
*/
|
|
9
11
|
export type EC2LocalGatewayVirtualInterfaceGroupProps = {
|
|
10
12
|
/**
|
|
11
|
-
* The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP)
|
|
13
|
+
* The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP).
|
|
12
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localbgpasn}
|
|
13
15
|
*/
|
|
14
16
|
LocalBgpAsn?: number | undefined;
|
|
15
17
|
/**
|
|
16
|
-
* The extended 32-bit ASN for the local BGP configuration
|
|
18
|
+
* The extended 32-bit ASN for the local BGP configuration.
|
|
17
19
|
* @format int64
|
|
18
20
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localbgpasnextended}
|
|
19
21
|
*/
|
|
20
22
|
LocalBgpAsnExtended?: number | undefined;
|
|
21
23
|
/**
|
|
22
|
-
* The ID of the local gateway
|
|
24
|
+
* The ID of the local gateway.
|
|
23
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayid}
|
|
24
26
|
*/
|
|
25
27
|
LocalGatewayId: string;
|
|
26
28
|
/**
|
|
27
|
-
* The tags assigned to the virtual interface group
|
|
29
|
+
* The tags assigned to the virtual interface group.
|
|
28
30
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-tags}
|
|
29
31
|
*/
|
|
30
32
|
Tags?: Tag[] | undefined;
|
|
@@ -34,27 +36,27 @@ export type EC2LocalGatewayVirtualInterfaceGroupProps = {
|
|
|
34
36
|
*/
|
|
35
37
|
export type EC2LocalGatewayVirtualInterfaceGroupAttribs = {
|
|
36
38
|
/**
|
|
37
|
-
* The current state of the local gateway virtual interface group
|
|
39
|
+
* The current state of the local gateway virtual interface group.
|
|
38
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-configurationstate}
|
|
39
41
|
*/
|
|
40
42
|
ConfigurationState: string;
|
|
41
43
|
/**
|
|
42
|
-
* The Amazon Resource Number (ARN) of the local gateway virtual interface group
|
|
44
|
+
* The Amazon Resource Number (ARN) of the local gateway virtual interface group.
|
|
43
45
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayvirtualinterfacegrouparn}
|
|
44
46
|
*/
|
|
45
47
|
LocalGatewayVirtualInterfaceGroupArn: string;
|
|
46
48
|
/**
|
|
47
|
-
* The ID of the virtual interface group
|
|
49
|
+
* The ID of the virtual interface group.
|
|
48
50
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayvirtualinterfacegroupid}
|
|
49
51
|
*/
|
|
50
52
|
LocalGatewayVirtualInterfaceGroupId: string;
|
|
51
53
|
/**
|
|
52
|
-
* The IDs of the virtual interfaces
|
|
54
|
+
* The IDs of the virtual interfaces.
|
|
53
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-localgatewayvirtualinterfaceids}
|
|
54
56
|
*/
|
|
55
57
|
LocalGatewayVirtualInterfaceIds: string[];
|
|
56
58
|
/**
|
|
57
|
-
* The ID of the
|
|
59
|
+
* The ID of the AWS account that owns the local gateway virtual interface group.
|
|
58
60
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.html#cfn-ec2-localgatewayvirtualinterfacegroup-ownerid}
|
|
59
61
|
*/
|
|
60
62
|
OwnerId: string;
|
|
@@ -203,7 +203,7 @@ export type EbsBlockDevice = {
|
|
|
203
203
|
*
|
|
204
204
|
* The following are the supported values for each volume type:
|
|
205
205
|
*
|
|
206
|
-
* - `gp3` : 3,000 -
|
|
206
|
+
* - `gp3` : 3,000 - 80,000 IOPS
|
|
207
207
|
* - `io1` : 100 - 64,000 IOPS
|
|
208
208
|
* - `io2` : 100 - 256,000 IOPS
|
|
209
209
|
*
|
|
@@ -223,7 +223,8 @@ export type EbsBlockDevice = {
|
|
|
223
223
|
*
|
|
224
224
|
* The following are the supported sizes for each volume type:
|
|
225
225
|
*
|
|
226
|
-
* - `gp2`
|
|
226
|
+
* - `gp2` : 1 - 16,384 GiB
|
|
227
|
+
* - `gp3` : 1 - 65,536 GiB
|
|
227
228
|
* - `io1` : 4 - 16,384 GiB
|
|
228
229
|
* - `io2` : 4 - 65,536 GiB
|
|
229
230
|
* - `st1` and `sc1` : 125 - 16,384 GiB
|
|
@@ -67,7 +67,7 @@ export type EC2VolumeProps = {
|
|
|
67
67
|
*
|
|
68
68
|
* The following are the supported values for each volume type:
|
|
69
69
|
*
|
|
70
|
-
* - `gp3` : 3,000 -
|
|
70
|
+
* - `gp3` : 3,000 - 80,000 IOPS
|
|
71
71
|
* - `io1` : 100 - 64,000 IOPS
|
|
72
72
|
* - `io2` : 100 - 256,000 IOPS
|
|
73
73
|
*
|
|
@@ -108,7 +108,8 @@ export type EC2VolumeProps = {
|
|
|
108
108
|
*
|
|
109
109
|
* The following are the supported volumes sizes for each volume type:
|
|
110
110
|
*
|
|
111
|
-
* - `gp2`
|
|
111
|
+
* - `gp2` : 1 - 16,384 GiB
|
|
112
|
+
* - `gp3` : 1 - 65,536 GiB
|
|
112
113
|
* - `io1` : 4 - 16,384 GiB
|
|
113
114
|
* - `io2` : 4 - 65,536 GiB
|
|
114
115
|
* - `st1` and `sc1` : 125 - 16,384 GiB
|
|
@@ -36,7 +36,7 @@ export type EC2VPCEndpointProps = {
|
|
|
36
36
|
*
|
|
37
37
|
* For CloudFormation templates in YAML, you can provide the policy in JSON or YAML format. For example, if you have a JSON policy, you can convert it to YAML before including it in the YAML template, and AWS CloudFormation converts the policy to JSON format before calling the API actions for AWS PrivateLink . Alternatively, you can include the JSON directly in the YAML, as shown in the following `Properties` section:
|
|
38
38
|
*
|
|
39
|
-
* `Properties: VpcEndpointType: 'Interface' ServiceName: !Sub 'com.amazonaws.${AWS::Region}.logs' PolicyDocument: '{ "Version":"2012-10-17",
|
|
39
|
+
* `Properties: VpcEndpointType: 'Interface' ServiceName: !Sub 'com.amazonaws.${AWS::Region}.logs' PolicyDocument: '{ "Version":"2012-10-17", "Statement": [{ "Effect":"Allow", "Principal":"*", "Action":["logs:Describe*","logs:Get*","logs:List*","logs:FilterLogEvents"], "Resource":"*" }] }'`
|
|
40
40
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpoint.html#cfn-ec2-vpcendpoint-policydocument}
|
|
41
41
|
*/
|
|
42
42
|
PolicyDocument?: PolicyDocument | undefined;
|