@awboost/cfntypes 0.100.6 → 0.100.8
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/resources.generated.d.ts +263 -2
- package/lib/resources.generated.js +14 -2
- package/package.json +1 -1
@@ -22360,7 +22360,7 @@ export type ConnectRuleRuleTriggerEventSource = {
|
|
22360
22360
|
/**
|
22361
22361
|
* The name of event source.
|
22362
22362
|
*/
|
22363
|
-
EventSourceName: "OnContactEvaluationSubmit" | "OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnMetricDataUpdate";
|
22363
|
+
EventSourceName: "OnContactEvaluationSubmit" | "OnPostCallAnalysisAvailable" | "OnRealTimeCallAnalysisAvailable" | "OnRealTimeChatAnalysisAvailable" | "OnPostChatAnalysisAvailable" | "OnZendeskTicketCreate" | "OnZendeskTicketStatusUpdate" | "OnSalesforceCaseCreate" | "OnMetricDataUpdate";
|
22364
22364
|
/**
|
22365
22365
|
* The Amazon Resource Name (ARN) for the AppIntegration association.
|
22366
22366
|
* @pattern `^$|arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*integration-association/[-a-zA-Z0-9]*$`
|
@@ -33883,6 +33883,7 @@ export type EC2TransitGatewayProps = {
|
|
33883
33883
|
DnsSupport?: string;
|
33884
33884
|
MulticastSupport?: string;
|
33885
33885
|
PropagationDefaultRouteTableId?: string;
|
33886
|
+
SecurityGroupReferencingSupport?: string;
|
33886
33887
|
Tags?: EC2TransitGatewayTag[];
|
33887
33888
|
TransitGatewayCidrBlocks?: string[];
|
33888
33889
|
VpnEcmpSupport?: string;
|
@@ -33893,6 +33894,7 @@ export type EC2TransitGatewayProps = {
|
|
33893
33894
|
*/
|
33894
33895
|
export type EC2TransitGatewayAttributes = {
|
33895
33896
|
Id: string;
|
33897
|
+
TransitGatewayArn: string;
|
33896
33898
|
};
|
33897
33899
|
/**
|
33898
33900
|
* Type definition for `AWS::EC2::TransitGateway.Tag`.
|
@@ -33923,6 +33925,10 @@ export type EC2TransitGatewayAttachmentProps = {
|
|
33923
33925
|
* Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
|
33924
33926
|
*/
|
33925
33927
|
Ipv6Support?: string;
|
33928
|
+
/**
|
33929
|
+
* Indicates whether to enable Security Group referencing support for Vpc Attachment. Valid Values: enable | disable
|
33930
|
+
*/
|
33931
|
+
SecurityGroupReferencingSupport?: string;
|
33926
33932
|
};
|
33927
33933
|
SubnetIds: string[];
|
33928
33934
|
Tags?: EC2TransitGatewayAttachmentTag[];
|
@@ -34406,6 +34412,10 @@ export type EC2TransitGatewayVpcAttachmentProps = {
|
|
34406
34412
|
* Indicates whether to enable Ipv6 Support for Vpc Attachment. Valid Values: enable | disable
|
34407
34413
|
*/
|
34408
34414
|
Ipv6Support?: string;
|
34415
|
+
/**
|
34416
|
+
* Indicates whether to enable Security Group referencing support for Vpc Attachment. Valid values: enable | disable
|
34417
|
+
*/
|
34418
|
+
SecurityGroupReferencingSupport?: string;
|
34409
34419
|
};
|
34410
34420
|
RemoveSubnetIds?: string[];
|
34411
34421
|
SubnetIds: string[];
|
@@ -57928,6 +57938,10 @@ export type IoTTwinMakerComponentTypeProps = {
|
|
57928
57938
|
* @pattern `[a-zA-Z_\.\-0-9:]+`
|
57929
57939
|
*/
|
57930
57940
|
ComponentTypeId: string;
|
57941
|
+
/**
|
57942
|
+
* An map of the composite component types in the component type. Each composite component type's key must be unique to this map.
|
57943
|
+
*/
|
57944
|
+
CompositeComponentTypes?: Record<string, IoTTwinMakerComponentTypeCompositeComponentType>;
|
57931
57945
|
/**
|
57932
57946
|
* The description of the component type.
|
57933
57947
|
* @maxLength `512`
|
@@ -58000,6 +58014,20 @@ export type IoTTwinMakerComponentTypeAttributes = {
|
|
58000
58014
|
*/
|
58001
58015
|
UpdateDateTime: string;
|
58002
58016
|
};
|
58017
|
+
/**
|
58018
|
+
* Type definition for `AWS::IoTTwinMaker::ComponentType.CompositeComponentType`.
|
58019
|
+
* An object that sets information about a composite component type.
|
58020
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-componenttype-compositecomponenttype.html}
|
58021
|
+
*/
|
58022
|
+
export type IoTTwinMakerComponentTypeCompositeComponentType = {
|
58023
|
+
/**
|
58024
|
+
* The id of the composite component type.
|
58025
|
+
* @minLength `1`
|
58026
|
+
* @maxLength `256`
|
58027
|
+
* @pattern `[a-zA-Z_\.\-0-9:]+`
|
58028
|
+
*/
|
58029
|
+
ComponentTypeId?: string;
|
58030
|
+
};
|
58003
58031
|
/**
|
58004
58032
|
* Type definition for `AWS::IoTTwinMaker::ComponentType.DataConnector`.
|
58005
58033
|
* The data connector.
|
@@ -58240,6 +58268,10 @@ export type IoTTwinMakerEntityProps = {
|
|
58240
58268
|
* A map that sets information about a component type.
|
58241
58269
|
*/
|
58242
58270
|
Components?: Record<string, IoTTwinMakerEntityComponent>;
|
58271
|
+
/**
|
58272
|
+
* A map that sets information about a composite component.
|
58273
|
+
*/
|
58274
|
+
CompositeComponents?: Record<string, IoTTwinMakerEntityCompositeComponent>;
|
58243
58275
|
/**
|
58244
58276
|
* The description of the entity.
|
58245
58277
|
* @maxLength `512`
|
@@ -58350,6 +58382,50 @@ export type IoTTwinMakerEntityComponent = {
|
|
58350
58382
|
*/
|
58351
58383
|
Status?: IoTTwinMakerEntityStatus;
|
58352
58384
|
};
|
58385
|
+
/**
|
58386
|
+
* Type definition for `AWS::IoTTwinMaker::Entity.CompositeComponent`.
|
58387
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iottwinmaker-entity-compositecomponent.html}
|
58388
|
+
*/
|
58389
|
+
export type IoTTwinMakerEntityCompositeComponent = {
|
58390
|
+
/**
|
58391
|
+
* The name of the component.
|
58392
|
+
* @minLength `1`
|
58393
|
+
* @maxLength `256`
|
58394
|
+
* @pattern `[a-zA-Z_\-0-9]+`
|
58395
|
+
*/
|
58396
|
+
ComponentName?: string;
|
58397
|
+
/**
|
58398
|
+
* The path of the component.
|
58399
|
+
* @minLength `1`
|
58400
|
+
* @maxLength `256`
|
58401
|
+
* @pattern `[a-zA-Z_\-0-9/]+`
|
58402
|
+
*/
|
58403
|
+
ComponentPath?: string;
|
58404
|
+
/**
|
58405
|
+
* The ID of the component type.
|
58406
|
+
* @minLength `1`
|
58407
|
+
* @maxLength `256`
|
58408
|
+
* @pattern `[a-zA-Z_\-0-9]+`
|
58409
|
+
*/
|
58410
|
+
ComponentTypeId?: string;
|
58411
|
+
/**
|
58412
|
+
* The description of the component.
|
58413
|
+
* @maxLength `512`
|
58414
|
+
*/
|
58415
|
+
Description?: string;
|
58416
|
+
/**
|
58417
|
+
* An object that maps strings to the properties to set in the component type. Each string in the mapping must be unique to this object.
|
58418
|
+
*/
|
58419
|
+
Properties?: Record<string, IoTTwinMakerEntityProperty>;
|
58420
|
+
/**
|
58421
|
+
* An object that maps strings to the property groups to set in the component type. Each string in the mapping must be unique to this object.
|
58422
|
+
*/
|
58423
|
+
PropertyGroups?: Record<string, IoTTwinMakerEntityPropertyGroup>;
|
58424
|
+
/**
|
58425
|
+
* The current status of the component.
|
58426
|
+
*/
|
58427
|
+
Status?: IoTTwinMakerEntityStatus;
|
58428
|
+
};
|
58353
58429
|
/**
|
58354
58430
|
* Type definition for `AWS::IoTTwinMaker::Entity.DataType`.
|
58355
58431
|
* An object that specifies the data type of a property.
|
@@ -117158,6 +117234,157 @@ export type RUMAppMonitorTag = {
|
|
117158
117234
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rum-appmonitor-telemetry.html}
|
117159
117235
|
*/
|
117160
117236
|
export type RUMAppMonitorTelemetry = "errors" | "performance" | "http";
|
117237
|
+
/**
|
117238
|
+
* The AWS::S3::AccessGrant resource is an Amazon S3 resource type representing permissions to a specific S3 bucket or prefix hosted in an S3 Access Grants instance.
|
117239
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrant.html}
|
117240
|
+
*/
|
117241
|
+
export type S3AccessGrantProps = {
|
117242
|
+
/**
|
117243
|
+
* The configuration options of the grant location, which is the S3 path to the data to which you are granting access.
|
117244
|
+
*/
|
117245
|
+
AccessGrantsLocationConfiguration?: S3AccessGrantAccessGrantsLocationConfiguration;
|
117246
|
+
/**
|
117247
|
+
* The custom S3 location to be accessed by the grantee
|
117248
|
+
*/
|
117249
|
+
AccessGrantsLocationId: string;
|
117250
|
+
/**
|
117251
|
+
* The ARN of the application grantees will use to access the location
|
117252
|
+
*/
|
117253
|
+
ApplicationArn?: string;
|
117254
|
+
/**
|
117255
|
+
* The principal who will be granted permission to access S3.
|
117256
|
+
*/
|
117257
|
+
Grantee: S3AccessGrantGrantee;
|
117258
|
+
/**
|
117259
|
+
* The level of access to be afforded to the grantee
|
117260
|
+
*/
|
117261
|
+
Permission: "READ" | "WRITE" | "READWRITE";
|
117262
|
+
/**
|
117263
|
+
* The type of S3SubPrefix.
|
117264
|
+
*/
|
117265
|
+
S3PrefixType?: "Object";
|
117266
|
+
Tags?: S3AccessGrantTag[];
|
117267
|
+
};
|
117268
|
+
/**
|
117269
|
+
* Attribute type definition for `AWS::S3::AccessGrant`.
|
117270
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrant.html#aws-resource-s3-accessgrant-return-values}
|
117271
|
+
*/
|
117272
|
+
export type S3AccessGrantAttributes = {
|
117273
|
+
/**
|
117274
|
+
* The Amazon Resource Name (ARN) of the specified access grant.
|
117275
|
+
*/
|
117276
|
+
AccessGrantArn: string;
|
117277
|
+
/**
|
117278
|
+
* The ID assigned to this access grant.
|
117279
|
+
*/
|
117280
|
+
AccessGrantId: string;
|
117281
|
+
/**
|
117282
|
+
* The S3 path of the data to which you are granting access. It is a combination of the S3 path of the registered location and the subprefix.
|
117283
|
+
*/
|
117284
|
+
GrantScope: string;
|
117285
|
+
};
|
117286
|
+
/**
|
117287
|
+
* Type definition for `AWS::S3::AccessGrant.AccessGrantsLocationConfiguration`.
|
117288
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accessgrant-accessgrantslocationconfiguration.html}
|
117289
|
+
*/
|
117290
|
+
export type S3AccessGrantAccessGrantsLocationConfiguration = {
|
117291
|
+
/**
|
117292
|
+
* The S3 sub prefix of a registered location in your S3 Access Grants instance
|
117293
|
+
*/
|
117294
|
+
S3SubPrefix: string;
|
117295
|
+
};
|
117296
|
+
/**
|
117297
|
+
* Type definition for `AWS::S3::AccessGrant.Grantee`.
|
117298
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accessgrant-grantee.html}
|
117299
|
+
*/
|
117300
|
+
export type S3AccessGrantGrantee = {
|
117301
|
+
/**
|
117302
|
+
* The unique identifier of the Grantee
|
117303
|
+
*/
|
117304
|
+
GranteeIdentifier: string;
|
117305
|
+
/**
|
117306
|
+
* Configures the transfer acceleration state for an Amazon S3 bucket.
|
117307
|
+
*/
|
117308
|
+
GranteeType: "IAM" | "DIRECTORY_USER" | "DIRECTORY_GROUP";
|
117309
|
+
};
|
117310
|
+
/**
|
117311
|
+
* Type definition for `AWS::S3::AccessGrant.Tag`.
|
117312
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accessgrant-tag.html}
|
117313
|
+
*/
|
117314
|
+
export type S3AccessGrantTag = {
|
117315
|
+
Key: string;
|
117316
|
+
Value: string;
|
117317
|
+
};
|
117318
|
+
/**
|
117319
|
+
* The AWS::S3::AccessGrantsInstance resource is an Amazon S3 resource type that hosts Access Grants and their associated locations
|
117320
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrantsinstance.html}
|
117321
|
+
*/
|
117322
|
+
export type S3AccessGrantsInstanceProps = {
|
117323
|
+
/**
|
117324
|
+
* The Amazon Resource Name (ARN) of the specified AWS Identity Center.
|
117325
|
+
*/
|
117326
|
+
IdentityCenterArn?: string;
|
117327
|
+
Tags?: S3AccessGrantsInstanceTag[];
|
117328
|
+
};
|
117329
|
+
/**
|
117330
|
+
* Attribute type definition for `AWS::S3::AccessGrantsInstance`.
|
117331
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrantsinstance.html#aws-resource-s3-accessgrantsinstance-return-values}
|
117332
|
+
*/
|
117333
|
+
export type S3AccessGrantsInstanceAttributes = {
|
117334
|
+
/**
|
117335
|
+
* The Amazon Resource Name (ARN) of the specified Access Grants instance.
|
117336
|
+
*/
|
117337
|
+
AccessGrantsInstanceArn: string;
|
117338
|
+
/**
|
117339
|
+
* A unique identifier for the specified access grants instance.
|
117340
|
+
*/
|
117341
|
+
AccessGrantsInstanceId: string;
|
117342
|
+
};
|
117343
|
+
/**
|
117344
|
+
* Type definition for `AWS::S3::AccessGrantsInstance.Tag`.
|
117345
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accessgrantsinstance-tag.html}
|
117346
|
+
*/
|
117347
|
+
export type S3AccessGrantsInstanceTag = {
|
117348
|
+
Key: string;
|
117349
|
+
Value: string;
|
117350
|
+
};
|
117351
|
+
/**
|
117352
|
+
* The AWS::S3::AccessGrantsLocation resource is an Amazon S3 resource type hosted in an access grants instance which can be the target of S3 access grants.
|
117353
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrantslocation.html}
|
117354
|
+
*/
|
117355
|
+
export type S3AccessGrantsLocationProps = {
|
117356
|
+
/**
|
117357
|
+
* The Amazon Resource Name (ARN) of the access grant location's associated IAM role.
|
117358
|
+
*/
|
117359
|
+
IamRoleArn?: string;
|
117360
|
+
/**
|
117361
|
+
* Descriptor for where the location actually points
|
117362
|
+
*/
|
117363
|
+
LocationScope?: string;
|
117364
|
+
Tags?: S3AccessGrantsLocationTag[];
|
117365
|
+
};
|
117366
|
+
/**
|
117367
|
+
* Attribute type definition for `AWS::S3::AccessGrantsLocation`.
|
117368
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accessgrantslocation.html#aws-resource-s3-accessgrantslocation-return-values}
|
117369
|
+
*/
|
117370
|
+
export type S3AccessGrantsLocationAttributes = {
|
117371
|
+
/**
|
117372
|
+
* The Amazon Resource Name (ARN) of the specified Access Grants location.
|
117373
|
+
*/
|
117374
|
+
AccessGrantsLocationArn: string;
|
117375
|
+
/**
|
117376
|
+
* The unique identifier for the specified Access Grants location.
|
117377
|
+
*/
|
117378
|
+
AccessGrantsLocationId: string;
|
117379
|
+
};
|
117380
|
+
/**
|
117381
|
+
* Type definition for `AWS::S3::AccessGrantsLocation.Tag`.
|
117382
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accessgrantslocation-tag.html}
|
117383
|
+
*/
|
117384
|
+
export type S3AccessGrantsLocationTag = {
|
117385
|
+
Key: string;
|
117386
|
+
Value: string;
|
117387
|
+
};
|
117161
117388
|
/**
|
117162
117389
|
* The AWS::S3::AccessPoint resource is an Amazon S3 resource type that you can use to access buckets.
|
117163
117390
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-accesspoint.html}
|
@@ -117658,6 +117885,20 @@ export type S3BucketLoggingConfiguration = {
|
|
117658
117885
|
*/
|
117659
117886
|
DestinationBucketName?: string;
|
117660
117887
|
LogFilePrefix?: string;
|
117888
|
+
/**
|
117889
|
+
* Describes the key format for server access log file in the target bucket. You can choose between SimplePrefix and PartitionedPrefix.
|
117890
|
+
*/
|
117891
|
+
TargetObjectKeyFormat?: {
|
117892
|
+
/**
|
117893
|
+
* This format defaults the prefix to the given log file prefix for delivering server access log file.
|
117894
|
+
*/
|
117895
|
+
SimplePrefix: Record<string, any>;
|
117896
|
+
} | {
|
117897
|
+
/**
|
117898
|
+
* This format appends a time based prefix to the given log file prefix for delivering server access log file.
|
117899
|
+
*/
|
117900
|
+
PartitionedPrefix: S3BucketPartitionedPrefix;
|
117901
|
+
};
|
117661
117902
|
};
|
117662
117903
|
/**
|
117663
117904
|
* Type definition for `AWS::S3::Bucket.Metrics`.
|
@@ -117775,6 +118016,17 @@ export type S3BucketOwnershipControlsRule = {
|
|
117775
118016
|
*/
|
117776
118017
|
ObjectOwnership?: "ObjectWriter" | "BucketOwnerPreferred" | "BucketOwnerEnforced";
|
117777
118018
|
};
|
118019
|
+
/**
|
118020
|
+
* Type definition for `AWS::S3::Bucket.PartitionedPrefix`.
|
118021
|
+
* This format appends a time based prefix to the given log file prefix for delivering server access log file.
|
118022
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-partitionedprefix.html}
|
118023
|
+
*/
|
118024
|
+
export type S3BucketPartitionedPrefix = {
|
118025
|
+
/**
|
118026
|
+
* Date Source for creating a partitioned prefix. This can be event time or delivery time.
|
118027
|
+
*/
|
118028
|
+
PartitionDateSource?: "EventTime" | "DeliveryTime";
|
118029
|
+
};
|
117778
118030
|
/**
|
117779
118031
|
* Type definition for `AWS::S3::Bucket.PublicAccessBlockConfiguration`.
|
117780
118032
|
* Configuration that defines how Amazon S3 handles public access.
|
@@ -139220,6 +139472,9 @@ export interface ResourceTypes {
|
|
139220
139472
|
"AWS::Route53Resolver::ResolverRule": Route53ResolverResolverRuleProps;
|
139221
139473
|
"AWS::Route53Resolver::ResolverRuleAssociation": Route53ResolverResolverRuleAssociationProps;
|
139222
139474
|
"AWS::RUM::AppMonitor": RUMAppMonitorProps;
|
139475
|
+
"AWS::S3::AccessGrant": S3AccessGrantProps;
|
139476
|
+
"AWS::S3::AccessGrantsInstance": S3AccessGrantsInstanceProps;
|
139477
|
+
"AWS::S3::AccessGrantsLocation": S3AccessGrantsLocationProps;
|
139223
139478
|
"AWS::S3::AccessPoint": S3AccessPointProps;
|
139224
139479
|
"AWS::S3::Bucket": S3BucketProps;
|
139225
139480
|
"AWS::S3::BucketPolicy": S3BucketPolicyProps;
|
@@ -140277,6 +140532,9 @@ export interface AttributeTypes {
|
|
140277
140532
|
"AWS::Route53Resolver::ResolverRule": Route53ResolverResolverRuleAttributes;
|
140278
140533
|
"AWS::Route53Resolver::ResolverRuleAssociation": Route53ResolverResolverRuleAssociationAttributes;
|
140279
140534
|
"AWS::RUM::AppMonitor": RUMAppMonitorAttributes;
|
140535
|
+
"AWS::S3::AccessGrant": S3AccessGrantAttributes;
|
140536
|
+
"AWS::S3::AccessGrantsInstance": S3AccessGrantsInstanceAttributes;
|
140537
|
+
"AWS::S3::AccessGrantsLocation": S3AccessGrantsLocationAttributes;
|
140280
140538
|
"AWS::S3::AccessPoint": S3AccessPointAttributes;
|
140281
140539
|
"AWS::S3::Bucket": S3BucketAttributes;
|
140282
140540
|
"AWS::S3::MultiRegionAccessPoint": S3MultiRegionAccessPointAttributes;
|
@@ -141408,6 +141666,9 @@ export declare const ResourceType: {
|
|
141408
141666
|
readonly Route53ResolverResolverRuleProps: "AWS::Route53Resolver::ResolverRule";
|
141409
141667
|
readonly Route53ResolverResolverRuleAssociationProps: "AWS::Route53Resolver::ResolverRuleAssociation";
|
141410
141668
|
readonly RUMAppMonitorProps: "AWS::RUM::AppMonitor";
|
141669
|
+
readonly S3AccessGrantProps: "AWS::S3::AccessGrant";
|
141670
|
+
readonly S3AccessGrantsInstanceProps: "AWS::S3::AccessGrantsInstance";
|
141671
|
+
readonly S3AccessGrantsLocationProps: "AWS::S3::AccessGrantsLocation";
|
141411
141672
|
readonly S3AccessPointProps: "AWS::S3::AccessPoint";
|
141412
141673
|
readonly S3BucketProps: "AWS::S3::Bucket";
|
141413
141674
|
readonly S3BucketPolicyProps: "AWS::S3::BucketPolicy";
|
@@ -141608,4 +141869,4 @@ export type AttributesFor<T extends ResourceType> = T extends keyof AttributeTyp
|
|
141608
141869
|
export type ResourceAttributeMap = {
|
141609
141870
|
[K in ResourceType]: AttributesFor<K>[];
|
141610
141871
|
};
|
141611
|
-
export declare const
|
141872
|
+
export declare const ResourceAttributes: ResourceAttributeMap;
|
@@ -958,6 +958,9 @@ export const ResourceType = {
|
|
958
958
|
Route53ResolverResolverRuleProps: "AWS::Route53Resolver::ResolverRule",
|
959
959
|
Route53ResolverResolverRuleAssociationProps: "AWS::Route53Resolver::ResolverRuleAssociation",
|
960
960
|
RUMAppMonitorProps: "AWS::RUM::AppMonitor",
|
961
|
+
S3AccessGrantProps: "AWS::S3::AccessGrant",
|
962
|
+
S3AccessGrantsInstanceProps: "AWS::S3::AccessGrantsInstance",
|
963
|
+
S3AccessGrantsLocationProps: "AWS::S3::AccessGrantsLocation",
|
961
964
|
S3AccessPointProps: "AWS::S3::AccessPoint",
|
962
965
|
S3BucketProps: "AWS::S3::Bucket",
|
963
966
|
S3BucketPolicyProps: "AWS::S3::BucketPolicy",
|
@@ -1152,7 +1155,7 @@ export const ResourceType = {
|
|
1152
1155
|
XRayResourcePolicyProps: "AWS::XRay::ResourcePolicy",
|
1153
1156
|
XRaySamplingRuleProps: "AWS::XRay::SamplingRule",
|
1154
1157
|
};
|
1155
|
-
export const
|
1158
|
+
export const ResourceAttributes = {
|
1156
1159
|
"Alexa::ASK::Skill": ["Id"],
|
1157
1160
|
"AWS::AccessAnalyzer::Analyzer": ["Arn"],
|
1158
1161
|
"AWS::ACMPCA::Certificate": ["Arn", "Certificate"],
|
@@ -1867,7 +1870,7 @@ export const ResourceAttributeMap = {
|
|
1867
1870
|
"AWS::EC2::TrafficMirrorFilterRule": ["Id"],
|
1868
1871
|
"AWS::EC2::TrafficMirrorSession": ["Id"],
|
1869
1872
|
"AWS::EC2::TrafficMirrorTarget": ["Id"],
|
1870
|
-
"AWS::EC2::TransitGateway": ["Id"],
|
1873
|
+
"AWS::EC2::TransitGateway": ["Id", "TransitGatewayArn"],
|
1871
1874
|
"AWS::EC2::TransitGatewayAttachment": ["Id"],
|
1872
1875
|
"AWS::EC2::TransitGatewayConnect": [
|
1873
1876
|
"CreationTime",
|
@@ -3167,6 +3170,15 @@ export const ResourceAttributeMap = {
|
|
3167
3170
|
"ResolverRuleAssociationId",
|
3168
3171
|
],
|
3169
3172
|
"AWS::RUM::AppMonitor": ["Id"],
|
3173
|
+
"AWS::S3::AccessGrant": ["AccessGrantArn", "AccessGrantId", "GrantScope"],
|
3174
|
+
"AWS::S3::AccessGrantsInstance": [
|
3175
|
+
"AccessGrantsInstanceArn",
|
3176
|
+
"AccessGrantsInstanceId",
|
3177
|
+
],
|
3178
|
+
"AWS::S3::AccessGrantsLocation": [
|
3179
|
+
"AccessGrantsLocationArn",
|
3180
|
+
"AccessGrantsLocationId",
|
3181
|
+
],
|
3170
3182
|
"AWS::S3::AccessPoint": ["Alias", "Arn", "NetworkOrigin"],
|
3171
3183
|
"AWS::S3::Bucket": [
|
3172
3184
|
"Arn",
|