@awboost/cfn-resource-types 0.1.475 → 0.1.477
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-APS-Scraper.d.ts +13 -0
- package/lib/AWS-ApiGateway-Account.d.ts +2 -0
- package/lib/AWS-ApiGateway-Account.js +1 -0
- package/lib/AWS-ApiGateway-ApiKey.d.ts +5 -3
- package/lib/AWS-ApiGateway-BasePathMapping.d.ts +2 -2
- package/lib/AWS-ApiGateway-BasePathMapping.js +1 -1
- package/lib/AWS-ApiGateway-ClientCertificate.d.ts +8 -0
- package/lib/AWS-ApiGateway-Deployment.d.ts +5 -3
- package/lib/AWS-ApiGateway-DocumentationPart.d.ts +2 -2
- package/lib/AWS-ApiGateway-DomainName.d.ts +15 -6
- package/lib/AWS-ApiGateway-DomainName.js +2 -1
- package/lib/AWS-ApiGateway-GatewayResponse.d.ts +2 -2
- package/lib/AWS-ApiGateway-GatewayResponse.js +1 -1
- package/lib/AWS-ApiGateway-RestApi.d.ts +13 -5
- package/lib/AWS-ApiGateway-RestApi.js +1 -1
- package/lib/AWS-ApiGateway-Stage.d.ts +6 -4
- package/lib/AWS-ApiGateway-UsagePlan.d.ts +4 -2
- package/lib/AWS-ApiGateway-VpcLink.d.ts +8 -0
- package/lib/AWS-CloudTrail-Trail.d.ts +1 -1
- package/lib/AWS-DSQL-Cluster.d.ts +8 -0
- package/lib/AWS-EC2-FlowLog.d.ts +1 -1
- package/lib/AWS-ElasticLoadBalancingV2-TargetGroup.d.ts +4 -0
- package/lib/AWS-IAM-Policy.d.ts +2 -2
- package/lib/AWS-IAM-Policy.js +1 -1
- package/lib/AWS-Lambda-EventSourceMapping.d.ts +21 -4
- package/lib/AWS-MediaConnect-Flow.d.ts +61 -0
- package/lib/AWS-MediaConnect-FlowOutput.d.ts +62 -1
- package/lib/AWS-MediaConnect-RouterInput.d.ts +537 -0
- package/lib/AWS-MediaConnect-RouterInput.js +13 -0
- package/lib/AWS-MediaConnect-RouterNetworkInterface.d.ts +144 -0
- package/lib/AWS-MediaConnect-RouterNetworkInterface.js +13 -0
- package/lib/AWS-MediaConnect-RouterOutput.d.ts +464 -0
- package/lib/AWS-MediaConnect-RouterOutput.js +13 -0
- package/lib/AWS-RTBFabric-InboundExternalLink.d.ts +132 -0
- package/lib/AWS-RTBFabric-InboundExternalLink.js +12 -0
- package/lib/AWS-RTBFabric-Link.d.ts +1 -1
- package/lib/AWS-RTBFabric-RequesterGateway.d.ts +1 -1
- package/lib/AWS-RTBFabric-ResponderGateway.d.ts +1 -1
- package/lib/AWS-ServiceCatalog-CloudFormationProduct.d.ts +21 -113
- package/lib/AWS-ServiceCatalog-CloudFormationProduct.js +1 -1
- package/lib/AWS-WorkSpacesWeb-BrowserSettings.d.ts +28 -1
- package/lib/Dev-FSx-StorageVirtualMachine.d.ts +55 -0
- package/lib/Dev-FSx-StorageVirtualMachine.js +11 -0
- package/package.json +1 -1
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::RTBFabric::InboundExternalLink Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html}
|
|
6
|
+
*/
|
|
7
|
+
export type RTBFabricInboundExternalLinkProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @pattern `^rtb-gw-[a-z0-9-]{1,25}$`
|
|
10
|
+
*/
|
|
11
|
+
GatewayId: string;
|
|
12
|
+
LinkAttributes?: LinkAttributes;
|
|
13
|
+
LinkLogSettings: LinkLogSettings;
|
|
14
|
+
/**
|
|
15
|
+
* Tags to assign to the Link.
|
|
16
|
+
* @minLength `0`
|
|
17
|
+
* @maxLength `50`
|
|
18
|
+
*/
|
|
19
|
+
Tags?: Tag[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::RTBFabric::InboundExternalLink`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html#aws-resource-rtbfabric-inboundexternallink-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type RTBFabricInboundExternalLinkAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `20`
|
|
28
|
+
* @maxLength `2048`
|
|
29
|
+
* @pattern `^arn:aws:rtbfabric:[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+/link/[a-zA-Z0-9-]+$`
|
|
30
|
+
*/
|
|
31
|
+
Arn: string;
|
|
32
|
+
CreatedTimestamp: string;
|
|
33
|
+
/**
|
|
34
|
+
* @pattern `^link-[a-z0-9-]{1,25}$`
|
|
35
|
+
*/
|
|
36
|
+
LinkId: string;
|
|
37
|
+
LinkStatus: LinkStatus;
|
|
38
|
+
UpdatedTimestamp: string;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.LinkAttributes`.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-linkattributes.html}
|
|
43
|
+
*/
|
|
44
|
+
export type LinkAttributes = {
|
|
45
|
+
CustomerProvidedId?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @minLength `1`
|
|
48
|
+
* @maxLength `200`
|
|
49
|
+
*/
|
|
50
|
+
ResponderErrorMasking?: ResponderErrorMaskingForHttpCode[];
|
|
51
|
+
};
|
|
52
|
+
/**
|
|
53
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.LinkLogSettings`.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-linklogsettings.html}
|
|
55
|
+
*/
|
|
56
|
+
export type LinkLogSettings = {
|
|
57
|
+
ApplicationLogs: {
|
|
58
|
+
LinkApplicationLogSampling: {
|
|
59
|
+
/**
|
|
60
|
+
* @min `0`
|
|
61
|
+
* @max `100`
|
|
62
|
+
*/
|
|
63
|
+
ErrorLog: number;
|
|
64
|
+
/**
|
|
65
|
+
* @min `0`
|
|
66
|
+
* @max `100`
|
|
67
|
+
*/
|
|
68
|
+
FilterLog: number;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.LinkStatus`.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-linkstatus.html}
|
|
75
|
+
*/
|
|
76
|
+
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "REJECTED" | "FAILED" | "PENDING_DELETION" | "DELETED" | "PENDING_UPDATE" | "PENDING_ISOLATION" | "ISOLATED" | "PENDING_RESTORATION" | "UNKNOWN_TO_SDK_VERSION";
|
|
77
|
+
/**
|
|
78
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.ResponderErrorMaskingForHttpCode`.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-respondererrormaskingforhttpcode.html}
|
|
80
|
+
*/
|
|
81
|
+
export type ResponderErrorMaskingForHttpCode = {
|
|
82
|
+
Action: "NO_BID" | "PASSTHROUGH";
|
|
83
|
+
/**
|
|
84
|
+
* @minLength `3`
|
|
85
|
+
* @maxLength `7`
|
|
86
|
+
* @pattern `^DEFAULT|4XX|5XX|\d{3}$`
|
|
87
|
+
*/
|
|
88
|
+
HttpCode: string;
|
|
89
|
+
/**
|
|
90
|
+
* @minLength `1`
|
|
91
|
+
* @maxLength `2`
|
|
92
|
+
*/
|
|
93
|
+
LoggingTypes: ResponderErrorMaskingLoggingType[];
|
|
94
|
+
/**
|
|
95
|
+
* @min `0`
|
|
96
|
+
* @max `100`
|
|
97
|
+
*/
|
|
98
|
+
ResponseLoggingPercentage?: number;
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.ResponderErrorMaskingLoggingType`.
|
|
102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-respondererrormaskingloggingtype.html}
|
|
103
|
+
*/
|
|
104
|
+
export type ResponderErrorMaskingLoggingType = "NONE" | "METRIC" | "RESPONSE";
|
|
105
|
+
/**
|
|
106
|
+
* Type definition for `AWS::RTBFabric::InboundExternalLink.Tag`.
|
|
107
|
+
* A key-value pair to associate with a resource.
|
|
108
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-inboundexternallink-tag.html}
|
|
109
|
+
*/
|
|
110
|
+
export type Tag = {
|
|
111
|
+
/**
|
|
112
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
113
|
+
* @minLength `1`
|
|
114
|
+
* @maxLength `128`
|
|
115
|
+
*/
|
|
116
|
+
Key: string;
|
|
117
|
+
/**
|
|
118
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
119
|
+
* @minLength `0`
|
|
120
|
+
* @maxLength `256`
|
|
121
|
+
*/
|
|
122
|
+
Value?: string;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Resource Type definition for AWS::RTBFabric::InboundExternalLink Resource Type
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html}
|
|
127
|
+
*/
|
|
128
|
+
export declare class RTBFabricInboundExternalLink extends $Resource<"AWS::RTBFabric::InboundExternalLink", RTBFabricInboundExternalLinkProperties, RTBFabricInboundExternalLinkAttributes> {
|
|
129
|
+
static readonly Type = "AWS::RTBFabric::InboundExternalLink";
|
|
130
|
+
constructor(logicalId: string, properties: RTBFabricInboundExternalLinkProperties, options?: $ResourceOptions);
|
|
131
|
+
}
|
|
132
|
+
//# sourceMappingURL=AWS-RTBFabric-InboundExternalLink.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::RTBFabric::InboundExternalLink Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-inboundexternallink.html}
|
|
5
|
+
*/
|
|
6
|
+
export class RTBFabricInboundExternalLink extends $Resource {
|
|
7
|
+
static Type = "AWS::RTBFabric::InboundExternalLink";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, RTBFabricInboundExternalLink.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-RTBFabric-InboundExternalLink.js.map
|
|
@@ -111,7 +111,7 @@ export type LinkLogSettings = {
|
|
|
111
111
|
* Type definition for `AWS::RTBFabric::Link.LinkStatus`.
|
|
112
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-linkstatus.html}
|
|
113
113
|
*/
|
|
114
|
-
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "
|
|
114
|
+
export type LinkStatus = "PENDING_CREATION" | "PENDING_REQUEST" | "REQUESTED" | "ACCEPTED" | "ACTIVE" | "REJECTED" | "FAILED" | "PENDING_DELETION" | "DELETED" | "PENDING_UPDATE" | "PENDING_ISOLATION" | "ISOLATED" | "PENDING_RESTORATION" | "UNKNOWN_TO_SDK_VERSION";
|
|
115
115
|
/**
|
|
116
116
|
* Type definition for `AWS::RTBFabric::Link.ModuleConfiguration`.
|
|
117
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rtbfabric-link-moduleconfiguration.html}
|
|
@@ -40,7 +40,7 @@ export type RTBFabricRequesterGatewayAttributes = {
|
|
|
40
40
|
/**
|
|
41
41
|
* @minLength `20`
|
|
42
42
|
* @maxLength `2048`
|
|
43
|
-
* @pattern `^arn:aws:
|
|
43
|
+
* @pattern `^arn:aws:rtbfabric:[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+$`
|
|
44
44
|
*/
|
|
45
45
|
Arn: string;
|
|
46
46
|
CreatedTimestamp: string;
|
|
@@ -51,7 +51,7 @@ export type RTBFabricResponderGatewayAttributes = {
|
|
|
51
51
|
/**
|
|
52
52
|
* @minLength `20`
|
|
53
53
|
* @maxLength `2048`
|
|
54
|
-
* @pattern `^arn:aws:
|
|
54
|
+
* @pattern `^arn:aws:rtbfabric:[a-zA-Z0-9_-]+:[0-9]{12}:gateway/[a-zA-Z0-9-]+$`
|
|
55
55
|
*/
|
|
56
56
|
Arn: string;
|
|
57
57
|
CreatedTimestamp: string;
|
|
@@ -1,61 +1,22 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource Type definition for AWS::ServiceCatalog::CloudFormationProduct
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ServiceCatalogCloudFormationProductProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* The language code.
|
|
10
|
-
*/
|
|
11
8
|
AcceptLanguage?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The description of the product.
|
|
14
|
-
*/
|
|
15
9
|
Description?: string;
|
|
16
|
-
/**
|
|
17
|
-
* The distributor of the product.
|
|
18
|
-
*/
|
|
19
10
|
Distributor?: string;
|
|
20
|
-
/**
|
|
21
|
-
* The name of the product.
|
|
22
|
-
*/
|
|
23
11
|
Name: string;
|
|
24
|
-
/**
|
|
25
|
-
* The owner of the product.
|
|
26
|
-
*/
|
|
27
12
|
Owner: string;
|
|
28
|
-
|
|
29
|
-
* The type of product.
|
|
30
|
-
*/
|
|
31
|
-
ProductType?: "CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL";
|
|
32
|
-
/**
|
|
33
|
-
* The configuration of the provisioning artifact (also known as a version).
|
|
34
|
-
*/
|
|
13
|
+
ProductType?: string;
|
|
35
14
|
ProvisioningArtifactParameters?: ProvisioningArtifactProperties[];
|
|
36
|
-
/**
|
|
37
|
-
* This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name.
|
|
38
|
-
*/
|
|
39
15
|
ReplaceProvisioningArtifacts?: boolean;
|
|
40
|
-
/**
|
|
41
|
-
* A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response.
|
|
42
|
-
*/
|
|
43
16
|
SourceConnection?: SourceConnection;
|
|
44
|
-
/**
|
|
45
|
-
* The support information about the product.
|
|
46
|
-
*/
|
|
47
17
|
SupportDescription?: string;
|
|
48
|
-
/**
|
|
49
|
-
* The contact email for product support.
|
|
50
|
-
*/
|
|
51
18
|
SupportEmail?: string;
|
|
52
|
-
/**
|
|
53
|
-
* The contact URL for product support.
|
|
54
|
-
*/
|
|
55
19
|
SupportUrl?: string;
|
|
56
|
-
/**
|
|
57
|
-
* One or more tags.
|
|
58
|
-
*/
|
|
59
20
|
Tags?: Tag[];
|
|
60
21
|
};
|
|
61
22
|
/**
|
|
@@ -63,21 +24,9 @@ export type ServiceCatalogCloudFormationProductProperties = {
|
|
|
63
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#aws-resource-servicecatalog-cloudformationproduct-return-values}
|
|
64
25
|
*/
|
|
65
26
|
export type ServiceCatalogCloudFormationProductAttributes = {
|
|
66
|
-
/**
|
|
67
|
-
* The ID of the product, such as prod-tsjbmal34qvek
|
|
68
|
-
*/
|
|
69
27
|
Id: string;
|
|
70
|
-
/**
|
|
71
|
-
* The name of the product.
|
|
72
|
-
*/
|
|
73
28
|
ProductName: string;
|
|
74
|
-
/**
|
|
75
|
-
* The IDs of the provisioning artifacts
|
|
76
|
-
*/
|
|
77
29
|
ProvisioningArtifactIds: string;
|
|
78
|
-
/**
|
|
79
|
-
* The names of the provisioning artifacts
|
|
80
|
-
*/
|
|
81
30
|
ProvisioningArtifactNames: string;
|
|
82
31
|
};
|
|
83
32
|
/**
|
|
@@ -85,78 +34,43 @@ export type ServiceCatalogCloudFormationProductAttributes = {
|
|
|
85
34
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html}
|
|
86
35
|
*/
|
|
87
36
|
export type CodeStarParameters = {
|
|
88
|
-
/**
|
|
89
|
-
* The absolute path where the artifact resides within the repo and branch, formatted as "folder/file.json".
|
|
90
|
-
*/
|
|
91
37
|
ArtifactPath: string;
|
|
92
|
-
/**
|
|
93
|
-
* The specific branch where the artifact resides.
|
|
94
|
-
*/
|
|
95
38
|
Branch: string;
|
|
96
|
-
/**
|
|
97
|
-
* The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
*/
|
|
101
39
|
ConnectionArn: string;
|
|
102
|
-
/**
|
|
103
|
-
* The specific repository where the product's artifact-to-be-synced resides, formatted as "Account/Repo."
|
|
104
|
-
*/
|
|
105
40
|
Repository: string;
|
|
106
41
|
};
|
|
42
|
+
/**
|
|
43
|
+
* Type definition for `AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters`.
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-connectionparameters.html}
|
|
45
|
+
*/
|
|
46
|
+
export type ConnectionParameters = {
|
|
47
|
+
CodeStar?: CodeStarParameters;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Type definition for `AWS::ServiceCatalog::CloudFormationProduct.Info`.
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-info.html}
|
|
52
|
+
*/
|
|
53
|
+
export type Info = {
|
|
54
|
+
ImportFromPhysicalId?: string;
|
|
55
|
+
LoadTemplateFromURL?: string;
|
|
56
|
+
};
|
|
107
57
|
/**
|
|
108
58
|
* Type definition for `AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties`.
|
|
109
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html}
|
|
110
60
|
*/
|
|
111
61
|
export type ProvisioningArtifactProperties = {
|
|
112
|
-
/**
|
|
113
|
-
* The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
|
|
114
|
-
*/
|
|
115
62
|
Description?: string;
|
|
116
|
-
/**
|
|
117
|
-
* If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
|
|
118
|
-
*/
|
|
119
63
|
DisableTemplateValidation?: boolean;
|
|
120
|
-
|
|
121
|
-
* Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
|
|
122
|
-
|
|
123
|
-
"LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
|
|
124
|
-
|
|
125
|
-
ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
|
|
126
|
-
*/
|
|
127
|
-
Info: {
|
|
128
|
-
/**
|
|
129
|
-
* The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
|
|
130
|
-
*/
|
|
131
|
-
ImportFromPhysicalId?: string;
|
|
132
|
-
/**
|
|
133
|
-
* The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
|
|
134
|
-
*/
|
|
135
|
-
LoadTemplateFromURL?: string;
|
|
136
|
-
};
|
|
137
|
-
/**
|
|
138
|
-
* The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
|
|
139
|
-
*/
|
|
64
|
+
Info: Info;
|
|
140
65
|
Name?: string;
|
|
141
|
-
|
|
142
|
-
* The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
|
|
143
|
-
*/
|
|
144
|
-
Type?: "CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL";
|
|
66
|
+
Type?: string;
|
|
145
67
|
};
|
|
146
68
|
/**
|
|
147
69
|
* Type definition for `AWS::ServiceCatalog::CloudFormationProduct.SourceConnection`.
|
|
148
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-sourceconnection.html}
|
|
149
71
|
*/
|
|
150
72
|
export type SourceConnection = {
|
|
151
|
-
|
|
152
|
-
* The connection details based on the connection Type.
|
|
153
|
-
*/
|
|
154
|
-
ConnectionParameters: {
|
|
155
|
-
CodeStar?: CodeStarParameters;
|
|
156
|
-
};
|
|
157
|
-
/**
|
|
158
|
-
* The only supported SourceConnection type is Codestar.
|
|
159
|
-
*/
|
|
73
|
+
ConnectionParameters: ConnectionParameters;
|
|
160
74
|
Type: string;
|
|
161
75
|
};
|
|
162
76
|
/**
|
|
@@ -164,17 +78,11 @@ export type SourceConnection = {
|
|
|
164
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-tag.html}
|
|
165
79
|
*/
|
|
166
80
|
export type Tag = {
|
|
167
|
-
/**
|
|
168
|
-
* The tag key.
|
|
169
|
-
*/
|
|
170
81
|
Key: string;
|
|
171
|
-
/**
|
|
172
|
-
* The tag value
|
|
173
|
-
*/
|
|
174
82
|
Value: string;
|
|
175
83
|
};
|
|
176
84
|
/**
|
|
177
|
-
* Resource
|
|
85
|
+
* Resource Type definition for AWS::ServiceCatalog::CloudFormationProduct
|
|
178
86
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html}
|
|
179
87
|
*/
|
|
180
88
|
export declare class ServiceCatalogCloudFormationProduct extends $Resource<"AWS::ServiceCatalog::CloudFormationProduct", ServiceCatalogCloudFormationProductProperties, ServiceCatalogCloudFormationProductAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource Type definition for AWS::ServiceCatalog::CloudFormationProduct
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html}
|
|
5
5
|
*/
|
|
6
6
|
export class ServiceCatalogCloudFormationProduct extends $Resource {
|
|
@@ -9,7 +9,7 @@ export type WorkSpacesWebBrowserSettingsProperties = {
|
|
|
9
9
|
/**
|
|
10
10
|
* @minLength `2`
|
|
11
11
|
* @maxLength `131072`
|
|
12
|
-
* @pattern
|
|
12
|
+
* @pattern `^\{[\S\s]*\}\s*$`
|
|
13
13
|
*/
|
|
14
14
|
BrowserPolicy?: string;
|
|
15
15
|
/**
|
|
@@ -23,6 +23,7 @@ export type WorkSpacesWebBrowserSettingsProperties = {
|
|
|
23
23
|
* @maxLength `200`
|
|
24
24
|
*/
|
|
25
25
|
Tags?: Tag[];
|
|
26
|
+
WebContentFilteringPolicy?: WebContentFilteringPolicy;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
29
|
* Attribute type definition for `AWS::WorkSpacesWeb::BrowserSettings`.
|
|
@@ -37,6 +38,11 @@ export type WorkSpacesWebBrowserSettingsAttributes = {
|
|
|
37
38
|
*/
|
|
38
39
|
BrowserSettingsArn: string;
|
|
39
40
|
};
|
|
41
|
+
/**
|
|
42
|
+
* Type definition for `AWS::WorkSpacesWeb::BrowserSettings.Category`.
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-browsersettings-category.html}
|
|
44
|
+
*/
|
|
45
|
+
export type Category = "Cults" | "Gambling" | "Nudity" | "Pornography" | "SexEducation" | "Tasteless" | "Violence" | "DownloadSites" | "ImageSharing" | "PeerToPeer" | "StreamingMediaAndDownloads" | "GenerativeAI" | "CriminalActivity" | "Hacking" | "HateAndIntolerance" | "IllegalDrug" | "IllegalSoftware" | "SchoolCheating" | "SelfHarm" | "Weapons" | "Chat" | "Games" | "InstantMessaging" | "ProfessionalNetwork" | "SocialNetworking" | "WebBasedEmail" | "ParkedDomains";
|
|
40
46
|
/**
|
|
41
47
|
* Type definition for `AWS::WorkSpacesWeb::BrowserSettings.EncryptionContextMap`.
|
|
42
48
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-browsersettings-encryptioncontextmap.html}
|
|
@@ -60,6 +66,27 @@ export type Tag = {
|
|
|
60
66
|
*/
|
|
61
67
|
Value: string;
|
|
62
68
|
};
|
|
69
|
+
/**
|
|
70
|
+
* Type definition for `AWS::WorkSpacesWeb::BrowserSettings.WebContentFilteringPolicy`.
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-browsersettings-webcontentfilteringpolicy.html}
|
|
72
|
+
*/
|
|
73
|
+
export type WebContentFilteringPolicy = {
|
|
74
|
+
/**
|
|
75
|
+
* @minLength `1`
|
|
76
|
+
* @maxLength `1000`
|
|
77
|
+
*/
|
|
78
|
+
AllowedUrls?: string[];
|
|
79
|
+
/**
|
|
80
|
+
* @minLength `1`
|
|
81
|
+
* @maxLength `100`
|
|
82
|
+
*/
|
|
83
|
+
BlockedCategories?: Category[];
|
|
84
|
+
/**
|
|
85
|
+
* @minLength `1`
|
|
86
|
+
* @maxLength `1000`
|
|
87
|
+
*/
|
|
88
|
+
BlockedUrls?: string[];
|
|
89
|
+
};
|
|
63
90
|
/**
|
|
64
91
|
* Definition of AWS::WorkSpacesWeb::BrowserSettings Resource Type
|
|
65
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-browsersettings.html}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for Dev::FSx::StorageVirtualMachine
|
|
5
|
+
*/
|
|
6
|
+
export type DevFSxStorageVirtualMachineProperties = {
|
|
7
|
+
ActiveDirectoryConfiguration?: ActiveDirectoryConfiguration;
|
|
8
|
+
FileSystemId: string;
|
|
9
|
+
Name: string;
|
|
10
|
+
RootVolumeSecurityStyle?: string;
|
|
11
|
+
SvmAdminPassword?: string;
|
|
12
|
+
Tags?: Tag[];
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* Attribute type definition for `Dev::FSx::StorageVirtualMachine`.
|
|
16
|
+
*/
|
|
17
|
+
export type DevFSxStorageVirtualMachineAttributes = {
|
|
18
|
+
ResourceARN: string;
|
|
19
|
+
StorageVirtualMachineId: string;
|
|
20
|
+
UUID: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Type definition for `Dev::FSx::StorageVirtualMachine.ActiveDirectoryConfiguration`.
|
|
24
|
+
*/
|
|
25
|
+
export type ActiveDirectoryConfiguration = {
|
|
26
|
+
NetBiosName?: string;
|
|
27
|
+
SelfManagedActiveDirectoryConfiguration?: SelfManagedActiveDirectoryConfiguration;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Type definition for `Dev::FSx::StorageVirtualMachine.SelfManagedActiveDirectoryConfiguration`.
|
|
31
|
+
*/
|
|
32
|
+
export type SelfManagedActiveDirectoryConfiguration = {
|
|
33
|
+
DnsIps?: string[];
|
|
34
|
+
DomainJoinServiceAccountSecret?: string;
|
|
35
|
+
DomainName?: string;
|
|
36
|
+
FileSystemAdministratorsGroup?: string;
|
|
37
|
+
OrganizationalUnitDistinguishedName?: string;
|
|
38
|
+
Password?: string;
|
|
39
|
+
UserName?: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Type definition for `Dev::FSx::StorageVirtualMachine.Tag`.
|
|
43
|
+
*/
|
|
44
|
+
export type Tag = {
|
|
45
|
+
Key: string;
|
|
46
|
+
Value: string;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Resource Type definition for Dev::FSx::StorageVirtualMachine
|
|
50
|
+
*/
|
|
51
|
+
export declare class DevFSxStorageVirtualMachine extends $Resource<"Dev::FSx::StorageVirtualMachine", DevFSxStorageVirtualMachineProperties, DevFSxStorageVirtualMachineAttributes> {
|
|
52
|
+
static readonly Type = "Dev::FSx::StorageVirtualMachine";
|
|
53
|
+
constructor(logicalId: string, properties: DevFSxStorageVirtualMachineProperties, options?: $ResourceOptions);
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=Dev-FSx-StorageVirtualMachine.d.ts.map
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for Dev::FSx::StorageVirtualMachine
|
|
4
|
+
*/
|
|
5
|
+
export class DevFSxStorageVirtualMachine extends $Resource {
|
|
6
|
+
static Type = "Dev::FSx::StorageVirtualMachine";
|
|
7
|
+
constructor(logicalId, properties, options) {
|
|
8
|
+
super(logicalId, DevFSxStorageVirtualMachine.Type, properties, options);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=Dev-FSx-StorageVirtualMachine.js.map
|