@awboost/cfn-resource-types 0.1.73 → 0.1.75
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-Bedrock-Agent.d.ts +85 -0
- package/lib/AWS-Bedrock-GuardrailVersion.d.ts +52 -0
- package/lib/AWS-Bedrock-GuardrailVersion.js +12 -0
- package/lib/AWS-Budgets-BudgetsAction.d.ts +9 -0
- package/lib/AWS-EC2-LaunchTemplate.d.ts +1 -1
- package/lib/AWS-KMS-Alias.d.ts +18 -2
- package/lib/AWS-KMS-Alias.js +9 -1
- package/lib/AWS-MediaConnect-Flow.d.ts +215 -1
- package/lib/AWS-MediaConnect-FlowOutput.d.ts +73 -1
- package/lib/AWS-MediaConnect-FlowVpcInterface.d.ts +1 -1
- package/lib/AWS-QuickSight-DataSet.d.ts +208 -137
- package/lib/AWS-QuickSight-DataSource.d.ts +89 -71
- package/lib/AWS-QuickSight-VPCConnection.d.ts +44 -2
- package/package.json +1 -1
|
@@ -129,6 +129,7 @@ export type BedrockAgentAttributes = {
|
|
|
129
129
|
};
|
|
130
130
|
/**
|
|
131
131
|
* Type definition for `AWS::Bedrock::Agent.ActionGroupExecutor`.
|
|
132
|
+
* Type of Executors for an Action Group
|
|
132
133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-actiongroupexecutor.html}
|
|
133
134
|
*/
|
|
134
135
|
export type ActionGroupExecutor = {
|
|
@@ -138,6 +139,11 @@ export type ActionGroupExecutor = {
|
|
|
138
139
|
* @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_\.]+(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
|
|
139
140
|
*/
|
|
140
141
|
Lambda: string;
|
|
142
|
+
} | {
|
|
143
|
+
/**
|
|
144
|
+
* Custom control of action execution
|
|
145
|
+
*/
|
|
146
|
+
CustomControl: CustomControlMethod;
|
|
141
147
|
};
|
|
142
148
|
/**
|
|
143
149
|
* Type definition for `AWS::Bedrock::Agent.ActionGroupSignature`.
|
|
@@ -157,6 +163,9 @@ export type ActionGroupState = "ENABLED" | "DISABLED";
|
|
|
157
163
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-agentactiongroup.html}
|
|
158
164
|
*/
|
|
159
165
|
export type AgentActionGroup = {
|
|
166
|
+
/**
|
|
167
|
+
* Type of Executors for an Action Group
|
|
168
|
+
*/
|
|
160
169
|
ActionGroupExecutor?: ActionGroupExecutor;
|
|
161
170
|
/**
|
|
162
171
|
* Name of the action group
|
|
@@ -177,6 +186,10 @@ export type AgentActionGroup = {
|
|
|
177
186
|
* @maxLength `200`
|
|
178
187
|
*/
|
|
179
188
|
Description?: string;
|
|
189
|
+
/**
|
|
190
|
+
* Schema of Functions
|
|
191
|
+
*/
|
|
192
|
+
FunctionSchema?: FunctionSchema;
|
|
180
193
|
/**
|
|
181
194
|
* Action Group Signature for a BuiltIn Action
|
|
182
195
|
*/
|
|
@@ -236,6 +249,45 @@ export type APISchema = {
|
|
|
236
249
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-creationmode.html}
|
|
237
250
|
*/
|
|
238
251
|
export type CreationMode = "DEFAULT" | "OVERRIDDEN";
|
|
252
|
+
/**
|
|
253
|
+
* Type definition for `AWS::Bedrock::Agent.CustomControlMethod`.
|
|
254
|
+
* Custom control of action execution
|
|
255
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-customcontrolmethod.html}
|
|
256
|
+
*/
|
|
257
|
+
export type CustomControlMethod = "RETURN_CONTROL";
|
|
258
|
+
/**
|
|
259
|
+
* Type definition for `AWS::Bedrock::Agent.Function`.
|
|
260
|
+
* Function definition
|
|
261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-function.html}
|
|
262
|
+
*/
|
|
263
|
+
export type Function = {
|
|
264
|
+
/**
|
|
265
|
+
* Description of function
|
|
266
|
+
* @minLength `1`
|
|
267
|
+
* @maxLength `1200`
|
|
268
|
+
*/
|
|
269
|
+
Description?: string;
|
|
270
|
+
/**
|
|
271
|
+
* Name for a resource.
|
|
272
|
+
* @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
|
|
273
|
+
*/
|
|
274
|
+
Name: string;
|
|
275
|
+
/**
|
|
276
|
+
* A map of parameter name and detail
|
|
277
|
+
*/
|
|
278
|
+
Parameters?: ParameterMap;
|
|
279
|
+
};
|
|
280
|
+
/**
|
|
281
|
+
* Type definition for `AWS::Bedrock::Agent.FunctionSchema`.
|
|
282
|
+
* Schema of Functions
|
|
283
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-functionschema.html}
|
|
284
|
+
*/
|
|
285
|
+
export type FunctionSchema = {
|
|
286
|
+
/**
|
|
287
|
+
* List of Function definitions
|
|
288
|
+
*/
|
|
289
|
+
Functions: Function[];
|
|
290
|
+
};
|
|
239
291
|
/**
|
|
240
292
|
* Type definition for `AWS::Bedrock::Agent.InferenceConfiguration`.
|
|
241
293
|
* Configuration for inference in prompt configuration
|
|
@@ -279,6 +331,33 @@ export type InferenceConfiguration = {
|
|
|
279
331
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-knowledgebasestate.html}
|
|
280
332
|
*/
|
|
281
333
|
export type KnowledgeBaseState = "ENABLED" | "DISABLED";
|
|
334
|
+
/**
|
|
335
|
+
* Type definition for `AWS::Bedrock::Agent.ParameterDetail`.
|
|
336
|
+
* Parameter detail
|
|
337
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-parameterdetail.html}
|
|
338
|
+
*/
|
|
339
|
+
export type ParameterDetail = {
|
|
340
|
+
/**
|
|
341
|
+
* Description of function parameter.
|
|
342
|
+
* @minLength `1`
|
|
343
|
+
* @maxLength `500`
|
|
344
|
+
*/
|
|
345
|
+
Description?: string;
|
|
346
|
+
/**
|
|
347
|
+
* Information about if a parameter is required for function call. Default to false.
|
|
348
|
+
*/
|
|
349
|
+
Required?: boolean;
|
|
350
|
+
/**
|
|
351
|
+
* Parameter Type
|
|
352
|
+
*/
|
|
353
|
+
Type: Type;
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
* Type definition for `AWS::Bedrock::Agent.ParameterMap`.
|
|
357
|
+
* A map of parameter name and detail
|
|
358
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-parametermap.html}
|
|
359
|
+
*/
|
|
360
|
+
export type ParameterMap = Record<string, ParameterDetail>;
|
|
282
361
|
/**
|
|
283
362
|
* Type definition for `AWS::Bedrock::Agent.PromptConfiguration`.
|
|
284
363
|
* BasePromptConfiguration per Prompt Type.
|
|
@@ -369,6 +448,12 @@ export type S3Identifier = {
|
|
|
369
448
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-tagsmap.html}
|
|
370
449
|
*/
|
|
371
450
|
export type TagsMap = Record<string, string>;
|
|
451
|
+
/**
|
|
452
|
+
* Type definition for `AWS::Bedrock::Agent.Type`.
|
|
453
|
+
* Parameter Type
|
|
454
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-type.html}
|
|
455
|
+
*/
|
|
456
|
+
export type Type = "string" | "number" | "integer" | "boolean" | "array";
|
|
372
457
|
/**
|
|
373
458
|
* Definition of AWS::Bedrock::Agent Resource Type
|
|
374
459
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-agent.html}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Definition of AWS::Bedrock::GuardrailVersion Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrailversion.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BedrockGuardrailVersionProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Description of the Guardrail version
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `200`
|
|
12
|
+
*/
|
|
13
|
+
Description?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Identifier (GuardrailId or GuardrailArn) for the guardrail
|
|
16
|
+
* @maxLength `2048`
|
|
17
|
+
* @pattern `^(([a-z0-9]+)|(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+))$`
|
|
18
|
+
*/
|
|
19
|
+
GuardrailIdentifier: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::Bedrock::GuardrailVersion`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrailversion.html#aws-resource-bedrock-guardrailversion-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type BedrockGuardrailVersionAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* Arn representation for the guardrail
|
|
28
|
+
* @maxLength `2048`
|
|
29
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:guardrail/[a-z0-9]+$`
|
|
30
|
+
*/
|
|
31
|
+
GuardrailArn: string;
|
|
32
|
+
/**
|
|
33
|
+
* Unique id for the guardrail
|
|
34
|
+
* @maxLength `64`
|
|
35
|
+
* @pattern `^[a-z0-9]+$`
|
|
36
|
+
*/
|
|
37
|
+
GuardrailId: string;
|
|
38
|
+
/**
|
|
39
|
+
* Guardrail version
|
|
40
|
+
* @pattern `^[1-9][0-9]{0,7}$`
|
|
41
|
+
*/
|
|
42
|
+
Version: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Definition of AWS::Bedrock::GuardrailVersion Resource Type
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrailversion.html}
|
|
47
|
+
*/
|
|
48
|
+
export declare class BedrockGuardrailVersion extends $Resource<"AWS::Bedrock::GuardrailVersion", BedrockGuardrailVersionProperties, BedrockGuardrailVersionAttributes> {
|
|
49
|
+
static readonly Type = "AWS::Bedrock::GuardrailVersion";
|
|
50
|
+
constructor(logicalId: string, properties: BedrockGuardrailVersionProperties, options?: $ResourceOptions);
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=AWS-Bedrock-GuardrailVersion.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::Bedrock::GuardrailVersion Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-guardrailversion.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BedrockGuardrailVersion extends $Resource {
|
|
7
|
+
static Type = "AWS::Bedrock::GuardrailVersion";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BedrockGuardrailVersion.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Bedrock-GuardrailVersion.js.map
|
|
@@ -13,6 +13,7 @@ export type BudgetsBudgetsActionProperties = {
|
|
|
13
13
|
Definition: Definition;
|
|
14
14
|
ExecutionRoleArn: string;
|
|
15
15
|
NotificationType: "ACTUAL" | "FORECASTED";
|
|
16
|
+
ResourceTags?: ResourceTag[];
|
|
16
17
|
/**
|
|
17
18
|
* @minLength `1`
|
|
18
19
|
* @maxLength `11`
|
|
@@ -65,6 +66,14 @@ export type IamActionDefinition = {
|
|
|
65
66
|
*/
|
|
66
67
|
Users?: string[];
|
|
67
68
|
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::Budgets::BudgetsAction.ResourceTag`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budgetsaction-resourcetag.html}
|
|
72
|
+
*/
|
|
73
|
+
export type ResourceTag = {
|
|
74
|
+
Key: string;
|
|
75
|
+
Value: string;
|
|
76
|
+
};
|
|
68
77
|
/**
|
|
69
78
|
* Type definition for `AWS::Budgets::BudgetsAction.ScpActionDefinition`.
|
|
70
79
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budgetsaction-scpactiondefinition.html}
|
|
@@ -920,7 +920,7 @@ export type NetworkInterface = {
|
|
|
920
920
|
*/
|
|
921
921
|
Description?: string;
|
|
922
922
|
/**
|
|
923
|
-
* The device index for the network interface attachment. Each network interface requires a device index. If
|
|
923
|
+
* The device index for the network interface attachment. Each network interface requires a device index. If you create a launch template that includes secondary network interfaces but not a primary network interface, then you must add a primary network interface as a launch parameter when you launch an instance from the template.
|
|
924
924
|
*/
|
|
925
925
|
DeviceIndex?: number;
|
|
926
926
|
/**
|
package/lib/AWS-KMS-Alias.d.ts
CHANGED
|
@@ -3,7 +3,15 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
3
3
|
/**
|
|
4
4
|
* The ``AWS::KMS::Alias`` resource specifies a display name for a [KMS key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#kms_keys). You can use an alias to identify a KMS key in the KMS console, in the [DescribeKey](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html) operation, and in [cryptographic operations](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations), such as [Decrypt](https://docs.aws.amazon.com/kms/latest/APIReference/API_Decrypt.html) and [GenerateDataKey](https://docs.aws.amazon.com/kms/latest/APIReference/API_GenerateDataKey.html).
|
|
5
5
|
Adding, deleting, or updating an alias can allow or deny permission to the KMS key. For details, see [ABAC for](https://docs.aws.amazon.com/kms/latest/developerguide/abac.html) in the *Developer Guide*.
|
|
6
|
-
Using an alias to refer to a KMS key can help you simplify key management. For example, an alias in your code can be associated with different KMS keys
|
|
6
|
+
Using an alias to refer to a KMS key can help you simplify key management. For example, an alias in your code can be associated with different KMS keys in different AWS-Regions. For more information, see [Using aliases](https://docs.aws.amazon.com/kms/latest/developerguide/kms-alias.html) in the *Developer Guide*.
|
|
7
|
+
When specifying an alias, observe the following rules.
|
|
8
|
+
+ Each alias is associated with one KMS key, but multiple aliases can be associated with the same KMS key.
|
|
9
|
+
+ The alias and its associated KMS key must be in the same AWS-account and Region.
|
|
10
|
+
+ The alias name must be unique in the AWS-account and Region. However, you can create aliases with the same name in different AWS-Regions. For example, you can have an ``alias/projectKey`` in multiple Regions, each of which is associated with a KMS key in its Region.
|
|
11
|
+
+ Each alias name must begin with ``alias/`` followed by a name, such as ``alias/exampleKey``. The alias name can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-). Alias names cannot begin with ``alias/aws/``. That alias name prefix is reserved for [](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk).
|
|
12
|
+
|
|
13
|
+
*Regions*
|
|
14
|
+
KMS CloudFormation resources are available in all AWS-Regions in which KMS and CFN are supported.
|
|
7
15
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html}
|
|
8
16
|
*/
|
|
9
17
|
export type KMSAliasProperties = {
|
|
@@ -34,7 +42,15 @@ export type KMSAliasProperties = {
|
|
|
34
42
|
/**
|
|
35
43
|
* The ``AWS::KMS::Alias`` resource specifies a display name for a [KMS key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#kms_keys). You can use an alias to identify a KMS key in the KMS console, in the [DescribeKey](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html) operation, and in [cryptographic operations](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations), such as [Decrypt](https://docs.aws.amazon.com/kms/latest/APIReference/API_Decrypt.html) and [GenerateDataKey](https://docs.aws.amazon.com/kms/latest/APIReference/API_GenerateDataKey.html).
|
|
36
44
|
Adding, deleting, or updating an alias can allow or deny permission to the KMS key. For details, see [ABAC for](https://docs.aws.amazon.com/kms/latest/developerguide/abac.html) in the *Developer Guide*.
|
|
37
|
-
Using an alias to refer to a KMS key can help you simplify key management. For example, an alias in your code can be associated with different KMS keys
|
|
45
|
+
Using an alias to refer to a KMS key can help you simplify key management. For example, an alias in your code can be associated with different KMS keys in different AWS-Regions. For more information, see [Using aliases](https://docs.aws.amazon.com/kms/latest/developerguide/kms-alias.html) in the *Developer Guide*.
|
|
46
|
+
When specifying an alias, observe the following rules.
|
|
47
|
+
+ Each alias is associated with one KMS key, but multiple aliases can be associated with the same KMS key.
|
|
48
|
+
+ The alias and its associated KMS key must be in the same AWS-account and Region.
|
|
49
|
+
+ The alias name must be unique in the AWS-account and Region. However, you can create aliases with the same name in different AWS-Regions. For example, you can have an ``alias/projectKey`` in multiple Regions, each of which is associated with a KMS key in its Region.
|
|
50
|
+
+ Each alias name must begin with ``alias/`` followed by a name, such as ``alias/exampleKey``. The alias name can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-). Alias names cannot begin with ``alias/aws/``. That alias name prefix is reserved for [](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk).
|
|
51
|
+
|
|
52
|
+
*Regions*
|
|
53
|
+
KMS CloudFormation resources are available in all AWS-Regions in which KMS and CFN are supported.
|
|
38
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html}
|
|
39
55
|
*/
|
|
40
56
|
export declare class KMSAlias extends $Resource<"AWS::KMS::Alias", KMSAliasProperties, Record<string, never>> {
|
package/lib/AWS-KMS-Alias.js
CHANGED
|
@@ -2,7 +2,15 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
/**
|
|
3
3
|
* The ``AWS::KMS::Alias`` resource specifies a display name for a [KMS key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#kms_keys). You can use an alias to identify a KMS key in the KMS console, in the [DescribeKey](https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html) operation, and in [cryptographic operations](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#cryptographic-operations), such as [Decrypt](https://docs.aws.amazon.com/kms/latest/APIReference/API_Decrypt.html) and [GenerateDataKey](https://docs.aws.amazon.com/kms/latest/APIReference/API_GenerateDataKey.html).
|
|
4
4
|
Adding, deleting, or updating an alias can allow or deny permission to the KMS key. For details, see [ABAC for](https://docs.aws.amazon.com/kms/latest/developerguide/abac.html) in the *Developer Guide*.
|
|
5
|
-
Using an alias to refer to a KMS key can help you simplify key management. For example, an alias in your code can be associated with different KMS keys
|
|
5
|
+
Using an alias to refer to a KMS key can help you simplify key management. For example, an alias in your code can be associated with different KMS keys in different AWS-Regions. For more information, see [Using aliases](https://docs.aws.amazon.com/kms/latest/developerguide/kms-alias.html) in the *Developer Guide*.
|
|
6
|
+
When specifying an alias, observe the following rules.
|
|
7
|
+
+ Each alias is associated with one KMS key, but multiple aliases can be associated with the same KMS key.
|
|
8
|
+
+ The alias and its associated KMS key must be in the same AWS-account and Region.
|
|
9
|
+
+ The alias name must be unique in the AWS-account and Region. However, you can create aliases with the same name in different AWS-Regions. For example, you can have an ``alias/projectKey`` in multiple Regions, each of which is associated with a KMS key in its Region.
|
|
10
|
+
+ Each alias name must begin with ``alias/`` followed by a name, such as ``alias/exampleKey``. The alias name can contain only alphanumeric characters, forward slashes (/), underscores (_), and dashes (-). Alias names cannot begin with ``alias/aws/``. That alias name prefix is reserved for [](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk).
|
|
11
|
+
|
|
12
|
+
*Regions*
|
|
13
|
+
KMS CloudFormation resources are available in all AWS-Regions in which KMS and CFN are supported.
|
|
6
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html}
|
|
7
15
|
*/
|
|
8
16
|
export class KMSAlias extends $Resource {
|
|
@@ -9,6 +9,14 @@ export type MediaConnectFlowProperties = {
|
|
|
9
9
|
* The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.
|
|
10
10
|
*/
|
|
11
11
|
AvailabilityZone?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The maintenance settings you want to use for the flow.
|
|
14
|
+
*/
|
|
15
|
+
Maintenance?: Maintenance;
|
|
16
|
+
/**
|
|
17
|
+
* The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow.
|
|
18
|
+
*/
|
|
19
|
+
MediaStreams?: MediaStream[];
|
|
12
20
|
/**
|
|
13
21
|
* The name of the flow.
|
|
14
22
|
*/
|
|
@@ -21,12 +29,20 @@ export type MediaConnectFlowProperties = {
|
|
|
21
29
|
* The source failover config of the flow.
|
|
22
30
|
*/
|
|
23
31
|
SourceFailoverConfig?: FailoverConfig;
|
|
32
|
+
/**
|
|
33
|
+
* The VPC interfaces that you added to this flow.
|
|
34
|
+
*/
|
|
35
|
+
VpcInterfaces?: VpcInterface[];
|
|
24
36
|
};
|
|
25
37
|
/**
|
|
26
38
|
* Attribute type definition for `AWS::MediaConnect::Flow`.
|
|
27
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediaconnect-flow.html#aws-resource-mediaconnect-flow-return-values}
|
|
28
40
|
*/
|
|
29
41
|
export type MediaConnectFlowAttributes = {
|
|
42
|
+
/**
|
|
43
|
+
* The IP address from which video will be sent to output destinations.
|
|
44
|
+
*/
|
|
45
|
+
EgressIp: string;
|
|
30
46
|
/**
|
|
31
47
|
* The Amazon Resource Name (ARN), a unique identifier for any AWS resource, of the flow.
|
|
32
48
|
*/
|
|
@@ -35,6 +51,15 @@ export type MediaConnectFlowAttributes = {
|
|
|
35
51
|
* The Availability Zone that you want to create the flow in. These options are limited to the Availability Zones within the current AWS.(ReadOnly)
|
|
36
52
|
*/
|
|
37
53
|
FlowAvailabilityZone: string;
|
|
54
|
+
/**
|
|
55
|
+
* The media streams associated with the flow. You can associate any of these media streams with sources and outputs on the flow.
|
|
56
|
+
*/
|
|
57
|
+
MediaStreams: {
|
|
58
|
+
/**
|
|
59
|
+
* The format type number (sometimes referred to as RTP payload type) of the media stream. MediaConnect assigns this value to the media stream. For ST 2110 JPEG XS outputs, you need to provide this value to the receiver.
|
|
60
|
+
*/
|
|
61
|
+
Fmt: number;
|
|
62
|
+
}[];
|
|
38
63
|
/**
|
|
39
64
|
* The source of the flow.
|
|
40
65
|
*/
|
|
@@ -52,6 +77,15 @@ export type MediaConnectFlowAttributes = {
|
|
|
52
77
|
*/
|
|
53
78
|
SourceIngestPort: string;
|
|
54
79
|
};
|
|
80
|
+
/**
|
|
81
|
+
* The VPC interfaces that you added to this flow.
|
|
82
|
+
*/
|
|
83
|
+
VpcInterfaces: {
|
|
84
|
+
/**
|
|
85
|
+
* IDs of the network interfaces created in customer's account by MediaConnect.
|
|
86
|
+
*/
|
|
87
|
+
NetworkInterfaceIds: string[];
|
|
88
|
+
}[];
|
|
55
89
|
};
|
|
56
90
|
/**
|
|
57
91
|
* Type definition for `AWS::MediaConnect::Flow.Encryption`.
|
|
@@ -121,6 +155,41 @@ export type FailoverConfig = {
|
|
|
121
155
|
};
|
|
122
156
|
State?: "ENABLED" | "DISABLED";
|
|
123
157
|
};
|
|
158
|
+
/**
|
|
159
|
+
* Type definition for `AWS::MediaConnect::Flow.Fmtp`.
|
|
160
|
+
* A set of parameters that define the media stream.
|
|
161
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-fmtp.html}
|
|
162
|
+
*/
|
|
163
|
+
export type Fmtp = {
|
|
164
|
+
/**
|
|
165
|
+
* The format of the audio channel.
|
|
166
|
+
*/
|
|
167
|
+
ChannelOrder?: string;
|
|
168
|
+
/**
|
|
169
|
+
* The format used for the representation of color.
|
|
170
|
+
*/
|
|
171
|
+
Colorimetry?: "BT601" | "BT709" | "BT2020" | "BT2100" | "ST2065-1" | "ST2065-3" | "XYZ";
|
|
172
|
+
/**
|
|
173
|
+
* The frame rate for the video stream, in frames/second. For example: 60000/1001.
|
|
174
|
+
*/
|
|
175
|
+
ExactFramerate?: string;
|
|
176
|
+
/**
|
|
177
|
+
* The pixel aspect ratio (PAR) of the video.
|
|
178
|
+
*/
|
|
179
|
+
Par?: string;
|
|
180
|
+
/**
|
|
181
|
+
* The encoding range of the video.
|
|
182
|
+
*/
|
|
183
|
+
Range?: "NARROW" | "FULL" | "FULLPROTECT";
|
|
184
|
+
/**
|
|
185
|
+
* The type of compression that was used to smooth the video's appearance.
|
|
186
|
+
*/
|
|
187
|
+
ScanMode?: "progressive" | "interlace" | "progressive-segmented-frame";
|
|
188
|
+
/**
|
|
189
|
+
* The transfer characteristic system (TCS) that is used in the video.
|
|
190
|
+
*/
|
|
191
|
+
Tcs?: "SDR" | "PQ" | "HLG" | "LINEAR" | "BT2100LINPQ" | "BT2100LINHLG" | "ST2065-1" | "ST428-1" | "DENSITY";
|
|
192
|
+
};
|
|
124
193
|
/**
|
|
125
194
|
* Type definition for `AWS::MediaConnect::Flow.GatewayBridgeSource`.
|
|
126
195
|
* The source configuration for cloud flows receiving a stream from a bridge.
|
|
@@ -136,6 +205,116 @@ export type GatewayBridgeSource = {
|
|
|
136
205
|
*/
|
|
137
206
|
VpcInterfaceAttachment?: VpcInterfaceAttachment;
|
|
138
207
|
};
|
|
208
|
+
/**
|
|
209
|
+
* Type definition for `AWS::MediaConnect::Flow.InputConfiguration`.
|
|
210
|
+
* The transport parameters associated with an incoming media stream.
|
|
211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-inputconfiguration.html}
|
|
212
|
+
*/
|
|
213
|
+
export type InputConfiguration = {
|
|
214
|
+
/**
|
|
215
|
+
* The port that the flow listens on for an incoming media stream.
|
|
216
|
+
*/
|
|
217
|
+
InputPort: number;
|
|
218
|
+
/**
|
|
219
|
+
* The VPC interface where the media stream comes in from.
|
|
220
|
+
*/
|
|
221
|
+
Interface: Interface;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Type definition for `AWS::MediaConnect::Flow.Interface`.
|
|
225
|
+
* The VPC interface that you want to use for the media stream associated with the output.
|
|
226
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-interface.html}
|
|
227
|
+
*/
|
|
228
|
+
export type Interface = {
|
|
229
|
+
/**
|
|
230
|
+
* The name of the VPC interface that you want to use for the media stream associated with the output.
|
|
231
|
+
*/
|
|
232
|
+
Name: string;
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* Type definition for `AWS::MediaConnect::Flow.Maintenance`.
|
|
236
|
+
* The maintenance setting of a flow.
|
|
237
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-maintenance.html}
|
|
238
|
+
*/
|
|
239
|
+
export type Maintenance = {
|
|
240
|
+
/**
|
|
241
|
+
* A day of a week when the maintenance will happen. Use Monday/Tuesday/Wednesday/Thursday/Friday/Saturday/Sunday.
|
|
242
|
+
*/
|
|
243
|
+
MaintenanceDay: "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday";
|
|
244
|
+
/**
|
|
245
|
+
* UTC time when the maintenance will happen. Use 24-hour HH:MM format. Minutes must be 00. Example: 13:00. The default value is 02:00.
|
|
246
|
+
*/
|
|
247
|
+
MaintenanceStartHour: string;
|
|
248
|
+
};
|
|
249
|
+
/**
|
|
250
|
+
* Type definition for `AWS::MediaConnect::Flow.MediaStream`.
|
|
251
|
+
* A single track or stream of media that contains video, audio, or ancillary data. After you add a media stream to a flow, you can associate it with sources and outputs on that flow, as long as they use the CDI protocol or the ST 2110 JPEG XS protocol. Each source or output can consist of one or many media streams.
|
|
252
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-mediastream.html}
|
|
253
|
+
*/
|
|
254
|
+
export type MediaStream = {
|
|
255
|
+
/**
|
|
256
|
+
* Attributes that are related to the media stream.
|
|
257
|
+
*/
|
|
258
|
+
Attributes?: MediaStreamAttributes;
|
|
259
|
+
/**
|
|
260
|
+
* The sample rate for the stream. This value in measured in kHz.
|
|
261
|
+
*/
|
|
262
|
+
ClockRate?: number;
|
|
263
|
+
/**
|
|
264
|
+
* A description that can help you quickly identify what your media stream is used for.
|
|
265
|
+
*/
|
|
266
|
+
Description?: string;
|
|
267
|
+
/**
|
|
268
|
+
* A unique identifier for the media stream.
|
|
269
|
+
*/
|
|
270
|
+
MediaStreamId: number;
|
|
271
|
+
/**
|
|
272
|
+
* A name that helps you distinguish one media stream from another.
|
|
273
|
+
*/
|
|
274
|
+
MediaStreamName: string;
|
|
275
|
+
/**
|
|
276
|
+
* The type of media stream.
|
|
277
|
+
*/
|
|
278
|
+
MediaStreamType: "video" | "audio" | "ancillary-data";
|
|
279
|
+
/**
|
|
280
|
+
* The resolution of the video.
|
|
281
|
+
*/
|
|
282
|
+
VideoFormat?: "2160p" | "1080p" | "1080i" | "720p" | "480p";
|
|
283
|
+
};
|
|
284
|
+
/**
|
|
285
|
+
* Type definition for `AWS::MediaConnect::Flow.MediaStreamAttributes`.
|
|
286
|
+
* Attributes that are related to the media stream.
|
|
287
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-mediastreamattributes.html}
|
|
288
|
+
*/
|
|
289
|
+
export type MediaStreamAttributes = {
|
|
290
|
+
/**
|
|
291
|
+
* A set of parameters that define the media stream.
|
|
292
|
+
*/
|
|
293
|
+
Fmtp?: Fmtp;
|
|
294
|
+
/**
|
|
295
|
+
* The audio language, in a format that is recognized by the receiver.
|
|
296
|
+
*/
|
|
297
|
+
Lang?: string;
|
|
298
|
+
};
|
|
299
|
+
/**
|
|
300
|
+
* Type definition for `AWS::MediaConnect::Flow.MediaStreamSourceConfiguration`.
|
|
301
|
+
* The media stream that is associated with the source, and the parameters for that association.
|
|
302
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-mediastreamsourceconfiguration.html}
|
|
303
|
+
*/
|
|
304
|
+
export type MediaStreamSourceConfiguration = {
|
|
305
|
+
/**
|
|
306
|
+
* The format that was used to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video, 2110 streams, set the encoding name to raw. For video, JPEG XS streams, set the encoding name to jxsv.
|
|
307
|
+
*/
|
|
308
|
+
EncodingName: "jxsv" | "raw" | "smpte291" | "pcm";
|
|
309
|
+
/**
|
|
310
|
+
* The media streams that you want to associate with the source.
|
|
311
|
+
*/
|
|
312
|
+
InputConfigurations?: InputConfiguration[];
|
|
313
|
+
/**
|
|
314
|
+
* A name that helps you distinguish one media stream from another.
|
|
315
|
+
*/
|
|
316
|
+
MediaStreamName: string;
|
|
317
|
+
};
|
|
139
318
|
/**
|
|
140
319
|
* Type definition for `AWS::MediaConnect::Flow.Source`.
|
|
141
320
|
* The settings for the source of the flow.
|
|
@@ -170,6 +349,14 @@ export type Source = {
|
|
|
170
349
|
* The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
|
|
171
350
|
*/
|
|
172
351
|
MaxLatency?: number;
|
|
352
|
+
/**
|
|
353
|
+
* The size of the buffer (in milliseconds) to use to sync incoming source data.
|
|
354
|
+
*/
|
|
355
|
+
MaxSyncBuffer?: number;
|
|
356
|
+
/**
|
|
357
|
+
* The media stream that is associated with the source, and the parameters for that association.
|
|
358
|
+
*/
|
|
359
|
+
MediaStreamSourceConfigurations?: MediaStreamSourceConfiguration[];
|
|
173
360
|
/**
|
|
174
361
|
* The minimum latency in milliseconds.
|
|
175
362
|
*/
|
|
@@ -181,7 +368,7 @@ export type Source = {
|
|
|
181
368
|
/**
|
|
182
369
|
* The protocol that is used by the source.
|
|
183
370
|
*/
|
|
184
|
-
Protocol?: "zixi-push" | "rtp-fec" | "rtp" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller";
|
|
371
|
+
Protocol?: "zixi-push" | "rtp-fec" | "rtp" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi";
|
|
185
372
|
/**
|
|
186
373
|
* The port that the flow uses to send outbound requests to initiate connection with the sender for fujitsu-qos protocol.
|
|
187
374
|
*/
|
|
@@ -211,6 +398,33 @@ export type Source = {
|
|
|
211
398
|
*/
|
|
212
399
|
WhitelistCidr?: string;
|
|
213
400
|
};
|
|
401
|
+
/**
|
|
402
|
+
* Type definition for `AWS::MediaConnect::Flow.VpcInterface`.
|
|
403
|
+
* The details of a VPC interface.
|
|
404
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flow-vpcinterface.html}
|
|
405
|
+
*/
|
|
406
|
+
export type VpcInterface = {
|
|
407
|
+
/**
|
|
408
|
+
* Immutable and has to be a unique against other VpcInterfaces in this Flow.
|
|
409
|
+
*/
|
|
410
|
+
Name: string;
|
|
411
|
+
/**
|
|
412
|
+
* The type of network adapter that you want MediaConnect to use on this interface. If you don't set this value, it defaults to ENA.
|
|
413
|
+
*/
|
|
414
|
+
NetworkInterfaceType?: "ena" | "efa";
|
|
415
|
+
/**
|
|
416
|
+
* Role Arn MediaConnect can assume to create ENIs in customer's account.
|
|
417
|
+
*/
|
|
418
|
+
RoleArn: string;
|
|
419
|
+
/**
|
|
420
|
+
* Security Group IDs to be used on ENI.
|
|
421
|
+
*/
|
|
422
|
+
SecurityGroupIds: string[];
|
|
423
|
+
/**
|
|
424
|
+
* Subnet must be in the AZ of the Flow
|
|
425
|
+
*/
|
|
426
|
+
SubnetId: string;
|
|
427
|
+
};
|
|
214
428
|
/**
|
|
215
429
|
* Type definition for `AWS::MediaConnect::Flow.VpcInterfaceAttachment`.
|
|
216
430
|
* The settings for attaching a VPC interface to an resource.
|
|
@@ -29,6 +29,10 @@ export type MediaConnectFlowOutputProperties = {
|
|
|
29
29
|
* The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
|
|
30
30
|
*/
|
|
31
31
|
MaxLatency?: number;
|
|
32
|
+
/**
|
|
33
|
+
* The definition for each media stream that is associated with the output.
|
|
34
|
+
*/
|
|
35
|
+
MediaStreamOutputConfigurations?: MediaStreamOutputConfiguration[];
|
|
32
36
|
/**
|
|
33
37
|
* The minimum latency in milliseconds.
|
|
34
38
|
*/
|
|
@@ -44,7 +48,7 @@ export type MediaConnectFlowOutputProperties = {
|
|
|
44
48
|
/**
|
|
45
49
|
* The protocol that is used by the source or output.
|
|
46
50
|
*/
|
|
47
|
-
Protocol: "zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller";
|
|
51
|
+
Protocol: "zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "fujitsu-qos" | "srt-listener" | "srt-caller" | "st2110-jpegxs" | "cdi";
|
|
48
52
|
/**
|
|
49
53
|
* The remote ID for the Zixi-pull stream.
|
|
50
54
|
*/
|
|
@@ -72,6 +76,40 @@ export type MediaConnectFlowOutputAttributes = {
|
|
|
72
76
|
*/
|
|
73
77
|
OutputArn: string;
|
|
74
78
|
};
|
|
79
|
+
/**
|
|
80
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.DestinationConfiguration`.
|
|
81
|
+
* The definition of a media stream that is associated with the output.
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-destinationconfiguration.html}
|
|
83
|
+
*/
|
|
84
|
+
export type DestinationConfiguration = {
|
|
85
|
+
/**
|
|
86
|
+
* The IP address where contents of the media stream will be sent.
|
|
87
|
+
*/
|
|
88
|
+
DestinationIp: string;
|
|
89
|
+
/**
|
|
90
|
+
* The port to use when the content of the media stream is distributed to the output.
|
|
91
|
+
*/
|
|
92
|
+
DestinationPort: number;
|
|
93
|
+
/**
|
|
94
|
+
* The VPC interface that is used for the media stream associated with the output.
|
|
95
|
+
*/
|
|
96
|
+
Interface: Interface;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.EncodingParameters`.
|
|
100
|
+
* A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-encodingparameters.html}
|
|
102
|
+
*/
|
|
103
|
+
export type EncodingParameters = {
|
|
104
|
+
/**
|
|
105
|
+
* A value that is used to calculate compression for an output. The bitrate of the output is calculated as follows: Output bitrate = (1 / compressionFactor) * (source bitrate) This property only applies to outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol. Valid values are in the range of 3.0 to 10.0, inclusive.
|
|
106
|
+
*/
|
|
107
|
+
CompressionFactor: number;
|
|
108
|
+
/**
|
|
109
|
+
* A setting on the encoder that drives compression settings. This property only applies to video media streams associated with outputs that use the ST 2110 JPEG XS protocol, with a flow source that uses the CDI protocol.
|
|
110
|
+
*/
|
|
111
|
+
EncoderProfile?: "main" | "high";
|
|
112
|
+
};
|
|
75
113
|
/**
|
|
76
114
|
* Type definition for `AWS::MediaConnect::FlowOutput.Encryption`.
|
|
77
115
|
* Information about the encryption of the flow.
|
|
@@ -95,6 +133,40 @@ export type Encryption = {
|
|
|
95
133
|
*/
|
|
96
134
|
SecretArn: string;
|
|
97
135
|
};
|
|
136
|
+
/**
|
|
137
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.Interface`.
|
|
138
|
+
* The VPC interface that you want to use for the media stream associated with the output.
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-interface.html}
|
|
140
|
+
*/
|
|
141
|
+
export type Interface = {
|
|
142
|
+
/**
|
|
143
|
+
* The name of the VPC interface that you want to use for the media stream associated with the output.
|
|
144
|
+
*/
|
|
145
|
+
Name: string;
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* Type definition for `AWS::MediaConnect::FlowOutput.MediaStreamOutputConfiguration`.
|
|
149
|
+
* The media stream that is associated with the output, and the parameters for that association.
|
|
150
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediaconnect-flowoutput-mediastreamoutputconfiguration.html}
|
|
151
|
+
*/
|
|
152
|
+
export type MediaStreamOutputConfiguration = {
|
|
153
|
+
/**
|
|
154
|
+
* The media streams that you want to associate with the output.
|
|
155
|
+
*/
|
|
156
|
+
DestinationConfigurations?: DestinationConfiguration[];
|
|
157
|
+
/**
|
|
158
|
+
* The format that will be used to encode the data. For ancillary data streams, set the encoding name to smpte291. For audio streams, set the encoding name to pcm. For video streams on sources or outputs that use the CDI protocol, set the encoding name to raw. For video streams on sources or outputs that use the ST 2110 JPEG XS protocol, set the encoding name to jxsv.
|
|
159
|
+
*/
|
|
160
|
+
EncodingName: "jxsv" | "raw" | "smpte291" | "pcm";
|
|
161
|
+
/**
|
|
162
|
+
* A collection of parameters that determine how MediaConnect will convert the content. These fields only apply to outputs on flows that have a CDI source.
|
|
163
|
+
*/
|
|
164
|
+
EncodingParameters?: EncodingParameters;
|
|
165
|
+
/**
|
|
166
|
+
* A name that helps you distinguish one media stream from another.
|
|
167
|
+
*/
|
|
168
|
+
MediaStreamName: string;
|
|
169
|
+
};
|
|
98
170
|
/**
|
|
99
171
|
* Type definition for `AWS::MediaConnect::FlowOutput.VpcInterfaceAttachment`.
|
|
100
172
|
* The settings for attaching a VPC interface to an output.
|