p6-cdk-namer 0.8.21 → 0.8.22
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/.jsii +3 -3
- package/changelog.md +1 -1
- package/lib/p6namer.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +142 -73
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +374 -302
- package/node_modules/aws-sdk/clients/datasync.d.ts +96 -14
- package/node_modules/aws-sdk/clients/fsx.d.ts +4 -4
- package/node_modules/aws-sdk/clients/s3control.d.ts +3 -3
- package/node_modules/aws-sdk/clients/securityhub.d.ts +136 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/p6cdknamer/jsii/jsii.go +2 -2
- package/p6cdknamer/version +1 -1
- package/package.json +3 -3
- package/releasetag.txt +1 -1
- package/version.txt +1 -1
|
@@ -43,6 +43,14 @@ declare class DataSync extends Service {
|
|
|
43
43
|
* Creates an endpoint for an Amazon FSx for Lustre file system.
|
|
44
44
|
*/
|
|
45
45
|
createLocationFsxLustre(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxLustreResponse) => void): Request<DataSync.Types.CreateLocationFsxLustreResponse, AWSError>;
|
|
46
|
+
/**
|
|
47
|
+
* Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
|
48
|
+
*/
|
|
49
|
+
createLocationFsxOpenZfs(params: DataSync.Types.CreateLocationFsxOpenZfsRequest, callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.CreateLocationFsxOpenZfsResponse, AWSError>;
|
|
50
|
+
/**
|
|
51
|
+
* Creates an endpoint for an Amazon FSx for OpenZFS file system.
|
|
52
|
+
*/
|
|
53
|
+
createLocationFsxOpenZfs(callback?: (err: AWSError, data: DataSync.Types.CreateLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.CreateLocationFsxOpenZfsResponse, AWSError>;
|
|
46
54
|
/**
|
|
47
55
|
* Creates an endpoint for an Amazon FSx for Windows File Server file system.
|
|
48
56
|
*/
|
|
@@ -140,19 +148,27 @@ declare class DataSync extends Service {
|
|
|
140
148
|
*/
|
|
141
149
|
describeLocationEfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationEfsResponse) => void): Request<DataSync.Types.DescribeLocationEfsResponse, AWSError>;
|
|
142
150
|
/**
|
|
143
|
-
* Returns metadata
|
|
151
|
+
* Returns metadata about an Amazon FSx for Lustre location, such as information about its path.
|
|
144
152
|
*/
|
|
145
153
|
describeLocationFsxLustre(params: DataSync.Types.DescribeLocationFsxLustreRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxLustreResponse) => void): Request<DataSync.Types.DescribeLocationFsxLustreResponse, AWSError>;
|
|
146
154
|
/**
|
|
147
|
-
* Returns metadata
|
|
155
|
+
* Returns metadata about an Amazon FSx for Lustre location, such as information about its path.
|
|
148
156
|
*/
|
|
149
157
|
describeLocationFsxLustre(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxLustreResponse) => void): Request<DataSync.Types.DescribeLocationFsxLustreResponse, AWSError>;
|
|
150
158
|
/**
|
|
151
|
-
* Returns metadata
|
|
159
|
+
* Returns metadata about an Amazon FSx for OpenZFS location, such as information about its path.
|
|
160
|
+
*/
|
|
161
|
+
describeLocationFsxOpenZfs(params: DataSync.Types.DescribeLocationFsxOpenZfsRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.DescribeLocationFsxOpenZfsResponse, AWSError>;
|
|
162
|
+
/**
|
|
163
|
+
* Returns metadata about an Amazon FSx for OpenZFS location, such as information about its path.
|
|
164
|
+
*/
|
|
165
|
+
describeLocationFsxOpenZfs(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxOpenZfsResponse) => void): Request<DataSync.Types.DescribeLocationFsxOpenZfsResponse, AWSError>;
|
|
166
|
+
/**
|
|
167
|
+
* Returns metadata about an Amazon FSx for Windows File Server location, such as information about its path.
|
|
152
168
|
*/
|
|
153
169
|
describeLocationFsxWindows(params: DataSync.Types.DescribeLocationFsxWindowsRequest, callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxWindowsResponse) => void): Request<DataSync.Types.DescribeLocationFsxWindowsResponse, AWSError>;
|
|
154
170
|
/**
|
|
155
|
-
* Returns metadata
|
|
171
|
+
* Returns metadata about an Amazon FSx for Windows File Server location, such as information about its path.
|
|
156
172
|
*/
|
|
157
173
|
describeLocationFsxWindows(callback?: (err: AWSError, data: DataSync.Types.DescribeLocationFsxWindowsResponse) => void): Request<DataSync.Types.DescribeLocationFsxWindowsResponse, AWSError>;
|
|
158
174
|
/**
|
|
@@ -442,6 +458,34 @@ declare namespace DataSync {
|
|
|
442
458
|
*/
|
|
443
459
|
LocationArn?: LocationArn;
|
|
444
460
|
}
|
|
461
|
+
export interface CreateLocationFsxOpenZfsRequest {
|
|
462
|
+
/**
|
|
463
|
+
* The Amazon Resource Name (ARN) of the FSx for OpenZFS file system.
|
|
464
|
+
*/
|
|
465
|
+
FsxFilesystemArn: FsxFilesystemArn;
|
|
466
|
+
/**
|
|
467
|
+
* The type of protocol that DataSync uses to access your file system.
|
|
468
|
+
*/
|
|
469
|
+
Protocol: FsxProtocol;
|
|
470
|
+
/**
|
|
471
|
+
* The ARNs of the security groups that are used to configure the FSx for OpenZFS file system.
|
|
472
|
+
*/
|
|
473
|
+
SecurityGroupArns: Ec2SecurityGroupArnList;
|
|
474
|
+
/**
|
|
475
|
+
* A subdirectory in the location's path that must begin with /fsx. DataSync uses this subdirectory to read or write data (depending on whether the file system is a source or destination location).
|
|
476
|
+
*/
|
|
477
|
+
Subdirectory?: FsxOpenZfsSubdirectory;
|
|
478
|
+
/**
|
|
479
|
+
* The key-value pair that represents a tag that you want to add to the resource. The value can be an empty string. This value helps you manage, filter, and search for your resources. We recommend that you create a name tag for your location.
|
|
480
|
+
*/
|
|
481
|
+
Tags?: InputTagList;
|
|
482
|
+
}
|
|
483
|
+
export interface CreateLocationFsxOpenZfsResponse {
|
|
484
|
+
/**
|
|
485
|
+
* The ARN of the FSx for OpenZFS file system location that you created.
|
|
486
|
+
*/
|
|
487
|
+
LocationArn?: LocationArn;
|
|
488
|
+
}
|
|
445
489
|
export interface CreateLocationFsxWindowsRequest {
|
|
446
490
|
/**
|
|
447
491
|
* A subdirectory in the location's path. This subdirectory in the Amazon FSx for Windows File Server file system is used to read data from the Amazon FSx for Windows File Server source location or write data to the FSx for Windows File Server destination.
|
|
@@ -452,7 +496,7 @@ declare namespace DataSync {
|
|
|
452
496
|
*/
|
|
453
497
|
FsxFilesystemArn: FsxFilesystemArn;
|
|
454
498
|
/**
|
|
455
|
-
* The
|
|
499
|
+
* The ARNs of the security groups that are used to configure the FSx for Windows File Server file system.
|
|
456
500
|
*/
|
|
457
501
|
SecurityGroupArns: Ec2SecurityGroupArnList;
|
|
458
502
|
/**
|
|
@@ -474,7 +518,7 @@ declare namespace DataSync {
|
|
|
474
518
|
}
|
|
475
519
|
export interface CreateLocationFsxWindowsResponse {
|
|
476
520
|
/**
|
|
477
|
-
* The Amazon Resource Name (ARN) of the FSx for Windows File Server file system location
|
|
521
|
+
* The Amazon Resource Name (ARN) of the FSx for Windows File Server file system location you created.
|
|
478
522
|
*/
|
|
479
523
|
LocationArn?: LocationArn;
|
|
480
524
|
}
|
|
@@ -544,7 +588,7 @@ declare namespace DataSync {
|
|
|
544
588
|
*/
|
|
545
589
|
Subdirectory: NfsSubdirectory;
|
|
546
590
|
/**
|
|
547
|
-
* The name of the NFS server. This value is the IP address or Domain Name Service (DNS) name of the NFS server. An agent that is installed on-premises uses this
|
|
591
|
+
* The name of the NFS server. This value is the IP address or Domain Name Service (DNS) name of the NFS server. An agent that is installed on-premises uses this hostname to mount the NFS server in a network. If you are copying data to or from your Snowcone device, see NFS Server on Snowcone for more information. This name must either be DNS-compliant or must be an IP version 4 (IPv4) address.
|
|
548
592
|
*/
|
|
549
593
|
ServerHostname: ServerHostname;
|
|
550
594
|
/**
|
|
@@ -568,7 +612,7 @@ declare namespace DataSync {
|
|
|
568
612
|
}
|
|
569
613
|
export interface CreateLocationObjectStorageRequest {
|
|
570
614
|
/**
|
|
571
|
-
* The name of the self-managed object storage server. This value is the IP address or Domain Name Service (DNS) name of the object storage server. An agent uses this
|
|
615
|
+
* The name of the self-managed object storage server. This value is the IP address or Domain Name Service (DNS) name of the object storage server. An agent uses this hostname to mount the object storage server in a network.
|
|
572
616
|
*/
|
|
573
617
|
ServerHostname: ServerHostname;
|
|
574
618
|
/**
|
|
@@ -625,7 +669,7 @@ declare namespace DataSync {
|
|
|
625
669
|
S3StorageClass?: S3StorageClass;
|
|
626
670
|
S3Config: S3Config;
|
|
627
671
|
/**
|
|
628
|
-
* If you
|
|
672
|
+
* If you're using DataSync on an Amazon Web Services Outpost, specify the Amazon Resource Names (ARNs) of the DataSync agents deployed on your Outpost. For more information about launching a DataSync agent on an Amazon Web Services Outpost, see Deploy your DataSync agent on Outposts.
|
|
629
673
|
*/
|
|
630
674
|
AgentArns?: AgentArnList;
|
|
631
675
|
/**
|
|
@@ -828,6 +872,34 @@ declare namespace DataSync {
|
|
|
828
872
|
*/
|
|
829
873
|
CreationTime?: Time;
|
|
830
874
|
}
|
|
875
|
+
export interface DescribeLocationFsxOpenZfsRequest {
|
|
876
|
+
/**
|
|
877
|
+
* The Amazon Resource Name (ARN) of the FSx for OpenZFS location to describe.
|
|
878
|
+
*/
|
|
879
|
+
LocationArn: LocationArn;
|
|
880
|
+
}
|
|
881
|
+
export interface DescribeLocationFsxOpenZfsResponse {
|
|
882
|
+
/**
|
|
883
|
+
* The ARN of the FSx for OpenZFS location that was described.
|
|
884
|
+
*/
|
|
885
|
+
LocationArn?: LocationArn;
|
|
886
|
+
/**
|
|
887
|
+
* The uniform resource identifier (URI) of the FSx for OpenZFS location that was described. Example: fsxz://us-west-2.fs-1234567890abcdef02/fsx/folderA/folder
|
|
888
|
+
*/
|
|
889
|
+
LocationUri?: LocationUri;
|
|
890
|
+
/**
|
|
891
|
+
* The ARNs of the security groups that are configured for the FSx for OpenZFS file system.
|
|
892
|
+
*/
|
|
893
|
+
SecurityGroupArns?: Ec2SecurityGroupArnList;
|
|
894
|
+
/**
|
|
895
|
+
* The type of protocol that DataSync uses to access your file system.
|
|
896
|
+
*/
|
|
897
|
+
Protocol?: FsxProtocol;
|
|
898
|
+
/**
|
|
899
|
+
* The time that the FSx for OpenZFS location was created.
|
|
900
|
+
*/
|
|
901
|
+
CreationTime?: Time;
|
|
902
|
+
}
|
|
831
903
|
export interface DescribeLocationFsxWindowsRequest {
|
|
832
904
|
/**
|
|
833
905
|
* The Amazon Resource Name (ARN) of the FSx for Windows File Server location to describe.
|
|
@@ -1171,7 +1243,7 @@ declare namespace DataSync {
|
|
|
1171
1243
|
export type Duration = number;
|
|
1172
1244
|
export interface Ec2Config {
|
|
1173
1245
|
/**
|
|
1174
|
-
* The ARN of the subnet
|
|
1246
|
+
* The ARN of the subnet that DataSync uses to access the target EFS file system.
|
|
1175
1247
|
*/
|
|
1176
1248
|
SubnetArn: Ec2SubnetArn;
|
|
1177
1249
|
/**
|
|
@@ -1203,6 +1275,16 @@ declare namespace DataSync {
|
|
|
1203
1275
|
export type FilterValues = FilterAttributeValue[];
|
|
1204
1276
|
export type FsxFilesystemArn = string;
|
|
1205
1277
|
export type FsxLustreSubdirectory = string;
|
|
1278
|
+
export type FsxOpenZfsSubdirectory = string;
|
|
1279
|
+
export interface FsxProtocol {
|
|
1280
|
+
/**
|
|
1281
|
+
* Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system.
|
|
1282
|
+
*/
|
|
1283
|
+
NFS?: FsxProtocolNfs;
|
|
1284
|
+
}
|
|
1285
|
+
export interface FsxProtocolNfs {
|
|
1286
|
+
MountOptions?: NfsMountOptions;
|
|
1287
|
+
}
|
|
1206
1288
|
export type FsxWindowsSubdirectory = string;
|
|
1207
1289
|
export type Gid = "NONE"|"INT_VALUE"|"NAME"|"BOTH"|string;
|
|
1208
1290
|
export type HdfsAuthenticationType = "SIMPLE"|"KERBEROS"|string;
|
|
@@ -1371,7 +1453,7 @@ declare namespace DataSync {
|
|
|
1371
1453
|
*/
|
|
1372
1454
|
LocationArn?: LocationArn;
|
|
1373
1455
|
/**
|
|
1374
|
-
* Represents a list of URIs of a location. LocationUri returns an array that contains a list of locations when the ListLocations operation is called. Format: TYPE://GLOBAL_ID/SUBDIR. TYPE designates the type of location
|
|
1456
|
+
* Represents a list of URIs of a location. LocationUri returns an array that contains a list of locations when the ListLocations operation is called. Format: TYPE://GLOBAL_ID/SUBDIR. TYPE designates the type of location (for example, nfs or s3). GLOBAL_ID is the globally unique identifier of the resource that backs the location. An example for EFS is us-east-2.fs-abcd1234. An example for Amazon S3 is the bucket name, such as myBucket. An example for NFS is a valid IPv4 address or a hostname that is compliant with Domain Name Service (DNS). SUBDIR is a valid file system path, delimited by forward slashes as is the *nix convention. For NFS and Amazon EFS, it's the export path to mount the location. For Amazon S3, it's the prefix path that you mount to and treat as the root of the location.
|
|
1375
1457
|
*/
|
|
1376
1458
|
LocationUri?: LocationUri;
|
|
1377
1459
|
}
|
|
@@ -1499,7 +1581,7 @@ declare namespace DataSync {
|
|
|
1499
1581
|
export type S3BucketArn = string;
|
|
1500
1582
|
export interface S3Config {
|
|
1501
1583
|
/**
|
|
1502
|
-
* The
|
|
1584
|
+
* The ARN of the IAM role for accessing the S3 bucket.
|
|
1503
1585
|
*/
|
|
1504
1586
|
BucketAccessRoleArn: IamRoleArn;
|
|
1505
1587
|
}
|
|
@@ -1727,11 +1809,11 @@ declare namespace DataSync {
|
|
|
1727
1809
|
*/
|
|
1728
1810
|
KerberosPrincipal?: KerberosPrincipal;
|
|
1729
1811
|
/**
|
|
1730
|
-
* The Kerberos key table (keytab) that contains mappings between the defined Kerberos principal and the encrypted keys. You can load the keytab from a file by providing the file's address. If you use the
|
|
1812
|
+
* The Kerberos key table (keytab) that contains mappings between the defined Kerberos principal and the encrypted keys. You can load the keytab from a file by providing the file's address. If you use the CLI, it performs base64 encoding for you. Otherwise, provide the base64-encoded text.
|
|
1731
1813
|
*/
|
|
1732
1814
|
KerberosKeytab?: KerberosKeytabFile;
|
|
1733
1815
|
/**
|
|
1734
|
-
* The krb5.conf file that contains the Kerberos configuration information. You can load the krb5.conf file by providing the file's address. If you're using the
|
|
1816
|
+
* The krb5.conf file that contains the Kerberos configuration information. You can load the krb5.conf file by providing the file's address. If you're using the CLI, it performs the base64 encoding for you. Otherwise, provide the base64-encoded text.
|
|
1735
1817
|
*/
|
|
1736
1818
|
KerberosKrb5Conf?: KerberosKrb5ConfFile;
|
|
1737
1819
|
/**
|
|
@@ -1608,7 +1608,7 @@ declare namespace FSx {
|
|
|
1608
1608
|
*/
|
|
1609
1609
|
FileSystemType?: FileSystemType;
|
|
1610
1610
|
/**
|
|
1611
|
-
* The lifecycle status of the file system. The following are the possible values and what they mean: AVAILABLE - The file system is in a healthy state, and is reachable and available for use. CREATING - Amazon FSx is creating the new file system. DELETING - Amazon FSx is deleting an existing file system. FAILED - An existing file system has experienced an unrecoverable failure. When creating a new file system, Amazon FSx was unable to create the file system. MISCONFIGURED - The file system is in a failed but recoverable state. UPDATING - The file system is undergoing a customer-initiated update.
|
|
1611
|
+
* The lifecycle status of the file system. The following are the possible values and what they mean: AVAILABLE - The file system is in a healthy state, and is reachable and available for use. CREATING - Amazon FSx is creating the new file system. DELETING - Amazon FSx is deleting an existing file system. FAILED - An existing file system has experienced an unrecoverable failure. When creating a new file system, Amazon FSx was unable to create the file system. MISCONFIGURED - The file system is in a failed but recoverable state. MISCONFIGURED_UNAVAILABLE - (Amazon FSx for Windows File Server only) The file system is currently unavailable due to a change in your Active Directory configuration. UPDATING - The file system is undergoing a customer-initiated update.
|
|
1612
1612
|
*/
|
|
1613
1613
|
Lifecycle?: FileSystemLifecycle;
|
|
1614
1614
|
FailureDetails?: FileSystemFailureDetails;
|
|
@@ -1696,7 +1696,7 @@ declare namespace FSx {
|
|
|
1696
1696
|
}
|
|
1697
1697
|
export type FileSystemId = string;
|
|
1698
1698
|
export type FileSystemIds = FileSystemId[];
|
|
1699
|
-
export type FileSystemLifecycle = "AVAILABLE"|"CREATING"|"FAILED"|"DELETING"|"MISCONFIGURED"|"UPDATING"|string;
|
|
1699
|
+
export type FileSystemLifecycle = "AVAILABLE"|"CREATING"|"FAILED"|"DELETING"|"MISCONFIGURED"|"UPDATING"|"MISCONFIGURED_UNAVAILABLE"|string;
|
|
1700
1700
|
export type FileSystemMaintenanceOperation = "PATCHING"|"BACKING_UP"|string;
|
|
1701
1701
|
export type FileSystemMaintenanceOperations = FileSystemMaintenanceOperation[];
|
|
1702
1702
|
export type FileSystemType = "WINDOWS"|"LUSTRE"|"ONTAP"|"OPENZFS"|string;
|
|
@@ -2071,7 +2071,7 @@ declare namespace FSx {
|
|
|
2071
2071
|
*/
|
|
2072
2072
|
SnapshotId: SnapshotId;
|
|
2073
2073
|
/**
|
|
2074
|
-
* The settings used when restoring the specified volume from snapshot. DELETE_INTERMEDIATE_SNAPSHOTS - Deletes snapshots between the current state and the specified snapshot. If there are intermediate snapshots and this option isn't used, RestoreVolumeFromSnapshot fails. DELETE_CLONED_VOLUMES - Deletes any volumes
|
|
2074
|
+
* The settings used when restoring the specified volume from snapshot. DELETE_INTERMEDIATE_SNAPSHOTS - Deletes snapshots between the current state and the specified snapshot. If there are intermediate snapshots and this option isn't used, RestoreVolumeFromSnapshot fails. DELETE_CLONED_VOLUMES - Deletes any dependent clone volumes created from intermediate snapshots. If there are any dependent clone volumes and this option isn't used, RestoreVolumeFromSnapshot fails.
|
|
2075
2075
|
*/
|
|
2076
2076
|
Options?: RestoreOpenZFSVolumeOptions;
|
|
2077
2077
|
}
|
|
@@ -2417,7 +2417,7 @@ declare namespace FSx {
|
|
|
2417
2417
|
*/
|
|
2418
2418
|
DiskIopsConfiguration?: DiskIopsConfiguration;
|
|
2419
2419
|
/**
|
|
2420
|
-
* Specifies the throughput of an FSx for NetApp ONTAP file system, measured in megabytes per second (MBps). Valid values are
|
|
2420
|
+
* Specifies the throughput of an FSx for NetApp ONTAP file system, measured in megabytes per second (MBps). Valid values are 128, 256, 512, 1024, or 2048 MB/s.
|
|
2421
2421
|
*/
|
|
2422
2422
|
ThroughputCapacity?: MegabytesPerSecond;
|
|
2423
2423
|
}
|
|
@@ -413,11 +413,11 @@ declare class S3Control extends Service {
|
|
|
413
413
|
*/
|
|
414
414
|
putBucketTagging(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
415
415
|
/**
|
|
416
|
-
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use this action, you must have permission to perform the s3:PutJobTagging action. Related actions include:
|
|
416
|
+
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use this action, you must have permission to perform the s3:PutJobTagging action. Related actions include: CreateJob GetJobTagging DeleteJobTagging
|
|
417
417
|
*/
|
|
418
418
|
putJobTagging(params: S3Control.Types.PutJobTaggingRequest, callback?: (err: AWSError, data: S3Control.Types.PutJobTaggingResult) => void): Request<S3Control.Types.PutJobTaggingResult, AWSError>;
|
|
419
419
|
/**
|
|
420
|
-
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use this action, you must have permission to perform the s3:PutJobTagging action. Related actions include:
|
|
420
|
+
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use this action, you must have permission to perform the s3:PutJobTagging action. Related actions include: CreateJob GetJobTagging DeleteJobTagging
|
|
421
421
|
*/
|
|
422
422
|
putJobTagging(callback?: (err: AWSError, data: S3Control.Types.PutJobTaggingResult) => void): Request<S3Control.Types.PutJobTaggingResult, AWSError>;
|
|
423
423
|
/**
|
|
@@ -2426,7 +2426,7 @@ declare namespace S3Control {
|
|
|
2426
2426
|
*/
|
|
2427
2427
|
SSEAwsKmsKeyId?: KmsKeyArnString;
|
|
2428
2428
|
/**
|
|
2429
|
-
* Specifies the folder prefix into which you would like the objects to be copied. For example, to copy objects into a folder named
|
|
2429
|
+
* Specifies the folder prefix into which you would like the objects to be copied. For example, to copy objects into a folder named Folder1 in the destination bucket, set the TargetKeyPrefix to Folder1.
|
|
2430
2430
|
*/
|
|
2431
2431
|
TargetKeyPrefix?: NonEmptyMaxLength1024String;
|
|
2432
2432
|
/**
|
|
@@ -1002,6 +1002,28 @@ declare namespace SecurityHub {
|
|
|
1002
1002
|
* The list of Availability Zones for the automatic scaling group.
|
|
1003
1003
|
*/
|
|
1004
1004
|
AvailabilityZones?: AwsAutoScalingAutoScalingGroupAvailabilityZonesList;
|
|
1005
|
+
/**
|
|
1006
|
+
* The launch template to use.
|
|
1007
|
+
*/
|
|
1008
|
+
LaunchTemplate?: AwsAutoScalingAutoScalingGroupLaunchTemplateLaunchTemplateSpecification;
|
|
1009
|
+
/**
|
|
1010
|
+
* Indicates whether capacity rebalancing is enabled.
|
|
1011
|
+
*/
|
|
1012
|
+
CapacityRebalance?: Boolean;
|
|
1013
|
+
}
|
|
1014
|
+
export interface AwsAutoScalingAutoScalingGroupLaunchTemplateLaunchTemplateSpecification {
|
|
1015
|
+
/**
|
|
1016
|
+
* The identifier of the launch template. You must specify either LaunchTemplateId or LaunchTemplateName.
|
|
1017
|
+
*/
|
|
1018
|
+
LaunchTemplateId?: NonEmptyString;
|
|
1019
|
+
/**
|
|
1020
|
+
* The name of the launch template. You must specify either LaunchTemplateId or LaunchTemplateName.
|
|
1021
|
+
*/
|
|
1022
|
+
LaunchTemplateName?: NonEmptyString;
|
|
1023
|
+
/**
|
|
1024
|
+
* Identifies the version of the launch template. You can specify a version identifier, or use the values $Latest or $Default.
|
|
1025
|
+
*/
|
|
1026
|
+
Version?: NonEmptyString;
|
|
1005
1027
|
}
|
|
1006
1028
|
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyDetails {
|
|
1007
1029
|
/**
|
|
@@ -1041,7 +1063,7 @@ declare namespace SecurityHub {
|
|
|
1041
1063
|
}
|
|
1042
1064
|
export interface AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateDetails {
|
|
1043
1065
|
/**
|
|
1044
|
-
* The launch template to use.
|
|
1066
|
+
* The launch template to use for a mixed instances policy.
|
|
1045
1067
|
*/
|
|
1046
1068
|
LaunchTemplateSpecification?: AwsAutoScalingAutoScalingGroupMixedInstancesPolicyLaunchTemplateLaunchTemplateSpecification;
|
|
1047
1069
|
/**
|
|
@@ -1706,6 +1728,10 @@ declare namespace SecurityHub {
|
|
|
1706
1728
|
* Information about the VPC configuration that CodeBuild accesses.
|
|
1707
1729
|
*/
|
|
1708
1730
|
VpcConfig?: AwsCodeBuildProjectVpcConfig;
|
|
1731
|
+
/**
|
|
1732
|
+
* Information about the secondary artifacts for the CodeBuild project.
|
|
1733
|
+
*/
|
|
1734
|
+
SecondaryArtifacts?: AwsCodeBuildProjectArtifactsList;
|
|
1709
1735
|
}
|
|
1710
1736
|
export interface AwsCodeBuildProjectEnvironment {
|
|
1711
1737
|
/**
|
|
@@ -4222,6 +4248,17 @@ declare namespace SecurityHub {
|
|
|
4222
4248
|
*/
|
|
4223
4249
|
S3BucketPrefix?: NonEmptyString;
|
|
4224
4250
|
}
|
|
4251
|
+
export interface AwsElbLoadBalancerAdditionalAttribute {
|
|
4252
|
+
/**
|
|
4253
|
+
* The name of the attribute.
|
|
4254
|
+
*/
|
|
4255
|
+
Key?: NonEmptyString;
|
|
4256
|
+
/**
|
|
4257
|
+
* The value of the attribute.
|
|
4258
|
+
*/
|
|
4259
|
+
Value?: NonEmptyString;
|
|
4260
|
+
}
|
|
4261
|
+
export type AwsElbLoadBalancerAdditionalAttributeList = AwsElbLoadBalancerAdditionalAttribute[];
|
|
4225
4262
|
export interface AwsElbLoadBalancerAttributes {
|
|
4226
4263
|
/**
|
|
4227
4264
|
* Information about the access log configuration for the load balancer. If the access log is enabled, the load balancer captures detailed information about all requests. It delivers the information to a specified S3 bucket.
|
|
@@ -4239,6 +4276,10 @@ declare namespace SecurityHub {
|
|
|
4239
4276
|
* Cross-zone load balancing settings for the load balancer. If cross-zone load balancing is enabled, the load balancer routes the request traffic evenly across all instances regardless of the Availability Zones.
|
|
4240
4277
|
*/
|
|
4241
4278
|
CrossZoneLoadBalancing?: AwsElbLoadBalancerCrossZoneLoadBalancing;
|
|
4279
|
+
/**
|
|
4280
|
+
* Any additional attributes for a load balancer.
|
|
4281
|
+
*/
|
|
4282
|
+
AdditionalAttributes?: AwsElbLoadBalancerAdditionalAttributeList;
|
|
4242
4283
|
}
|
|
4243
4284
|
export interface AwsElbLoadBalancerBackendServerDescription {
|
|
4244
4285
|
/**
|
|
@@ -5981,6 +6022,66 @@ declare namespace SecurityHub {
|
|
|
5981
6022
|
Value?: NonEmptyString;
|
|
5982
6023
|
}
|
|
5983
6024
|
export type AwsRdsDbProcessorFeatures = AwsRdsDbProcessorFeature[];
|
|
6025
|
+
export interface AwsRdsDbSecurityGroupDetails {
|
|
6026
|
+
/**
|
|
6027
|
+
* The ARN for the DB security group.
|
|
6028
|
+
*/
|
|
6029
|
+
DbSecurityGroupArn?: NonEmptyString;
|
|
6030
|
+
/**
|
|
6031
|
+
* Provides the description of the DB security group.
|
|
6032
|
+
*/
|
|
6033
|
+
DbSecurityGroupDescription?: NonEmptyString;
|
|
6034
|
+
/**
|
|
6035
|
+
* Specifies the name of the DB security group.
|
|
6036
|
+
*/
|
|
6037
|
+
DbSecurityGroupName?: NonEmptyString;
|
|
6038
|
+
/**
|
|
6039
|
+
* Contains a list of EC2 security groups.
|
|
6040
|
+
*/
|
|
6041
|
+
Ec2SecurityGroups?: AwsRdsDbSecurityGroupEc2SecurityGroups;
|
|
6042
|
+
/**
|
|
6043
|
+
* Contains a list of IP ranges.
|
|
6044
|
+
*/
|
|
6045
|
+
IpRanges?: AwsRdsDbSecurityGroupIpRanges;
|
|
6046
|
+
/**
|
|
6047
|
+
* Provides the Amazon Web Services ID of the owner of a specific DB security group.
|
|
6048
|
+
*/
|
|
6049
|
+
OwnerId?: NonEmptyString;
|
|
6050
|
+
/**
|
|
6051
|
+
* Provides VPC ID associated with the DB security group.
|
|
6052
|
+
*/
|
|
6053
|
+
VpcId?: NonEmptyString;
|
|
6054
|
+
}
|
|
6055
|
+
export interface AwsRdsDbSecurityGroupEc2SecurityGroup {
|
|
6056
|
+
/**
|
|
6057
|
+
* Specifies the ID for the EC2 security group.
|
|
6058
|
+
*/
|
|
6059
|
+
Ec2SecurityGroupId?: NonEmptyString;
|
|
6060
|
+
/**
|
|
6061
|
+
* Specifies the name of the EC2 security group.
|
|
6062
|
+
*/
|
|
6063
|
+
Ec2SecurityGroupName?: NonEmptyString;
|
|
6064
|
+
/**
|
|
6065
|
+
* Provides the Amazon Web Services ID of the owner of the EC2 security group.
|
|
6066
|
+
*/
|
|
6067
|
+
Ec2SecurityGroupOwnerId?: NonEmptyString;
|
|
6068
|
+
/**
|
|
6069
|
+
* Provides the status of the EC2 security group.
|
|
6070
|
+
*/
|
|
6071
|
+
Status?: NonEmptyString;
|
|
6072
|
+
}
|
|
6073
|
+
export type AwsRdsDbSecurityGroupEc2SecurityGroups = AwsRdsDbSecurityGroupEc2SecurityGroup[];
|
|
6074
|
+
export interface AwsRdsDbSecurityGroupIpRange {
|
|
6075
|
+
/**
|
|
6076
|
+
* Specifies the IP range.
|
|
6077
|
+
*/
|
|
6078
|
+
CidrIp?: NonEmptyString;
|
|
6079
|
+
/**
|
|
6080
|
+
* Specifies the status of the IP range.
|
|
6081
|
+
*/
|
|
6082
|
+
Status?: NonEmptyString;
|
|
6083
|
+
}
|
|
6084
|
+
export type AwsRdsDbSecurityGroupIpRanges = AwsRdsDbSecurityGroupIpRange[];
|
|
5984
6085
|
export interface AwsRdsDbSnapshotDetails {
|
|
5985
6086
|
/**
|
|
5986
6087
|
* The name or ARN of the DB snapshot that is used to restore the DB instance.
|
|
@@ -6471,6 +6572,10 @@ declare namespace SecurityHub {
|
|
|
6471
6572
|
* The list of VPC security groups that the cluster belongs to, if the cluster is in a VPC.
|
|
6472
6573
|
*/
|
|
6473
6574
|
VpcSecurityGroups?: AwsRedshiftClusterVpcSecurityGroups;
|
|
6575
|
+
/**
|
|
6576
|
+
* Information about the logging status of the cluster.
|
|
6577
|
+
*/
|
|
6578
|
+
LoggingStatus?: AwsRedshiftClusterLoggingStatus;
|
|
6474
6579
|
}
|
|
6475
6580
|
export interface AwsRedshiftClusterElasticIpStatus {
|
|
6476
6581
|
/**
|
|
@@ -6517,6 +6622,32 @@ declare namespace SecurityHub {
|
|
|
6517
6622
|
IamRoleArn?: NonEmptyString;
|
|
6518
6623
|
}
|
|
6519
6624
|
export type AwsRedshiftClusterIamRoles = AwsRedshiftClusterIamRole[];
|
|
6625
|
+
export interface AwsRedshiftClusterLoggingStatus {
|
|
6626
|
+
/**
|
|
6627
|
+
* The name of the S3 bucket where the log files are stored.
|
|
6628
|
+
*/
|
|
6629
|
+
BucketName?: NonEmptyString;
|
|
6630
|
+
/**
|
|
6631
|
+
* The message indicating that the logs failed to be delivered.
|
|
6632
|
+
*/
|
|
6633
|
+
LastFailureMessage?: NonEmptyString;
|
|
6634
|
+
/**
|
|
6635
|
+
* The last time when logs failed to be delivered. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
|
|
6636
|
+
*/
|
|
6637
|
+
LastFailureTime?: NonEmptyString;
|
|
6638
|
+
/**
|
|
6639
|
+
* The last time that logs were delivered successfully. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.
|
|
6640
|
+
*/
|
|
6641
|
+
LastSuccessfulDeliveryTime?: NonEmptyString;
|
|
6642
|
+
/**
|
|
6643
|
+
* Indicates whether logging is enabled.
|
|
6644
|
+
*/
|
|
6645
|
+
LoggingEnabled?: Boolean;
|
|
6646
|
+
/**
|
|
6647
|
+
* Provides the prefix applied to the log file names.
|
|
6648
|
+
*/
|
|
6649
|
+
S3KeyPrefix?: NonEmptyString;
|
|
6650
|
+
}
|
|
6520
6651
|
export interface AwsRedshiftClusterPendingModifiedValues {
|
|
6521
6652
|
/**
|
|
6522
6653
|
* The pending or in-progress change to the automated snapshot retention period.
|
|
@@ -9859,6 +9990,10 @@ declare namespace SecurityHub {
|
|
|
9859
9990
|
* Details about an Network Firewall rule group.
|
|
9860
9991
|
*/
|
|
9861
9992
|
AwsNetworkFirewallRuleGroup?: AwsNetworkFirewallRuleGroupDetails;
|
|
9993
|
+
/**
|
|
9994
|
+
* Details about an Amazon RDS DB security group.
|
|
9995
|
+
*/
|
|
9996
|
+
AwsRdsDbSecurityGroup?: AwsRdsDbSecurityGroupDetails;
|
|
9862
9997
|
}
|
|
9863
9998
|
export type ResourceList = Resource[];
|
|
9864
9999
|
export interface Result {
|