aws-sdk 2.661.0 → 2.662.0

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/clients/ram.d.ts CHANGED
@@ -147,6 +147,14 @@ declare class RAM extends Service {
147
147
  * Lists the AWS RAM permissions that are associated with a resource share.
148
148
  */
149
149
  listResourceSharePermissions(callback?: (err: AWSError, data: RAM.Types.ListResourceSharePermissionsResponse) => void): Request<RAM.Types.ListResourceSharePermissionsResponse, AWSError>;
150
+ /**
151
+ * Lists the shareable resource types supported by AWS RAM.
152
+ */
153
+ listResourceTypes(params: RAM.Types.ListResourceTypesRequest, callback?: (err: AWSError, data: RAM.Types.ListResourceTypesResponse) => void): Request<RAM.Types.ListResourceTypesResponse, AWSError>;
154
+ /**
155
+ * Lists the shareable resource types supported by AWS RAM.
156
+ */
157
+ listResourceTypes(callback?: (err: AWSError, data: RAM.Types.ListResourceTypesResponse) => void): Request<RAM.Types.ListResourceTypesResponse, AWSError>;
150
158
  /**
151
159
  * Lists the resources that you added to a resource shares or the resources that are shared with you.
152
160
  */
@@ -610,7 +618,7 @@ declare namespace RAM {
610
618
  */
611
619
  principals?: PrincipalArnOrIdList;
612
620
  /**
613
- * The resource type. Valid values: ec2:CapacityReservation | ec2:Subnet | ec2:TrafficMirrorTarget | ec2:TransitGateway | license-manager:LicenseConfiguration | rds:Cluster | route53resolver:ResolverRule I resource-groups:Group
621
+ * The resource type. Valid values: codebuild:Project | codebuild:ReportGroup | ec2:CapacityReservation | ec2:DedicatedHost | ec2:Subnet | ec2:TrafficMirrorTarget | ec2:TransitGateway | imagebuilder:Component | imagebuilder:Image | imagebuilder:ImageRecipe | license-manager:LicenseConfiguration I resource-groups:Group | rds:Cluster | route53resolver:ResolverRule
614
622
  */
615
623
  resourceType?: String;
616
624
  /**
@@ -660,6 +668,26 @@ declare namespace RAM {
660
668
  */
661
669
  nextToken?: String;
662
670
  }
671
+ export interface ListResourceTypesRequest {
672
+ /**
673
+ * The token for the next page of results.
674
+ */
675
+ nextToken?: String;
676
+ /**
677
+ * The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
678
+ */
679
+ maxResults?: MaxResults;
680
+ }
681
+ export interface ListResourceTypesResponse {
682
+ /**
683
+ * The shareable resource types supported by AWS RAM.
684
+ */
685
+ resourceTypes?: ServiceNameAndResourceTypeList;
686
+ /**
687
+ * The token to use to retrieve the next page of results. This value is null when there are no more results to return.
688
+ */
689
+ nextToken?: String;
690
+ }
663
691
  export interface ListResourcesRequest {
664
692
  /**
665
693
  * The type of owner.
@@ -670,7 +698,7 @@ declare namespace RAM {
670
698
  */
671
699
  principal?: String;
672
700
  /**
673
- * The resource type. Valid values: ec2:CapacityReservation | ec2:Subnet | ec2:TrafficMirrorTarget | ec2:TransitGateway | license-manager:LicenseConfiguration | rds:Cluster | route53resolver:ResolverRule | resource-groups:Group
701
+ * The resource type. Valid values: codebuild:Project | codebuild:ReportGroup | ec2:CapacityReservation | ec2:DedicatedHost | ec2:Subnet | ec2:TrafficMirrorTarget | ec2:TransitGateway | imagebuilder:Component | imagebuilder:Image | imagebuilder:ImageRecipe | license-manager:LicenseConfiguration I resource-groups:Group | rds:Cluster | route53resolver:ResolverRule
674
702
  */
675
703
  resourceType?: String;
676
704
  /**
@@ -991,6 +1019,17 @@ declare namespace RAM {
991
1019
  }
992
1020
  export type ResourceShareStatus = "PENDING"|"ACTIVE"|"FAILED"|"DELETING"|"DELETED"|string;
993
1021
  export type ResourceStatus = "AVAILABLE"|"ZONAL_RESOURCE_INACCESSIBLE"|"LIMIT_EXCEEDED"|"UNAVAILABLE"|"PENDING"|string;
1022
+ export interface ServiceNameAndResourceType {
1023
+ /**
1024
+ * The shareable resource types.
1025
+ */
1026
+ resourceType?: String;
1027
+ /**
1028
+ * The name of the AWS services to which the resources belong.
1029
+ */
1030
+ serviceName?: String;
1031
+ }
1032
+ export type ServiceNameAndResourceTypeList = ServiceNameAndResourceType[];
994
1033
  export type String = string;
995
1034
  export interface Tag {
996
1035
  /**
package/clients/rds.d.ts CHANGED
@@ -942,19 +942,19 @@ declare class RDS extends Service {
942
942
  */
943
943
  resetDBParameterGroup(callback?: (err: AWSError, data: RDS.Types.DBParameterGroupNameMessage) => void): Request<RDS.Types.DBParameterGroupNameMessage, AWSError>;
944
944
  /**
945
- * Creates an Amazon Aurora DB cluster from data stored in an Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon S3 bucket and the data must be created using the Percona XtraBackup utility as described in Migrating Data to an Amazon Aurora MySQL DB Cluster in the Amazon Aurora User Guide. This action only applies to Aurora DB clusters.
945
+ * Creates an Amazon Aurora DB cluster from data stored in an Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon S3 bucket and the data must be created using the Percona XtraBackup utility as described in Migrating Data to an Amazon Aurora MySQL DB Cluster in the Amazon Aurora User Guide. This action only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance action to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromS3 action has completed and the DB cluster is available. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide. This action only applies to Aurora DB clusters.
946
946
  */
947
947
  restoreDBClusterFromS3(params: RDS.Types.RestoreDBClusterFromS3Message, callback?: (err: AWSError, data: RDS.Types.RestoreDBClusterFromS3Result) => void): Request<RDS.Types.RestoreDBClusterFromS3Result, AWSError>;
948
948
  /**
949
- * Creates an Amazon Aurora DB cluster from data stored in an Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon S3 bucket and the data must be created using the Percona XtraBackup utility as described in Migrating Data to an Amazon Aurora MySQL DB Cluster in the Amazon Aurora User Guide. This action only applies to Aurora DB clusters.
949
+ * Creates an Amazon Aurora DB cluster from data stored in an Amazon S3 bucket. Amazon RDS must be authorized to access the Amazon S3 bucket and the data must be created using the Percona XtraBackup utility as described in Migrating Data to an Amazon Aurora MySQL DB Cluster in the Amazon Aurora User Guide. This action only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance action to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromS3 action has completed and the DB cluster is available. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide. This action only applies to Aurora DB clusters.
950
950
  */
951
951
  restoreDBClusterFromS3(callback?: (err: AWSError, data: RDS.Types.RestoreDBClusterFromS3Result) => void): Request<RDS.Types.RestoreDBClusterFromS3Result, AWSError>;
952
952
  /**
953
- * Creates a new DB cluster from a DB snapshot or DB cluster snapshot. This action only applies to Aurora DB clusters. The target DB cluster is created from the source snapshot with a default configuration. If you don't specify a security group, the new DB cluster is associated with the default security group. This action only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance action to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromSnapshot action has completed and the DB cluster is available. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.
953
+ * Creates a new DB cluster from a DB snapshot or DB cluster snapshot. This action only applies to Aurora DB clusters. The target DB cluster is created from the source snapshot with a default configuration. If you don't specify a security group, the new DB cluster is associated with the default security group. This action only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance action to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromSnapshot action has completed and the DB cluster is available. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide. This action only applies to Aurora DB clusters.
954
954
  */
955
955
  restoreDBClusterFromSnapshot(params: RDS.Types.RestoreDBClusterFromSnapshotMessage, callback?: (err: AWSError, data: RDS.Types.RestoreDBClusterFromSnapshotResult) => void): Request<RDS.Types.RestoreDBClusterFromSnapshotResult, AWSError>;
956
956
  /**
957
- * Creates a new DB cluster from a DB snapshot or DB cluster snapshot. This action only applies to Aurora DB clusters. The target DB cluster is created from the source snapshot with a default configuration. If you don't specify a security group, the new DB cluster is associated with the default security group. This action only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance action to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromSnapshot action has completed and the DB cluster is available. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide.
957
+ * Creates a new DB cluster from a DB snapshot or DB cluster snapshot. This action only applies to Aurora DB clusters. The target DB cluster is created from the source snapshot with a default configuration. If you don't specify a security group, the new DB cluster is associated with the default security group. This action only restores the DB cluster, not the DB instances for that DB cluster. You must invoke the CreateDBInstance action to create DB instances for the restored DB cluster, specifying the identifier of the restored DB cluster in DBClusterIdentifier. You can create DB instances only after the RestoreDBClusterFromSnapshot action has completed and the DB cluster is available. For more information on Amazon Aurora, see What Is Amazon Aurora? in the Amazon Aurora User Guide. This action only applies to Aurora DB clusters.
958
958
  */
959
959
  restoreDBClusterFromSnapshot(callback?: (err: AWSError, data: RDS.Types.RestoreDBClusterFromSnapshotResult) => void): Request<RDS.Types.RestoreDBClusterFromSnapshotResult, AWSError>;
960
960
  /**
@@ -4619,6 +4619,10 @@ declare namespace RDS {
4619
4619
  * The license model filter value. Specify this parameter to show only the available offerings matching the specified license model.
4620
4620
  */
4621
4621
  LicenseModel?: String;
4622
+ /**
4623
+ * The Availability Zone group associated with a Local Zone. Specify this parameter to retrieve available offerings for the Local Zones in the group. Omit this parameter to show the available offerings in the specified AWS Region.
4624
+ */
4625
+ AvailabilityZoneGroup?: String;
4622
4626
  /**
4623
4627
  * A value that indicates whether to show only VPC or non-VPC offerings.
4624
4628
  */
@@ -6110,6 +6114,10 @@ declare namespace RDS {
6110
6114
  * The license model for a DB instance.
6111
6115
  */
6112
6116
  LicenseModel?: String;
6117
+ /**
6118
+ * The Availability Zone group for a DB instance.
6119
+ */
6120
+ AvailabilityZoneGroup?: String;
6113
6121
  /**
6114
6122
  * A list of Availability Zones for a DB instance.
6115
6123
  */
@@ -6183,7 +6191,7 @@ declare namespace RDS {
6183
6191
  */
6184
6192
  SupportedEngineModes?: EngineModeList;
6185
6193
  /**
6186
- * Whether or not Amazon RDS can automatically scale storage for DB instances that use the specified instance class.
6194
+ * Whether Amazon RDS can automatically scale storage for DB instances that use the specified DB instance class.
6187
6195
  */
6188
6196
  SupportsStorageAutoscaling?: BooleanOptional;
6189
6197
  /**