@awboost/cfn-resource-types 0.1.344 → 0.1.346

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.
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-insightrule.html}
6
6
  */
7
7
  export type CloudWatchInsightRuleProperties = {
8
+ ApplyOnTransformedLogs?: boolean;
8
9
  RuleBody: string;
9
10
  RuleName: string;
10
11
  RuleState: string;
@@ -79,6 +79,14 @@ export type CloudWatchLogsConfig = {
79
79
  Status: string;
80
80
  StreamName?: string;
81
81
  };
82
+ /**
83
+ * Type definition for `AWS::CodeBuild::Project.DockerServer`.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-dockerserver.html}
85
+ */
86
+ export type DockerServer = {
87
+ ComputeType: string;
88
+ SecurityGroupIds?: string[];
89
+ };
82
90
  /**
83
91
  * Type definition for `AWS::CodeBuild::Project.Environment`.
84
92
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html}
@@ -86,6 +94,7 @@ export type CloudWatchLogsConfig = {
86
94
  export type Environment = {
87
95
  Certificate?: string;
88
96
  ComputeType: string;
97
+ DockerServer?: DockerServer;
89
98
  EnvironmentVariables?: EnvironmentVariable[];
90
99
  Fleet?: ProjectFleet;
91
100
  Image: string;
@@ -242,6 +242,8 @@ export type KeyValue = {
242
242
  */
243
243
  export type ManagedScalingPolicy = {
244
244
  ComputeLimits?: ComputeLimits;
245
+ ScalingStrategy?: string;
246
+ UtilizationPerformanceIndex?: number;
245
247
  };
246
248
  /**
247
249
  * Type definition for `AWS::EMR::Cluster.MetricDimension`.
@@ -74,7 +74,7 @@ export type IdNamespaceIdMappingWorkflowProperties = {
74
74
  */
75
75
  export type IdNamespaceInputSource = {
76
76
  /**
77
- * @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(idnamespace/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):glue:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(table/[a-zA-Z_0-9-]{1,255}/[a-zA-Z_0-9-]{1,255})$`
77
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn):entityresolution:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(matchingworkflow/[a-zA-Z_0-9-]{1,255})$|^arn:(aws|aws-us-gov|aws-cn):glue:[a-z]{2}-[a-z]{1,10}-[0-9]:[0-9]{12}:(table/[a-zA-Z_0-9-]{1,255}/[a-zA-Z_0-9-]{1,255})$`
78
78
  */
79
79
  InputSourceARN: string;
80
80
  /**
@@ -47,6 +47,14 @@ export type ClientConfigurations = {
47
47
  Clients?: string;
48
48
  Options?: string[];
49
49
  };
50
+ /**
51
+ * Type definition for `AWS::FSx::FileSystem.DataReadCacheConfiguration`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-datareadcacheconfiguration.html}
53
+ */
54
+ export type DataReadCacheConfiguration = {
55
+ SizeGiB?: number;
56
+ SizingMode?: string;
57
+ };
50
58
  /**
51
59
  * Type definition for `AWS::FSx::FileSystem.DiskIopsConfiguration`.
52
60
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-filesystem-diskiopsconfiguration.html}
@@ -65,6 +73,7 @@ export type LustreConfiguration = {
65
73
  CopyTagsToBackups?: boolean;
66
74
  DailyAutomaticBackupStartTime?: string;
67
75
  DataCompressionType?: string;
76
+ DataReadCacheConfiguration?: DataReadCacheConfiguration;
68
77
  DeploymentType?: string;
69
78
  DriveCacheType?: string;
70
79
  EfaEnabled?: boolean;
@@ -73,6 +82,7 @@ export type LustreConfiguration = {
73
82
  ImportedFileChunkSize?: number;
74
83
  MetadataConfiguration?: MetadataConfiguration;
75
84
  PerUnitStorageThroughput?: number;
85
+ ThroughputCapacity?: number;
76
86
  WeeklyMaintenanceStartTime?: string;
77
87
  };
78
88
  /**
@@ -22,7 +22,7 @@ export type IAMRoleProperties = {
22
22
  ManagedPolicyArns?: string[];
23
23
  /**
24
24
  * The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours.
25
- Anyone who assumes the role from the CLI or API can use the ``DurationSeconds`` API parameter or the ``duration-seconds`` CLI parameter to request a longer session. The ``MaxSessionDuration`` setting determines the maximum duration that can be requested using the ``DurationSeconds`` parameter. If users don't specify a value for the ``DurationSeconds`` parameter, their security credentials are valid for one hour by default. This applies when you use the ``AssumeRole*`` API operations or the ``assume-role*`` CLI operations but does not apply when you use those operations to create a console URL. For more information, see [Using IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html) in the *IAM User Guide*.
25
+ Anyone who assumes the role from the CLI or API can use the ``DurationSeconds`` API parameter or the ``duration-seconds``CLI parameter to request a longer session. The ``MaxSessionDuration`` setting determines the maximum duration that can be requested using the ``DurationSeconds`` parameter. If users don't specify a value for the ``DurationSeconds`` parameter, their security credentials are valid for one hour by default. This applies when you use the ``AssumeRole*`` API operations or the ``assume-role*``CLI operations but does not apply when you use those operations to create a console URL. For more information, see [Using IAM roles](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use.html) in the *IAM User Guide*.
26
26
  */
27
27
  MaxSessionDuration?: number;
28
28
  /**
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type IoTThingPrincipalAttachmentProperties = {
8
8
  Principal: string;
9
9
  ThingName: string;
10
+ ThingPrincipalType?: string;
10
11
  };
11
12
  /**
12
13
  * Attribute type definition for `AWS::IoT::ThingPrincipalAttachment`.
@@ -0,0 +1,114 @@
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::Lightsail::InstanceSnapshot
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html}
6
+ */
7
+ export type LightsailInstanceSnapshotProperties = {
8
+ /**
9
+ * The instance from which the snapshot was created.
10
+ */
11
+ InstanceName: string;
12
+ /**
13
+ * The name of the snapshot.
14
+ */
15
+ InstanceSnapshotName: string;
16
+ /**
17
+ * An array of key-value pairs to apply to this resource.
18
+ */
19
+ Tags?: Tag[];
20
+ };
21
+ /**
22
+ * Attribute type definition for `AWS::Lightsail::InstanceSnapshot`.
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html#aws-resource-lightsail-instancesnapshot-return-values}
24
+ */
25
+ export type LightsailInstanceSnapshotAttributes = {
26
+ /**
27
+ * The Amazon Resource Name (ARN) of the snapshot.
28
+ */
29
+ Arn: string;
30
+ /**
31
+ * The Amazon Resource Name (ARN) of the instance from which the snapshot was created.
32
+ */
33
+ FromInstanceArn: string;
34
+ /**
35
+ * The instance from which the snapshot was created.
36
+ */
37
+ FromInstanceName: string;
38
+ /**
39
+ * A Boolean value indicating whether the snapshot was created from an automatic snapshot.
40
+ */
41
+ IsFromAutoSnapshot: boolean;
42
+ /**
43
+ * The region name and Availability Zone where you created the snapshot.
44
+ */
45
+ Location: {
46
+ /**
47
+ * The Availability Zone. Follows the format us-east-2a (case-sensitive).
48
+ */
49
+ AvailabilityZone: string;
50
+ /**
51
+ * The AWS Region name.
52
+ */
53
+ RegionName: string;
54
+ };
55
+ /**
56
+ * The type of resource (usually InstanceSnapshot).
57
+ */
58
+ ResourceType: string;
59
+ /**
60
+ * The size in GB of the SSD
61
+ */
62
+ SizeInGb: number;
63
+ /**
64
+ * The state the snapshot is in.
65
+ */
66
+ State: string;
67
+ /**
68
+ * Support code to help identify any issues
69
+ */
70
+ SupportCode: string;
71
+ };
72
+ /**
73
+ * Type definition for `AWS::Lightsail::InstanceSnapshot.Location`.
74
+ * The region name and Availability Zone where you created the snapshot.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-instancesnapshot-location.html}
76
+ */
77
+ export type Location = {
78
+ /**
79
+ * The Availability Zone. Follows the format us-east-2a (case-sensitive).
80
+ */
81
+ AvailabilityZone?: string;
82
+ /**
83
+ * The AWS Region name.
84
+ */
85
+ RegionName?: string;
86
+ };
87
+ /**
88
+ * Type definition for `AWS::Lightsail::InstanceSnapshot.Tag`.
89
+ * A key-value pair to associate with a resource.
90
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-instancesnapshot-tag.html}
91
+ */
92
+ export type Tag = {
93
+ /**
94
+ * 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 -.
95
+ * @minLength `1`
96
+ * @maxLength `128`
97
+ */
98
+ Key: string;
99
+ /**
100
+ * 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 -.
101
+ * @minLength `0`
102
+ * @maxLength `256`
103
+ */
104
+ Value?: string;
105
+ };
106
+ /**
107
+ * Resource Type definition for AWS::Lightsail::InstanceSnapshot
108
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html}
109
+ */
110
+ export declare class LightsailInstanceSnapshot extends $Resource<"AWS::Lightsail::InstanceSnapshot", LightsailInstanceSnapshotProperties, LightsailInstanceSnapshotAttributes> {
111
+ static readonly Type = "AWS::Lightsail::InstanceSnapshot";
112
+ constructor(logicalId: string, properties: LightsailInstanceSnapshotProperties, options?: $ResourceOptions);
113
+ }
114
+ //# sourceMappingURL=AWS-Lightsail-InstanceSnapshot.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::Lightsail::InstanceSnapshot
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-instancesnapshot.html}
5
+ */
6
+ export class LightsailInstanceSnapshot extends $Resource {
7
+ static Type = "AWS::Lightsail::InstanceSnapshot";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, LightsailInstanceSnapshot.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Lightsail-InstanceSnapshot.js.map
@@ -287,6 +287,7 @@ export type Av1ColorSpaceSettings = {
287
287
  */
288
288
  export type Av1Settings = {
289
289
  AfdSignaling?: string;
290
+ Bitrate?: number;
290
291
  BufSize?: number;
291
292
  ColorSpaceSettings?: Av1ColorSpaceSettings;
292
293
  FixedAfd?: string;
@@ -301,6 +302,7 @@ export type Av1Settings = {
301
302
  ParDenominator?: number;
302
303
  ParNumerator?: number;
303
304
  QvbrQualityLevel?: number;
305
+ RateControlMode?: string;
304
306
  SceneChangeDetect?: string;
305
307
  TimecodeBurninSettings?: TimecodeBurninSettings;
306
308
  };
@@ -459,11 +461,20 @@ export type CdiInputSpecification = {
459
461
  export type ChannelEngineVersionRequest = {
460
462
  Version?: string;
461
463
  };
464
+ /**
465
+ * Type definition for `AWS::MediaLive::Channel.CmafIngestCaptionLanguageMapping`.
466
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestcaptionlanguagemapping.html}
467
+ */
468
+ export type CmafIngestCaptionLanguageMapping = {
469
+ CaptionChannel?: number;
470
+ LanguageCode?: string;
471
+ };
462
472
  /**
463
473
  * Type definition for `AWS::MediaLive::Channel.CmafIngestGroupSettings`.
464
474
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html}
465
475
  */
466
476
  export type CmafIngestGroupSettings = {
477
+ CaptionLanguageMappings?: CmafIngestCaptionLanguageMapping[];
467
478
  Destination?: OutputLocationRef;
468
479
  Id3Behavior?: string;
469
480
  Id3NameModifier?: string;
@@ -476,6 +487,9 @@ export type CmafIngestGroupSettings = {
476
487
  SegmentLength?: number;
477
488
  SegmentLengthUnits?: string;
478
489
  SendDelayMs?: number;
490
+ TimedMetadataId3Frame?: string;
491
+ TimedMetadataId3Period?: number;
492
+ TimedMetadataPassthrough?: string;
479
493
  };
480
494
  /**
481
495
  * Type definition for `AWS::MediaLive::Channel.CmafIngestOutputSettings`.
@@ -612,6 +626,8 @@ export type Eac3Settings = {
612
626
  */
613
627
  export type EbuTtDDestinationSettings = {
614
628
  CopyrightHolder?: string;
629
+ DefaultFontSize?: number;
630
+ DefaultLineHeight?: number;
615
631
  FillLineGap?: string;
616
632
  FontFamily?: string;
617
633
  StyleControl?: string;
@@ -1449,6 +1465,7 @@ export type Output = {
1449
1465
  */
1450
1466
  export type OutputDestination = {
1451
1467
  Id?: string;
1468
+ LogicalInterfaceNames?: string[];
1452
1469
  MediaPackageSettings?: MediaPackageOutputDestinationSettings[];
1453
1470
  MultiplexSettings?: MultiplexProgramChannelDestinationSettings;
1454
1471
  Settings?: OutputDestinationSettings[];
@@ -13,6 +13,8 @@ export type MediaLiveInputProperties = {
13
13
  MulticastSettings?: MulticastSettingsCreateRequest;
14
14
  Name?: string;
15
15
  RoleArn?: string;
16
+ SdiSources?: string[];
17
+ Smpte2110ReceiverGroupSettings?: Smpte2110ReceiverGroupSettings;
16
18
  Sources?: InputSourceRequest[];
17
19
  SrtSettings?: SrtSettingsRequest;
18
20
  Tags?: Record<string, any>;
@@ -52,6 +54,14 @@ export type InputRequestDestinationRoute = {
52
54
  Cidr?: string;
53
55
  Gateway?: string;
54
56
  };
57
+ /**
58
+ * Type definition for `AWS::MediaLive::Input.InputSdpLocation`.
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsdplocation.html}
60
+ */
61
+ export type InputSdpLocation = {
62
+ MediaIndex?: number;
63
+ SdpUrl?: string;
64
+ };
55
65
  /**
56
66
  * Type definition for `AWS::MediaLive::Input.InputSourceRequest`.
57
67
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-inputsourcerequest.html}
@@ -91,6 +101,29 @@ export type MulticastSourceCreateRequest = {
91
101
  SourceIp?: string;
92
102
  Url?: string;
93
103
  };
104
+ /**
105
+ * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroup`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroup.html}
107
+ */
108
+ export type Smpte2110ReceiverGroup = {
109
+ SdpSettings?: Smpte2110ReceiverGroupSdpSettings;
110
+ };
111
+ /**
112
+ * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroupSdpSettings`.
113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsdpsettings.html}
114
+ */
115
+ export type Smpte2110ReceiverGroupSdpSettings = {
116
+ AncillarySdps?: InputSdpLocation[];
117
+ AudioSdps?: InputSdpLocation[];
118
+ VideoSdp?: InputSdpLocation;
119
+ };
120
+ /**
121
+ * Type definition for `AWS::MediaLive::Input.Smpte2110ReceiverGroupSettings`.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-smpte2110receivergroupsettings.html}
123
+ */
124
+ export type Smpte2110ReceiverGroupSettings = {
125
+ Smpte2110ReceiverGroups?: Smpte2110ReceiverGroup[];
126
+ };
94
127
  /**
95
128
  * Type definition for `AWS::MediaLive::Input.SrtCallerDecryptionRequest`.
96
129
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-srtcallerdecryptionrequest.html}
@@ -0,0 +1,120 @@
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
+ * The AWS::S3Express::AccessPoint resource is an Amazon S3 resource type that you can use to access buckets.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-accesspoint.html}
6
+ */
7
+ export type S3ExpressAccessPointProperties = {
8
+ /**
9
+ * The name of the bucket that you want to associate this Access Point with.
10
+ * @minLength `3`
11
+ * @maxLength `255`
12
+ */
13
+ Bucket: string;
14
+ /**
15
+ * The AWS account ID associated with the S3 bucket associated with this access point.
16
+ * @maxLength `64`
17
+ * @pattern `^\d{12}$`
18
+ */
19
+ BucketAccountId?: string;
20
+ /**
21
+ * The name you want to assign to this Access Point. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the access point name. For directory buckets, the access point name must consist of a base name that you provide and suffix that includes the ZoneID (AWS Availability Zone or Local Zone) of your bucket location, followed by --xa-s3.
22
+ * @minLength `3`
23
+ * @maxLength `50`
24
+ * @pattern `^[a-z0-9]([a-z0-9\-]*[a-z0-9])?$`
25
+ */
26
+ Name?: string;
27
+ /**
28
+ * The Access Point Policy you want to apply to this access point.
29
+ */
30
+ Policy?: Record<string, any>;
31
+ /**
32
+ * The PublicAccessBlock configuration that you want to apply to this Access Point.
33
+ */
34
+ PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration;
35
+ /**
36
+ * For directory buckets, you can filter access control to specific prefixes, API operations, or a combination of both.
37
+ */
38
+ Scope?: Scope;
39
+ /**
40
+ * If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC).
41
+ */
42
+ VpcConfiguration?: VpcConfiguration;
43
+ };
44
+ /**
45
+ * Attribute type definition for `AWS::S3Express::AccessPoint`.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-accesspoint.html#aws-resource-s3express-accesspoint-return-values}
47
+ */
48
+ export type S3ExpressAccessPointAttributes = {
49
+ /**
50
+ * The Amazon Resource Name (ARN) of the specified accesspoint.
51
+ */
52
+ Arn: string;
53
+ /**
54
+ * Indicates whether this Access Point allows access from the public Internet. If VpcConfiguration is specified for this Access Point, then NetworkOrigin is VPC, and the Access Point doesn't allow access from the public Internet. Otherwise, NetworkOrigin is Internet, and the Access Point allows access from the public Internet, subject to the Access Point and bucket access policies.
55
+ */
56
+ NetworkOrigin: "Internet" | "VPC";
57
+ };
58
+ /**
59
+ * Type definition for `AWS::S3Express::AccessPoint.PublicAccessBlockConfiguration`.
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-accesspoint-publicaccessblockconfiguration.html}
61
+ */
62
+ export type PublicAccessBlockConfiguration = {
63
+ /**
64
+ * Specifies whether Amazon S3 should block public access control lists (ACLs) for buckets in this account. Setting this element to TRUE causes the following behavior:
65
+ - PUT Bucket acl and PUT Object acl calls fail if the specified ACL is public.
66
+ - PUT Object calls fail if the request includes a public ACL.
67
+ . - PUT Bucket calls fail if the request includes a public ACL.
68
+ Enabling this setting doesn't affect existing policies or ACLs.
69
+ */
70
+ BlockPublicAcls?: boolean;
71
+ /**
72
+ * Specifies whether Amazon S3 should block public bucket policies for buckets in this account. Setting this element to TRUE causes Amazon S3 to reject calls to PUT Bucket policy if the specified bucket policy allows public access. Enabling this setting doesn't affect existing bucket policies.
73
+ */
74
+ BlockPublicPolicy?: boolean;
75
+ /**
76
+ * Specifies whether Amazon S3 should ignore public ACLs for buckets in this account. Setting this element to TRUE causes Amazon S3 to ignore all public ACLs on buckets in this account and any objects that they contain. Enabling this setting doesn't affect the persistence of any existing ACLs and doesn't prevent new public ACLs from being set.
77
+ */
78
+ IgnorePublicAcls?: boolean;
79
+ /**
80
+ * Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS services and authorized users within this account if the bucket has a public policy.
81
+ Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.
82
+ */
83
+ RestrictPublicBuckets?: boolean;
84
+ };
85
+ /**
86
+ * Type definition for `AWS::S3Express::AccessPoint.Scope`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-accesspoint-scope.html}
88
+ */
89
+ export type Scope = {
90
+ /**
91
+ * You can include one or more API operations as permissions
92
+ */
93
+ Permissions?: ("GetObject" | "GetObjectAttributes" | "ListMultipartUploadParts" | "ListBucket" | "ListBucketMultipartUploads" | "PutObject" | "DeleteObject" | "AbortMultipartUpload")[];
94
+ /**
95
+ * You can specify any amount of prefixes, but the total length of characters of all prefixes must be less than 256 bytes in size.
96
+ */
97
+ Prefixes?: string[];
98
+ };
99
+ /**
100
+ * Type definition for `AWS::S3Express::AccessPoint.VpcConfiguration`.
101
+ * The Virtual Private Cloud (VPC) configuration for a bucket access point.
102
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-accesspoint-vpcconfiguration.html}
103
+ */
104
+ export type VpcConfiguration = {
105
+ /**
106
+ * If this field is specified, this access point will only allow connections from the specified VPC ID.
107
+ * @minLength `1`
108
+ * @maxLength `1024`
109
+ */
110
+ VpcId?: string;
111
+ };
112
+ /**
113
+ * The AWS::S3Express::AccessPoint resource is an Amazon S3 resource type that you can use to access buckets.
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-accesspoint.html}
115
+ */
116
+ export declare class S3ExpressAccessPoint extends $Resource<"AWS::S3Express::AccessPoint", S3ExpressAccessPointProperties, S3ExpressAccessPointAttributes> {
117
+ static readonly Type = "AWS::S3Express::AccessPoint";
118
+ constructor(logicalId: string, properties: S3ExpressAccessPointProperties, options?: $ResourceOptions);
119
+ }
120
+ //# sourceMappingURL=AWS-S3Express-AccessPoint.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * The AWS::S3Express::AccessPoint resource is an Amazon S3 resource type that you can use to access buckets.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-accesspoint.html}
5
+ */
6
+ export class S3ExpressAccessPoint extends $Resource {
7
+ static Type = "AWS::S3Express::AccessPoint";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, S3ExpressAccessPoint.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-S3Express-AccessPoint.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.344",
3
+ "version": "0.1.346",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },