@propulsionworks/cloudformation 0.1.31 → 0.1.32
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-applicationsignals-groupingconfiguration.d.ts +1 -1
- package/out/exports/resources.generated/aws-aps-anomalydetector.d.ts +3 -1
- package/out/exports/resources.generated/aws-billingconductor-billinggroup.d.ts +1 -1
- package/out/exports/resources.generated/aws-billingconductor-pricingplan.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +4 -0
- package/out/exports/resources.generated/aws-cloudfront-vpcorigin.d.ts +4 -0
- package/out/exports/resources.generated/aws-connect-emailaddress.d.ts +17 -0
- package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +155 -0
- package/out/exports/resources.generated/aws-docdb-dbcluster.d.ts +7 -0
- package/out/exports/resources.generated/aws-ec2-capacitymanagerdataexport.d.ts +46 -0
- package/out/exports/resources.generated/aws-ec2-capacityreservation.d.ts +3 -3
- package/out/exports/resources.generated/aws-ec2-natgateway.d.ts +1 -0
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-listenerrule.d.ts +76 -4
- package/out/exports/resources.generated/aws-emrserverless-application.d.ts +1 -1
- package/out/exports/resources.generated/aws-events-eventbuspolicy.d.ts +14 -11
- package/out/exports/resources.generated/aws-fsx-filesystem.d.ts +4 -0
- package/out/exports/resources.generated/aws-imagebuilder-image.d.ts +92 -0
- package/out/exports/resources.generated/aws-imagebuilder-imagepipeline.d.ts +5 -0
- package/out/exports/resources.generated/aws-lambda-permission.d.ts +1 -1
- package/out/exports/resources.generated/aws-mediapackagev2-originendpoint.d.ts +50 -2
- package/out/exports/resources.generated/aws-neptune-dbinstance.d.ts +5 -1
- package/out/exports/resources.generated/aws-observabilityadmin-organizationcentralizationrule.d.ts +29 -3
- package/out/exports/resources.generated/aws-observabilityadmin-organizationtelemetryrule.d.ts +20 -20
- package/out/exports/resources.generated/aws-observabilityadmin-telemetryrule.d.ts +20 -20
- package/out/exports/resources.generated/aws-organizations-account.d.ts +5 -0
- package/out/exports/resources.generated/aws-osis-pipeline.d.ts +22 -1
- package/out/exports/resources.generated/aws-route53-recordset.d.ts +1 -3
- package/out/exports/resources.generated/aws-route53-recordsetgroup.d.ts +1 -3
- package/out/exports/resources.generated/aws-route53resolver-resolverrule.d.ts +2 -0
- package/out/exports/resources.generated/aws-route53resolver-resolverruleassociation.d.ts +2 -0
- package/out/exports/resources.generated/aws-rtbfabric-link.d.ts +137 -0
- package/out/exports/resources.generated/aws-rtbfabric-requestergateway.d.ts +72 -0
- package/out/exports/resources.generated/aws-rtbfabric-respondergateway.d.ts +151 -0
- package/out/exports/resources.generated/aws-sagemaker-cluster.d.ts +1 -0
- package/out/exports/resources.generated/aws-synthetics-canary.d.ts +21 -0
- package/package.json +1 -1
package/out/exports/resources.generated/aws-observabilityadmin-organizationtelemetryrule.d.ts
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Retrieves the details of a specific organization centralization rule. This operation can only be called by the organization's management account or a delegated administrator account.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
|
|
5
5
|
*/
|
|
6
6
|
export type ObservabilityAdminOrganizationTelemetryRule = ResourceDefinitionWithAttributes<"AWS::ObservabilityAdmin::OrganizationTelemetryRule", ObservabilityAdminOrganizationTelemetryRuleProps, ObservabilityAdminOrganizationTelemetryRuleAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Retrieves the details of a specific organization centralization rule. This operation can only be called by the organization's management account or a delegated administrator account.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
|
|
10
10
|
*/
|
|
11
11
|
export type ObservabilityAdminOrganizationTelemetryRuleProps = {
|
|
12
12
|
/**
|
|
13
|
-
* The telemetry rule
|
|
13
|
+
* The name of the organization telemetry rule.
|
|
14
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html#cfn-observabilityadmin-organizationtelemetryrule-rule}
|
|
15
15
|
*/
|
|
16
16
|
Rule: TelemetryRule;
|
|
17
17
|
/**
|
|
18
|
-
* The name of the organization
|
|
18
|
+
* The name of the organization centralization rule.
|
|
19
19
|
* @minLength 1
|
|
20
20
|
* @maxLength 100
|
|
21
21
|
* @pattern ^[0-9A-Za-z-]+$
|
|
@@ -23,7 +23,7 @@ export type ObservabilityAdminOrganizationTelemetryRuleProps = {
|
|
|
23
23
|
*/
|
|
24
24
|
RuleName: string;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Lists all tags attached to the specified telemetry rule resource.
|
|
27
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html#cfn-observabilityadmin-organizationtelemetryrule-tags}
|
|
28
28
|
*/
|
|
29
29
|
Tags?: Tag[] | undefined;
|
|
@@ -52,58 +52,58 @@ export type DestinationType = "cloud-watch-logs";
|
|
|
52
52
|
*/
|
|
53
53
|
export type ResourceType = "AWS::EC2::VPC";
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Configuration specifying where and how telemetry data should be delivered for AWS resources.
|
|
56
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html}
|
|
57
57
|
*/
|
|
58
58
|
export type TelemetryDestinationConfiguration = {
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
61
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration-destinationpattern}
|
|
62
62
|
*/
|
|
63
63
|
DestinationPattern?: string | undefined;
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
66
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration-destinationtype}
|
|
67
67
|
*/
|
|
68
68
|
DestinationType?: DestinationType | undefined;
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
* The number of days to retain the telemetry data in the destination.
|
|
71
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration-retentionindays}
|
|
72
72
|
*/
|
|
73
73
|
RetentionInDays?: number | undefined;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
76
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration-vpcflowlogparameters}
|
|
77
77
|
*/
|
|
78
78
|
VPCFlowLogParameters?: VPCFlowLogParameters | undefined;
|
|
79
79
|
};
|
|
80
80
|
/**
|
|
81
|
-
*
|
|
81
|
+
* Defines how telemetry should be configured for specific AWS resources.
|
|
82
82
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html}
|
|
83
83
|
*/
|
|
84
84
|
export type TelemetryRule = {
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Configuration specifying where and how the telemetry data should be delivered.
|
|
87
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html#cfn-observabilityadmin-organizationtelemetryrule-telemetryrule-destinationconfiguration}
|
|
88
88
|
*/
|
|
89
89
|
DestinationConfiguration?: TelemetryDestinationConfiguration | undefined;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
92
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html#cfn-observabilityadmin-organizationtelemetryrule-telemetryrule-resourcetype}
|
|
93
93
|
*/
|
|
94
94
|
ResourceType: ResourceType;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* The organizational scope to which the rule applies, specified using accounts or organizational units.
|
|
97
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html#cfn-observabilityadmin-organizationtelemetryrule-telemetryrule-scope}
|
|
98
98
|
*/
|
|
99
99
|
Scope?: string | undefined;
|
|
100
100
|
/**
|
|
101
|
-
*
|
|
101
|
+
* Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
102
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html#cfn-observabilityadmin-organizationtelemetryrule-telemetryrule-selectioncriteria}
|
|
103
103
|
*/
|
|
104
104
|
SelectionCriteria?: string | undefined;
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
107
107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html#cfn-observabilityadmin-organizationtelemetryrule-telemetryrule-telemetrytype}
|
|
108
108
|
*/
|
|
109
109
|
TelemetryType: TelemetryType;
|
|
@@ -114,22 +114,22 @@ export type TelemetryRule = {
|
|
|
114
114
|
*/
|
|
115
115
|
export type TelemetryType = "Logs";
|
|
116
116
|
/**
|
|
117
|
-
*
|
|
117
|
+
* Configuration parameters specific to VPC Flow Logs.
|
|
118
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters.html}
|
|
119
119
|
*/
|
|
120
120
|
export type VPCFlowLogParameters = {
|
|
121
121
|
/**
|
|
122
|
-
* The
|
|
122
|
+
* The format in which VPC Flow Log entries should be logged.
|
|
123
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters.html#cfn-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters-logformat}
|
|
124
124
|
*/
|
|
125
125
|
LogFormat?: string | undefined;
|
|
126
126
|
/**
|
|
127
|
-
* The maximum interval
|
|
127
|
+
* The maximum interval in seconds between the capture of flow log records.
|
|
128
128
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters.html#cfn-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters-maxaggregationinterval}
|
|
129
129
|
*/
|
|
130
130
|
MaxAggregationInterval?: number | undefined;
|
|
131
131
|
/**
|
|
132
|
-
* The type of traffic
|
|
132
|
+
* The type of traffic to log (ACCEPT, REJECT, or ALL).
|
|
133
133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters.html#cfn-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters-traffictype}
|
|
134
134
|
*/
|
|
135
135
|
TrafficType?: string | undefined;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates a telemetry rule that defines how telemetry should be configured for AWS resources in your account. The rule specifies which resources should have telemetry enabled and how that telemetry data should be collected based on resource type, telemetry type, and selection criteria.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
|
|
5
5
|
*/
|
|
6
6
|
export type ObservabilityAdminTelemetryRule = ResourceDefinitionWithAttributes<"AWS::ObservabilityAdmin::TelemetryRule", ObservabilityAdminTelemetryRuleProps, ObservabilityAdminTelemetryRuleAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Creates a telemetry rule that defines how telemetry should be configured for AWS resources in your account. The rule specifies which resources should have telemetry enabled and how that telemetry data should be collected based on resource type, telemetry type, and selection criteria.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
|
|
10
10
|
*/
|
|
11
11
|
export type ObservabilityAdminTelemetryRuleProps = {
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Retrieves the details of a specific telemetry rule in your account.
|
|
14
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html#cfn-observabilityadmin-telemetryrule-rule}
|
|
15
15
|
*/
|
|
16
16
|
Rule: TelemetryRule;
|
|
17
17
|
/**
|
|
18
|
-
* The name of the telemetry rule
|
|
18
|
+
* The name of the telemetry rule.
|
|
19
19
|
* @minLength 1
|
|
20
20
|
* @maxLength 100
|
|
21
21
|
* @pattern ^[0-9A-Za-z-]+$
|
|
@@ -23,7 +23,7 @@ export type ObservabilityAdminTelemetryRuleProps = {
|
|
|
23
23
|
*/
|
|
24
24
|
RuleName: string;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* Lists all tags attached to the specified telemetry rule resource.
|
|
27
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html#cfn-observabilityadmin-telemetryrule-tags}
|
|
28
28
|
*/
|
|
29
29
|
Tags?: Tag[] | undefined;
|
|
@@ -33,7 +33,7 @@ export type ObservabilityAdminTelemetryRuleProps = {
|
|
|
33
33
|
*/
|
|
34
34
|
export type ObservabilityAdminTelemetryRuleAttribs = {
|
|
35
35
|
/**
|
|
36
|
-
* The
|
|
36
|
+
* The Amazon Resource Name (ARN) of the telemetry rule.
|
|
37
37
|
* @minLength 1
|
|
38
38
|
* @maxLength 1011
|
|
39
39
|
* @pattern ^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$
|
|
@@ -52,53 +52,53 @@ export type DestinationType = "cloud-watch-logs";
|
|
|
52
52
|
*/
|
|
53
53
|
export type ResourceType = "AWS::EC2::VPC";
|
|
54
54
|
/**
|
|
55
|
-
*
|
|
55
|
+
* Configuration specifying where and how telemetry data should be delivered for AWS resources.
|
|
56
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html}
|
|
57
57
|
*/
|
|
58
58
|
export type TelemetryDestinationConfiguration = {
|
|
59
59
|
/**
|
|
60
|
-
*
|
|
60
|
+
* The pattern used to generate the destination path or name, supporting macros like <resourceId> and <accountId>.
|
|
61
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-telemetryrule-telemetrydestinationconfiguration-destinationpattern}
|
|
62
62
|
*/
|
|
63
63
|
DestinationPattern?: string | undefined;
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* The type of destination for the telemetry data (e.g., "Amazon CloudWatch Logs", "S3").
|
|
66
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-telemetryrule-telemetrydestinationconfiguration-destinationtype}
|
|
67
67
|
*/
|
|
68
68
|
DestinationType?: DestinationType | undefined;
|
|
69
69
|
/**
|
|
70
|
-
*
|
|
70
|
+
* The number of days to retain the telemetry data in the destination.
|
|
71
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-telemetryrule-telemetrydestinationconfiguration-retentionindays}
|
|
72
72
|
*/
|
|
73
73
|
RetentionInDays?: number | undefined;
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* Configuration parameters specific to VPC Flow Logs when VPC is the resource type.
|
|
76
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html#cfn-observabilityadmin-telemetryrule-telemetrydestinationconfiguration-vpcflowlogparameters}
|
|
77
77
|
*/
|
|
78
78
|
VPCFlowLogParameters?: VPCFlowLogParameters | undefined;
|
|
79
79
|
};
|
|
80
80
|
/**
|
|
81
|
-
*
|
|
81
|
+
* Defines how telemetry should be configured for specific AWS resources.
|
|
82
82
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetryrule.html}
|
|
83
83
|
*/
|
|
84
84
|
export type TelemetryRule = {
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Configuration specifying where and how the telemetry data should be delivered.
|
|
87
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetryrule.html#cfn-observabilityadmin-telemetryrule-telemetryrule-destinationconfiguration}
|
|
88
88
|
*/
|
|
89
89
|
DestinationConfiguration?: TelemetryDestinationConfiguration | undefined;
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* The type of AWS resource to configure telemetry for (e.g., "AWS::EC2::VPC").
|
|
92
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetryrule.html#cfn-observabilityadmin-telemetryrule-telemetryrule-resourcetype}
|
|
93
93
|
*/
|
|
94
94
|
ResourceType: ResourceType;
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Criteria for selecting which resources the rule applies to, such as resource tags.
|
|
97
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetryrule.html#cfn-observabilityadmin-telemetryrule-telemetryrule-selectioncriteria}
|
|
98
98
|
*/
|
|
99
99
|
SelectionCriteria?: string | undefined;
|
|
100
100
|
/**
|
|
101
|
-
*
|
|
101
|
+
* The type of telemetry to collect (Logs, Metrics, or Traces).
|
|
102
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetryrule.html#cfn-observabilityadmin-telemetryrule-telemetryrule-telemetrytype}
|
|
103
103
|
*/
|
|
104
104
|
TelemetryType: TelemetryType;
|
|
@@ -109,22 +109,22 @@ export type TelemetryRule = {
|
|
|
109
109
|
*/
|
|
110
110
|
export type TelemetryType = "Logs";
|
|
111
111
|
/**
|
|
112
|
-
*
|
|
112
|
+
* Configuration parameters specific to VPC Flow Logs.
|
|
113
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-vpcflowlogparameters.html}
|
|
114
114
|
*/
|
|
115
115
|
export type VPCFlowLogParameters = {
|
|
116
116
|
/**
|
|
117
|
-
* The
|
|
117
|
+
* The format in which VPC Flow Log entries should be logged.
|
|
118
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-vpcflowlogparameters.html#cfn-observabilityadmin-telemetryrule-vpcflowlogparameters-logformat}
|
|
119
119
|
*/
|
|
120
120
|
LogFormat?: string | undefined;
|
|
121
121
|
/**
|
|
122
|
-
* The maximum interval
|
|
122
|
+
* The maximum interval in seconds between the capture of flow log records.
|
|
123
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-vpcflowlogparameters.html#cfn-observabilityadmin-telemetryrule-vpcflowlogparameters-maxaggregationinterval}
|
|
124
124
|
*/
|
|
125
125
|
MaxAggregationInterval?: number | undefined;
|
|
126
126
|
/**
|
|
127
|
-
* The type of traffic
|
|
127
|
+
* The type of traffic to log (ACCEPT, REJECT, or ALL).
|
|
128
128
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-vpcflowlogparameters.html#cfn-observabilityadmin-telemetryrule-vpcflowlogparameters-traffictype}
|
|
129
129
|
*/
|
|
130
130
|
TrafficType?: string | undefined;
|
|
@@ -160,6 +160,11 @@ export type OrganizationsAccountAttribs = {
|
|
|
160
160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-account.html#cfn-organizations-account-joinedtimestamp}
|
|
161
161
|
*/
|
|
162
162
|
JoinedTimestamp: string;
|
|
163
|
+
/**
|
|
164
|
+
* The state of the account in the organization.
|
|
165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-account.html#cfn-organizations-account-state}
|
|
166
|
+
*/
|
|
167
|
+
State: "PENDING_ACTIVATION" | "ACTIVE" | "SUSPENDED" | "PENDING_CLOSURE" | "CLOSED";
|
|
163
168
|
/**
|
|
164
169
|
* Returns the status of the account in the organization. For example: `ACTIVE | SUSPENDED | PENDING_CLOSURE` .
|
|
165
170
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-account.html#cfn-organizations-account-status}
|
|
@@ -53,6 +53,18 @@ export type OSISPipelineProps = {
|
|
|
53
53
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-pipelinename}
|
|
54
54
|
*/
|
|
55
55
|
PipelineName: string;
|
|
56
|
+
/**
|
|
57
|
+
* The Pipeline Role (ARN) for the pipeline.
|
|
58
|
+
* @minLength 20
|
|
59
|
+
* @maxLength 2048
|
|
60
|
+
* @pattern ^arn:(aws|aws\-cn|aws\-us\-gov|aws\-iso|aws\-iso\-b|aws\-iso\-e|aws\-iso\-f):iam::[0-9]+:role\/.*$
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-pipelinerolearn}
|
|
62
|
+
*/
|
|
63
|
+
PipelineRoleArn?: string | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-resourcepolicy}
|
|
66
|
+
*/
|
|
67
|
+
ResourcePolicy?: ResourcePolicy | undefined;
|
|
56
68
|
/**
|
|
57
69
|
* List of tags to add to the pipeline upon creation.
|
|
58
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-tags}
|
|
@@ -76,7 +88,7 @@ export type OSISPipelineAttribs = {
|
|
|
76
88
|
/**
|
|
77
89
|
* The Amazon Resource Name (ARN) of the pipeline.
|
|
78
90
|
* @minLength 46
|
|
79
|
-
* @maxLength
|
|
91
|
+
* @maxLength 78
|
|
80
92
|
* @pattern ^arn:(aws|aws\-cn|aws\-us\-gov|aws\-iso|aws\-iso\-b):osis:.+:pipeline\/.+$
|
|
81
93
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-pipelinearn}
|
|
82
94
|
*/
|
|
@@ -134,6 +146,15 @@ export type LogPublishingOptions = {
|
|
|
134
146
|
*/
|
|
135
147
|
IsLoggingEnabled?: boolean | undefined;
|
|
136
148
|
};
|
|
149
|
+
/**
|
|
150
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-osis-pipeline-resourcepolicy.html}
|
|
151
|
+
*/
|
|
152
|
+
export type ResourcePolicy = {
|
|
153
|
+
/**
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-osis-pipeline-resourcepolicy.html#cfn-osis-pipeline-resourcepolicy-policy}
|
|
155
|
+
*/
|
|
156
|
+
Policy: Record<string, unknown>;
|
|
157
|
+
};
|
|
137
158
|
/**
|
|
138
159
|
* Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.
|
|
139
160
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-osis-pipeline-vpcoptions.html}
|
|
@@ -170,9 +170,7 @@ export type Route53RecordSetProps = {
|
|
|
170
170
|
*/
|
|
171
171
|
MultiValueAnswer?: boolean | undefined;
|
|
172
172
|
/**
|
|
173
|
-
*
|
|
174
|
-
*
|
|
175
|
-
* *ChangeResourceRecordSets Only*
|
|
173
|
+
* The name of the record that you want to create, update, or delete.
|
|
176
174
|
*
|
|
177
175
|
* Enter a fully qualified domain name, for example, `www.example.com` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats `www.example.com` (without a trailing dot) and `www.example.com.` (with a trailing dot) as identical.
|
|
178
176
|
*
|
|
@@ -430,9 +430,7 @@ export type RecordSet = {
|
|
|
430
430
|
*/
|
|
431
431
|
MultiValueAnswer?: boolean | undefined;
|
|
432
432
|
/**
|
|
433
|
-
*
|
|
434
|
-
*
|
|
435
|
-
* *ChangeResourceRecordSets Only*
|
|
433
|
+
* The name of the record that you want to create, update, or delete.
|
|
436
434
|
*
|
|
437
435
|
* Enter a fully qualified domain name, for example, `www.example.com` . You can optionally include a trailing dot. If you omit the trailing dot, Amazon Route 53 assumes that the domain name that you specify is fully qualified. This means that Route 53 treats `www.example.com` (without a trailing dot) and `www.example.com.` (with a trailing dot) as identical.
|
|
438
436
|
*
|
|
@@ -25,6 +25,8 @@ export type Route53ResolverResolverRuleProps = {
|
|
|
25
25
|
DomainName?: string | undefined;
|
|
26
26
|
/**
|
|
27
27
|
* The name for the Resolver rule, which you specified when you created the Resolver rule.
|
|
28
|
+
*
|
|
29
|
+
* The name can be up to 64 characters long and can contain letters (a-z, A-Z), numbers (0-9), hyphens (-), underscores (_), and spaces. The name cannot consist of only numbers.
|
|
28
30
|
* @minLength 0
|
|
29
31
|
* @maxLength 64
|
|
30
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-name}
|
|
@@ -11,6 +11,8 @@ export type Route53ResolverResolverRuleAssociation = ResourceDefinitionWithAttri
|
|
|
11
11
|
export type Route53ResolverResolverRuleAssociationProps = {
|
|
12
12
|
/**
|
|
13
13
|
* The name of an association between a Resolver rule and a VPC.
|
|
14
|
+
*
|
|
15
|
+
* The name can be up to 64 characters long and can contain letters (a-z, A-Z), numbers (0-9), hyphens (-), underscores (_), and spaces. The name cannot consist of only numbers.
|
|
14
16
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverruleassociation.html#cfn-route53resolver-resolverruleassociation-name}
|
|
15
17
|
*/
|
|
16
18
|
Name?: string | undefined;
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html}
|
|
4
|
+
*/
|
|
5
|
+
export type RTBFabricLink = ResourceDefinitionWithAttributes<"AWS::RTBFabric::Link", RTBFabricLinkProps, RTBFabricLinkAttribs>;
|
|
6
|
+
/**
|
|
7
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html}
|
|
8
|
+
*/
|
|
9
|
+
export type RTBFabricLinkProps = {
|
|
10
|
+
/**
|
|
11
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-gatewayid}
|
|
12
|
+
*/
|
|
13
|
+
GatewayId: string;
|
|
14
|
+
/**
|
|
15
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-httpresponderallowed}
|
|
16
|
+
*/
|
|
17
|
+
HttpResponderAllowed?: boolean | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-linkattributes}
|
|
20
|
+
*/
|
|
21
|
+
LinkAttributes?: LinkAttributes | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-linklogsettings}
|
|
24
|
+
*/
|
|
25
|
+
LinkLogSettings: LinkLogSettings;
|
|
26
|
+
/**
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-peergatewayid}
|
|
28
|
+
*/
|
|
29
|
+
PeerGatewayId: string;
|
|
30
|
+
/**
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-tags}
|
|
32
|
+
*/
|
|
33
|
+
Tags?: Tag[] | undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#aws-resource-rtbfabric-link-return-values}
|
|
37
|
+
*/
|
|
38
|
+
export type RTBFabricLinkAttribs = {
|
|
39
|
+
/**
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-arn}
|
|
41
|
+
*/
|
|
42
|
+
Arn: string;
|
|
43
|
+
/**
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-createdtimestamp}
|
|
45
|
+
*/
|
|
46
|
+
CreatedTimestamp: string;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-linkdirection}
|
|
49
|
+
*/
|
|
50
|
+
LinkDirection: LinkDirection;
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-linkid}
|
|
53
|
+
*/
|
|
54
|
+
LinkId: string;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-linkstatus}
|
|
57
|
+
*/
|
|
58
|
+
LinkStatus: LinkStatus;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-link.html#cfn-rtbfabric-link-updatedtimestamp}
|
|
61
|
+
*/
|
|
62
|
+
UpdatedTimestamp: string;
|
|
63
|
+
};
|
|
64
|
+
/**
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkattributes.html}
|
|
66
|
+
*/
|
|
67
|
+
export type LinkAttributes = {
|
|
68
|
+
/**
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkattributes.html#cfn-rtbfabric-link-linkattributes-customerprovidedid}
|
|
70
|
+
*/
|
|
71
|
+
CustomerProvidedId?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkattributes.html#cfn-rtbfabric-link-linkattributes-respondererrormasking}
|
|
74
|
+
*/
|
|
75
|
+
ResponderErrorMasking?: ResponderErrorMaskingForHttpCode[] | undefined;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkdirection.html}
|
|
79
|
+
*/
|
|
80
|
+
export type LinkDirection = "REQUEST" | "RESPONSE";
|
|
81
|
+
/**
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linklogsettings.html}
|
|
83
|
+
*/
|
|
84
|
+
export type LinkLogSettings = {
|
|
85
|
+
/**
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linklogsettings.html#cfn-rtbfabric-link-linklogsettings-applicationlogs}
|
|
87
|
+
*/
|
|
88
|
+
ApplicationLogs: {
|
|
89
|
+
LinkApplicationLogSampling: {
|
|
90
|
+
/**
|
|
91
|
+
* @min 0
|
|
92
|
+
* @max 100
|
|
93
|
+
*/
|
|
94
|
+
ErrorLog: number;
|
|
95
|
+
/**
|
|
96
|
+
* @min 0
|
|
97
|
+
* @max 100
|
|
98
|
+
*/
|
|
99
|
+
FilterLog: number;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkstatus.html}
|
|
105
|
+
*/
|
|
106
|
+
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "DECLINED" | "FAILED" | "PENDING_DELETION" | "DELETED" | "PENDING_UPDATE" | "PENDING_ISOLATION" | "ISOLATED" | "PENDING_RESTORATION" | "UNKNOWN_TO_SDK_VERSION";
|
|
107
|
+
/**
|
|
108
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingforhttpcode.html}
|
|
109
|
+
*/
|
|
110
|
+
export type ResponderErrorMaskingForHttpCode = {
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingforhttpcode.html#cfn-rtbfabric-link-respondererrormaskingforhttpcode-action}
|
|
113
|
+
*/
|
|
114
|
+
Action: "NO_BID" | "PASSTHROUGH";
|
|
115
|
+
/**
|
|
116
|
+
* @minLength 3
|
|
117
|
+
* @maxLength 7
|
|
118
|
+
* @pattern ^DEFAULT|4XX|5XX|\d{3}$
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingforhttpcode.html#cfn-rtbfabric-link-respondererrormaskingforhttpcode-httpcode}
|
|
120
|
+
*/
|
|
121
|
+
HttpCode: string;
|
|
122
|
+
/**
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingforhttpcode.html#cfn-rtbfabric-link-respondererrormaskingforhttpcode-loggingtypes}
|
|
124
|
+
*/
|
|
125
|
+
LoggingTypes: ResponderErrorMaskingLoggingType[];
|
|
126
|
+
/**
|
|
127
|
+
* @min 0
|
|
128
|
+
* @max 100
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingforhttpcode.html#cfn-rtbfabric-link-respondererrormaskingforhttpcode-responseloggingpercentage}
|
|
130
|
+
*/
|
|
131
|
+
ResponseLoggingPercentage?: number | undefined;
|
|
132
|
+
};
|
|
133
|
+
/**
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-respondererrormaskingloggingtype.html}
|
|
135
|
+
*/
|
|
136
|
+
export type ResponderErrorMaskingLoggingType = "NONE" | "METRIC" | "RESPONSE";
|
|
137
|
+
//# sourceMappingURL=aws-rtbfabric-link.d.ts.map
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html}
|
|
4
|
+
*/
|
|
5
|
+
export type RTBFabricRequesterGateway = ResourceDefinitionWithAttributes<"AWS::RTBFabric::RequesterGateway", RTBFabricRequesterGatewayProps, RTBFabricRequesterGatewayAttribs>;
|
|
6
|
+
/**
|
|
7
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html}
|
|
8
|
+
*/
|
|
9
|
+
export type RTBFabricRequesterGatewayProps = {
|
|
10
|
+
/**
|
|
11
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-description}
|
|
12
|
+
*/
|
|
13
|
+
Description?: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-securitygroupids}
|
|
16
|
+
*/
|
|
17
|
+
SecurityGroupIds: string[];
|
|
18
|
+
/**
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-subnetids}
|
|
20
|
+
*/
|
|
21
|
+
SubnetIds: string[];
|
|
22
|
+
/**
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-tags}
|
|
24
|
+
*/
|
|
25
|
+
Tags?: Tag[] | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-vpcid}
|
|
28
|
+
*/
|
|
29
|
+
VpcId: string;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#aws-resource-rtbfabric-requestergateway-return-values}
|
|
33
|
+
*/
|
|
34
|
+
export type RTBFabricRequesterGatewayAttribs = {
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-activelinkscount}
|
|
37
|
+
*/
|
|
38
|
+
ActiveLinksCount: number;
|
|
39
|
+
/**
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-arn}
|
|
41
|
+
*/
|
|
42
|
+
Arn: string;
|
|
43
|
+
/**
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-createdtimestamp}
|
|
45
|
+
*/
|
|
46
|
+
CreatedTimestamp: string;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-domainname}
|
|
49
|
+
*/
|
|
50
|
+
DomainName: string;
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-gatewayid}
|
|
53
|
+
*/
|
|
54
|
+
GatewayId: string;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-requestergatewaystatus}
|
|
57
|
+
*/
|
|
58
|
+
RequesterGatewayStatus: RequesterGatewayStatus;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-totallinkscount}
|
|
61
|
+
*/
|
|
62
|
+
TotalLinksCount: number;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-updatedtimestamp}
|
|
65
|
+
*/
|
|
66
|
+
UpdatedTimestamp: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-requestergateway-requestergatewaystatus.html}
|
|
70
|
+
*/
|
|
71
|
+
export type RequesterGatewayStatus = "PENDING_CREATION" | "ACTIVE" | "PENDING_DELETION" | "DELETED" | "ERROR" | "PENDING_UPDATE" | "ISOLATED" | "PENDING_ISOLATION" | "PENDING_RESTORATION";
|
|
72
|
+
//# sourceMappingURL=aws-rtbfabric-requestergateway.d.ts.map
|