@awboost/cfn-resource-types 0.1.388 → 0.1.390

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.
@@ -0,0 +1,123 @@
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::EC2::TransitGatewayConnectPeer
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html}
6
+ */
7
+ export type EC2TransitGatewayConnectPeerProperties = {
8
+ /**
9
+ * The Connect peer details.
10
+ */
11
+ ConnectPeerConfiguration: TransitGatewayConnectPeerConfiguration;
12
+ /**
13
+ * The tags for the Connect Peer.
14
+ */
15
+ Tags?: Tag[];
16
+ /**
17
+ * The ID of the Connect attachment.
18
+ */
19
+ TransitGatewayAttachmentId: string;
20
+ };
21
+ /**
22
+ * Attribute type definition for `AWS::EC2::TransitGatewayConnectPeer`.
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#aws-resource-ec2-transitgatewayconnectpeer-return-values}
24
+ */
25
+ export type EC2TransitGatewayConnectPeerAttributes = {
26
+ /**
27
+ * The Connect peer details.
28
+ */
29
+ ConnectPeerConfiguration: {
30
+ /**
31
+ * The BGP configuration details.
32
+ */
33
+ BgpConfigurations: {
34
+ /**
35
+ * The BGP status.
36
+ */
37
+ BgpStatus: string;
38
+ /**
39
+ * The interior BGP peer IP address for the appliance.
40
+ */
41
+ PeerAddress: string;
42
+ /**
43
+ * The peer Autonomous System Number (ASN).
44
+ */
45
+ PeerAsn: number;
46
+ /**
47
+ * The interior BGP peer IP address for the transit gateway.
48
+ */
49
+ TransitGatewayAddress: string;
50
+ /**
51
+ * The transit gateway Autonomous System Number (ASN).
52
+ */
53
+ TransitGatewayAsn: number;
54
+ }[];
55
+ /**
56
+ * The tunnel protocol.
57
+ */
58
+ Protocol: string;
59
+ };
60
+ /**
61
+ * The creation time.
62
+ */
63
+ CreationTime: string;
64
+ /**
65
+ * The state of the Connect peer.
66
+ */
67
+ State: string;
68
+ /**
69
+ * The ID of the Connect peer.
70
+ */
71
+ TransitGatewayConnectPeerId: string;
72
+ };
73
+ /**
74
+ * Type definition for `AWS::EC2::TransitGatewayConnectPeer.Tag`.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-tag.html}
76
+ */
77
+ export type Tag = {
78
+ /**
79
+ * The key of the tag. Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws: .
80
+ */
81
+ Key?: string;
82
+ /**
83
+ * The value of the tag. Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
84
+ */
85
+ Value?: string;
86
+ };
87
+ /**
88
+ * Type definition for `AWS::EC2::TransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfiguration`.
89
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayattachmentbgpconfiguration.html}
90
+ */
91
+ export type TransitGatewayAttachmentBgpConfiguration = {
92
+ /**
93
+ * The peer Autonomous System Number (ASN).
94
+ */
95
+ PeerAsn?: number;
96
+ };
97
+ /**
98
+ * Type definition for `AWS::EC2::TransitGatewayConnectPeer.TransitGatewayConnectPeerConfiguration`.
99
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration.html}
100
+ */
101
+ export type TransitGatewayConnectPeerConfiguration = {
102
+ /**
103
+ * The range of interior BGP peer IP addresses.
104
+ */
105
+ InsideCidrBlocks: string[];
106
+ /**
107
+ * The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.
108
+ */
109
+ PeerAddress: string;
110
+ /**
111
+ * The Connect peer IP address on the transit gateway side of the tunnel.
112
+ */
113
+ TransitGatewayAddress?: string;
114
+ };
115
+ /**
116
+ * Resource Type definition for AWS::EC2::TransitGatewayConnectPeer
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html}
118
+ */
119
+ export declare class EC2TransitGatewayConnectPeer extends $Resource<"AWS::EC2::TransitGatewayConnectPeer", EC2TransitGatewayConnectPeerProperties, EC2TransitGatewayConnectPeerAttributes> {
120
+ static readonly Type = "AWS::EC2::TransitGatewayConnectPeer";
121
+ constructor(logicalId: string, properties: EC2TransitGatewayConnectPeerProperties, options?: $ResourceOptions);
122
+ }
123
+ //# sourceMappingURL=AWS-EC2-TransitGatewayConnectPeer.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::EC2::TransitGatewayConnectPeer
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html}
5
+ */
6
+ export class EC2TransitGatewayConnectPeer extends $Resource {
7
+ static Type = "AWS::EC2::TransitGatewayConnectPeer";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, EC2TransitGatewayConnectPeer.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-EC2-TransitGatewayConnectPeer.js.map
@@ -20,7 +20,12 @@ export type ECRRepositoryProperties = {
20
20
  /**
21
21
  * The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
22
22
  */
23
- ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
23
+ ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "MUTABLE_WITH_EXCLUSION" | "IMMUTABLE_WITH_EXCLUSION";
24
+ /**
25
+ * @minLength `1`
26
+ * @maxLength `5`
27
+ */
28
+ ImageTagMutabilityExclusionFilters?: ImageTagMutabilityExclusionFilter[];
24
29
  /**
25
30
  * Creates or updates a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html).
26
31
  */
@@ -92,6 +97,29 @@ export type ImageScanningConfiguration = {
92
97
  */
93
98
  ScanOnPush?: boolean;
94
99
  };
100
+ /**
101
+ * Type definition for `AWS::ECR::Repository.ImageTagMutabilityExclusionFilter`.
102
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html}
103
+ */
104
+ export type ImageTagMutabilityExclusionFilter = {
105
+ /**
106
+ * Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
107
+ */
108
+ ImageTagMutabilityExclusionFilterType: ImageTagMutabilityExclusionFilterType;
109
+ /**
110
+ * The value to use when filtering image tags.
111
+ * @minLength `1`
112
+ * @maxLength `128`
113
+ * @pattern `^[0-9a-zA-Z._*-]{1,128}`
114
+ */
115
+ ImageTagMutabilityExclusionFilterValue: string;
116
+ };
117
+ /**
118
+ * Type definition for `AWS::ECR::Repository.ImageTagMutabilityExclusionFilterType`.
119
+ * Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfiltertype.html}
121
+ */
122
+ export type ImageTagMutabilityExclusionFilterType = "WILDCARD";
95
123
  /**
96
124
  * Type definition for `AWS::ECR::Repository.LifecyclePolicy`.
97
125
  * The ``LifecyclePolicy`` property type specifies a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html) in the *Amazon ECR User Guide*.
@@ -29,7 +29,12 @@ export type ECRRepositoryCreationTemplateProperties = {
29
29
  /**
30
30
  * The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
31
31
  */
32
- ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
32
+ ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "IMMUTABLE_WITH_EXCLUSION" | "MUTABLE_WITH_EXCLUSION";
33
+ /**
34
+ * @minLength `1`
35
+ * @maxLength `5`
36
+ */
37
+ ImageTagMutabilityExclusionFilters?: ImageTagMutabilityExclusionFilter[];
33
38
  /**
34
39
  * The lifecycle policy to use for repositories created using the template.
35
40
  * @minLength `100`
@@ -96,6 +101,23 @@ export type EncryptionConfiguration = {
96
101
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptiontype.html}
97
102
  */
98
103
  export type EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
104
+ /**
105
+ * Type definition for `AWS::ECR::RepositoryCreationTemplate.ImageTagMutabilityExclusionFilter`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-imagetagmutabilityexclusionfilter.html}
107
+ */
108
+ export type ImageTagMutabilityExclusionFilter = {
109
+ /**
110
+ * Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
111
+ */
112
+ ImageTagMutabilityExclusionFilterType: "WILDCARD";
113
+ /**
114
+ * The value to use when filtering image tags.
115
+ * @minLength `1`
116
+ * @maxLength `128`
117
+ * @pattern `^[0-9a-zA-Z._*-]{1,128}`
118
+ */
119
+ ImageTagMutabilityExclusionFilterValue: string;
120
+ };
99
121
  /**
100
122
  * Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
101
123
  * The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
@@ -0,0 +1,172 @@
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 schema for AWS::IoTSiteWise::ComputationModel.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html}
6
+ */
7
+ export type IoTSiteWiseComputationModelProperties = {
8
+ /**
9
+ * The configuration for the computation model.
10
+ */
11
+ ComputationModelConfiguration: ComputationModelConfiguration;
12
+ /**
13
+ * The data binding for the computation model.
14
+ */
15
+ ComputationModelDataBinding: ComputationModelDataBinding;
16
+ /**
17
+ * A description about the computation model.
18
+ * @minLength `1`
19
+ * @maxLength `2048`
20
+ * @pattern `^[a-zA-Z0-9 _\-#$*!@]+$`
21
+ */
22
+ ComputationModelDescription?: string;
23
+ /**
24
+ * The name of the computation model.
25
+ * @minLength `1`
26
+ * @maxLength `256`
27
+ * @pattern `^[a-zA-Z0-9 _\-#$*!@]+$`
28
+ */
29
+ ComputationModelName: string;
30
+ /**
31
+ * An array of key-value pairs to apply to this resource.
32
+ */
33
+ Tags?: Tag[];
34
+ };
35
+ /**
36
+ * Attribute type definition for `AWS::IoTSiteWise::ComputationModel`.
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html#aws-resource-iotsitewise-computationmodel-return-values}
38
+ */
39
+ export type IoTSiteWiseComputationModelAttributes = {
40
+ /**
41
+ * The ARN of the computation model.
42
+ * @minLength `1`
43
+ * @maxLength `1600`
44
+ * @pattern `^arn:aws(-cn|-us-gov)?:[a-zA-Z0-9-:/_\.]+$`
45
+ */
46
+ ComputationModelArn: string;
47
+ /**
48
+ * The ID of the computation model.
49
+ * @minLength `36`
50
+ * @maxLength `36`
51
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
52
+ */
53
+ ComputationModelId: string;
54
+ };
55
+ /**
56
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.AnomalyDetectionComputationModelConfiguration`.
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-anomalydetectioncomputationmodelconfiguration.html}
58
+ */
59
+ export type AnomalyDetectionComputationModelConfiguration = {
60
+ /**
61
+ * Input properties for anomaly detection.
62
+ * @minLength `4`
63
+ * @maxLength `67`
64
+ * @pattern `^\$\{[a-z][a-z0-9_]*\}$`
65
+ */
66
+ InputProperties: string;
67
+ /**
68
+ * Result property for anomaly detection.
69
+ * @minLength `4`
70
+ * @maxLength `67`
71
+ * @pattern `^\$\{[a-z][a-z0-9_]*\}$`
72
+ */
73
+ ResultProperty: string;
74
+ };
75
+ /**
76
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.AssetModelPropertyBindingValue`.
77
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetmodelpropertybindingvalue.html}
78
+ */
79
+ export type AssetModelPropertyBindingValue = {
80
+ /**
81
+ * The ID of the asset model.
82
+ * @minLength `36`
83
+ * @maxLength `36`
84
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
85
+ */
86
+ AssetModelId: string;
87
+ /**
88
+ * The ID of the asset model property.
89
+ * @minLength `36`
90
+ * @maxLength `36`
91
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
92
+ */
93
+ PropertyId: string;
94
+ };
95
+ /**
96
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.AssetPropertyBindingValue`.
97
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetpropertybindingvalue.html}
98
+ */
99
+ export type AssetPropertyBindingValue = {
100
+ /**
101
+ * The ID of the asset.
102
+ * @minLength `36`
103
+ * @maxLength `36`
104
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
105
+ */
106
+ AssetId: string;
107
+ /**
108
+ * The ID of the asset property.
109
+ * @minLength `36`
110
+ * @maxLength `36`
111
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
112
+ */
113
+ PropertyId: string;
114
+ };
115
+ /**
116
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.ComputationModelConfiguration`.
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodelconfiguration.html}
118
+ */
119
+ export type ComputationModelConfiguration = {
120
+ /**
121
+ * Contains configuration for anomaly detection computation model.
122
+ */
123
+ AnomalyDetection?: AnomalyDetectionComputationModelConfiguration;
124
+ };
125
+ /**
126
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.ComputationModelDataBinding`.
127
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabinding.html}
128
+ */
129
+ export type ComputationModelDataBinding = Record<string, ComputationModelDataBindingValue>;
130
+ /**
131
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.ComputationModelDataBindingValue`.
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html}
133
+ */
134
+ export type ComputationModelDataBindingValue = {
135
+ /**
136
+ * Defines an asset model property binding.
137
+ */
138
+ AssetModelProperty?: AssetModelPropertyBindingValue;
139
+ /**
140
+ * Defines an asset property binding.
141
+ */
142
+ AssetProperty?: AssetPropertyBindingValue;
143
+ /**
144
+ * Defines a list of computation model binding values.
145
+ */
146
+ List?: ComputationModelDataBindingValue[];
147
+ };
148
+ /**
149
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.Tag`.
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-tag.html}
151
+ */
152
+ export type Tag = {
153
+ /**
154
+ * @minLength `1`
155
+ * @maxLength `128`
156
+ */
157
+ Key: string;
158
+ /**
159
+ * @minLength `0`
160
+ * @maxLength `256`
161
+ */
162
+ Value: string;
163
+ };
164
+ /**
165
+ * Resource schema for AWS::IoTSiteWise::ComputationModel.
166
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html}
167
+ */
168
+ export declare class IoTSiteWiseComputationModel extends $Resource<"AWS::IoTSiteWise::ComputationModel", IoTSiteWiseComputationModelProperties, IoTSiteWiseComputationModelAttributes> {
169
+ static readonly Type = "AWS::IoTSiteWise::ComputationModel";
170
+ constructor(logicalId: string, properties: IoTSiteWiseComputationModelProperties, options?: $ResourceOptions);
171
+ }
172
+ //# sourceMappingURL=AWS-IoTSiteWise-ComputationModel.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource schema for AWS::IoTSiteWise::ComputationModel.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html}
5
+ */
6
+ export class IoTSiteWiseComputationModel extends $Resource {
7
+ static Type = "AWS::IoTSiteWise::ComputationModel";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, IoTSiteWiseComputationModel.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-IoTSiteWise-ComputationModel.js.map
@@ -22,6 +22,10 @@ export type LogsDestinationProperties = {
22
22
  * @minLength `1`
23
23
  */
24
24
  RoleArn: string;
25
+ /**
26
+ * An array of key-value pairs to apply to this resource.
27
+ */
28
+ Tags?: Tag[];
25
29
  /**
26
30
  * The ARN of the physical target where the log events are delivered (for example, a Kinesis stream)
27
31
  * @minLength `1`
@@ -35,6 +39,25 @@ export type LogsDestinationProperties = {
35
39
  export type LogsDestinationAttributes = {
36
40
  Arn: string;
37
41
  };
42
+ /**
43
+ * Type definition for `AWS::Logs::Destination.Tag`.
44
+ * A key-value pair to associate with a resource.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-destination-tag.html}
46
+ */
47
+ export type Tag = {
48
+ /**
49
+ * 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 @.
50
+ * @minLength `1`
51
+ * @maxLength `128`
52
+ */
53
+ Key: string;
54
+ /**
55
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, - and @.
56
+ * @minLength `0`
57
+ * @maxLength `256`
58
+ */
59
+ Value: string;
60
+ };
38
61
  /**
39
62
  * The AWS::Logs::Destination resource specifies a CloudWatch Logs destination. A destination encapsulates a physical resource (such as an Amazon Kinesis data stream) and enables you to subscribe that resource to a stream of log events.
40
63
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html}
@@ -44,6 +44,7 @@ export type LogsLogGroupProperties = {
44
44
  * @pattern `^[.\-_/#A-Za-z0-9]{1,512}\Z`
45
45
  */
46
46
  LogGroupName?: string;
47
+ ResourcePolicyDocument?: Record<string, any>;
47
48
  /**
48
49
  * The number of days to retain the log events in the specified log group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1096, 1827, 2192, 2557, 2922, 3288, and 3653.
49
50
  To set a log group so that its log events do not expire, use [DeleteRetentionPolicy](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteRetentionPolicy.html).
@@ -32,6 +32,10 @@ export type S3AccessPointProperties = {
32
32
  * The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
33
33
  */
34
34
  PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
35
+ /**
36
+ * An arbitrary set of tags (key-value pairs) for this S3 Access Point.
37
+ */
38
+ Tags?: Tag[];
35
39
  /**
36
40
  * If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC).
37
41
  */
@@ -85,6 +89,21 @@ export type PublicAccessBlockConfiguration = {
85
89
  */
86
90
  RestrictPublicBuckets?: boolean;
87
91
  };
92
+ /**
93
+ * Type definition for `AWS::S3::AccessPoint.Tag`.
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-tag.html}
95
+ */
96
+ export type Tag = {
97
+ /**
98
+ * @minLength `1`
99
+ * @maxLength `128`
100
+ */
101
+ Key: string;
102
+ /**
103
+ * @maxLength `256`
104
+ */
105
+ Value: string;
106
+ };
88
107
  /**
89
108
  * Type definition for `AWS::S3::AccessPoint.VpcConfiguration`.
90
109
  * The Virtual Private Cloud (VPC) configuration for a bucket access point.