aws-sdk 2.1657.0 → 2.1658.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/README.md +1 -1
- package/apis/batch-2016-08-10.min.json +62 -52
- package/apis/bedrock-2023-04-20.min.json +140 -86
- package/apis/bedrock-agent-2023-06-05.min.json +1991 -171
- package/apis/bedrock-agent-2023-06-05.paginators.json +24 -0
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +642 -216
- package/apis/bedrock-agent-runtime-2023-07-26.paginators.json +6 -0
- package/apis/bedrock-runtime-2023-09-30.min.json +329 -192
- package/apis/ec2-2016-11-15.min.json +79 -67
- package/apis/glue-2017-03-31.min.json +407 -368
- package/apis/groundstation-2019-05-23.min.json +7 -1
- package/apis/license-manager-linux-subscriptions-2018-05-10.min.json +236 -16
- package/apis/license-manager-linux-subscriptions-2018-05-10.paginators.json +6 -0
- package/apis/mediaconnect-2018-11-14.min.json +106 -94
- package/clients/batch.d.ts +12 -0
- package/clients/bedrock.d.ts +63 -14
- package/clients/bedrockagent.d.ts +2172 -171
- package/clients/bedrockagentruntime.d.ts +396 -11
- package/clients/bedrockruntime.d.ts +149 -6
- package/clients/ec2.d.ts +28 -3
- package/clients/glue.d.ts +48 -1
- package/clients/licensemanagerlinuxsubscriptions.d.ts +249 -10
- package/clients/mediaconnect.d.ts +13 -0
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +14 -14
- package/dist/aws-sdk.js +82 -70
- package/dist/aws-sdk.min.js +76 -76
- package/lib/core.js +1 -1
- package/package.json +1 -1
| @@ -12,11 +12,27 @@ declare class LicenseManagerLinuxSubscriptions extends Service { | |
| 12 12 | 
             
              constructor(options?: LicenseManagerLinuxSubscriptions.Types.ClientConfiguration)
         | 
| 13 13 | 
             
              config: Config & LicenseManagerLinuxSubscriptions.Types.ClientConfiguration;
         | 
| 14 14 | 
             
              /**
         | 
| 15 | 
            -
               *  | 
| 15 | 
            +
               * Remove a third-party subscription provider from the Bring Your Own License (BYOL) subscriptions registered to your account.
         | 
| 16 | 
            +
               */
         | 
| 17 | 
            +
              deregisterSubscriptionProvider(params: LicenseManagerLinuxSubscriptions.Types.DeregisterSubscriptionProviderRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.DeregisterSubscriptionProviderResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.DeregisterSubscriptionProviderResponse, AWSError>;
         | 
| 18 | 
            +
              /**
         | 
| 19 | 
            +
               * Remove a third-party subscription provider from the Bring Your Own License (BYOL) subscriptions registered to your account.
         | 
| 20 | 
            +
               */
         | 
| 21 | 
            +
              deregisterSubscriptionProvider(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.DeregisterSubscriptionProviderResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.DeregisterSubscriptionProviderResponse, AWSError>;
         | 
| 22 | 
            +
              /**
         | 
| 23 | 
            +
               * Get details for a Bring Your Own License (BYOL) subscription that's registered to your account.
         | 
| 24 | 
            +
               */
         | 
| 25 | 
            +
              getRegisteredSubscriptionProvider(params: LicenseManagerLinuxSubscriptions.Types.GetRegisteredSubscriptionProviderRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.GetRegisteredSubscriptionProviderResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.GetRegisteredSubscriptionProviderResponse, AWSError>;
         | 
| 26 | 
            +
              /**
         | 
| 27 | 
            +
               * Get details for a Bring Your Own License (BYOL) subscription that's registered to your account.
         | 
| 28 | 
            +
               */
         | 
| 29 | 
            +
              getRegisteredSubscriptionProvider(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.GetRegisteredSubscriptionProviderResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.GetRegisteredSubscriptionProviderResponse, AWSError>;
         | 
| 30 | 
            +
              /**
         | 
| 31 | 
            +
               * Lists the Linux subscriptions service settings for your account.
         | 
| 16 32 | 
             
               */
         | 
| 17 33 | 
             
              getServiceSettings(params: LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse, AWSError>;
         | 
| 18 34 | 
             
              /**
         | 
| 19 | 
            -
               * Lists the Linux subscriptions service settings.
         | 
| 35 | 
            +
               * Lists the Linux subscriptions service settings for your account.
         | 
| 20 36 | 
             
               */
         | 
| 21 37 | 
             
              getServiceSettings(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.GetServiceSettingsResponse, AWSError>;
         | 
| 22 38 | 
             
              /**
         | 
| @@ -35,6 +51,46 @@ declare class LicenseManagerLinuxSubscriptions extends Service { | |
| 35 51 | 
             
               * Lists the Linux subscriptions that have been discovered. If you have linked your organization, the returned results will include data aggregated across your accounts in Organizations.
         | 
| 36 52 | 
             
               */
         | 
| 37 53 | 
             
              listLinuxSubscriptions(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionsResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListLinuxSubscriptionsResponse, AWSError>;
         | 
| 54 | 
            +
              /**
         | 
| 55 | 
            +
               * List Bring Your Own License (BYOL) subscription registration resources for your account.
         | 
| 56 | 
            +
               */
         | 
| 57 | 
            +
              listRegisteredSubscriptionProviders(params: LicenseManagerLinuxSubscriptions.Types.ListRegisteredSubscriptionProvidersRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListRegisteredSubscriptionProvidersResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListRegisteredSubscriptionProvidersResponse, AWSError>;
         | 
| 58 | 
            +
              /**
         | 
| 59 | 
            +
               * List Bring Your Own License (BYOL) subscription registration resources for your account.
         | 
| 60 | 
            +
               */
         | 
| 61 | 
            +
              listRegisteredSubscriptionProviders(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListRegisteredSubscriptionProvidersResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListRegisteredSubscriptionProvidersResponse, AWSError>;
         | 
| 62 | 
            +
              /**
         | 
| 63 | 
            +
               * List the metadata tags that are assigned to the specified Amazon Web Services resource.
         | 
| 64 | 
            +
               */
         | 
| 65 | 
            +
              listTagsForResource(params: LicenseManagerLinuxSubscriptions.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListTagsForResourceResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListTagsForResourceResponse, AWSError>;
         | 
| 66 | 
            +
              /**
         | 
| 67 | 
            +
               * List the metadata tags that are assigned to the specified Amazon Web Services resource.
         | 
| 68 | 
            +
               */
         | 
| 69 | 
            +
              listTagsForResource(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.ListTagsForResourceResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.ListTagsForResourceResponse, AWSError>;
         | 
| 70 | 
            +
              /**
         | 
| 71 | 
            +
               * Register the supported third-party subscription provider for your Bring Your Own License (BYOL) subscription.
         | 
| 72 | 
            +
               */
         | 
| 73 | 
            +
              registerSubscriptionProvider(params: LicenseManagerLinuxSubscriptions.Types.RegisterSubscriptionProviderRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.RegisterSubscriptionProviderResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.RegisterSubscriptionProviderResponse, AWSError>;
         | 
| 74 | 
            +
              /**
         | 
| 75 | 
            +
               * Register the supported third-party subscription provider for your Bring Your Own License (BYOL) subscription.
         | 
| 76 | 
            +
               */
         | 
| 77 | 
            +
              registerSubscriptionProvider(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.RegisterSubscriptionProviderResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.RegisterSubscriptionProviderResponse, AWSError>;
         | 
| 78 | 
            +
              /**
         | 
| 79 | 
            +
               * Add metadata tags to the specified Amazon Web Services resource.
         | 
| 80 | 
            +
               */
         | 
| 81 | 
            +
              tagResource(params: LicenseManagerLinuxSubscriptions.Types.TagResourceRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.TagResourceResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.TagResourceResponse, AWSError>;
         | 
| 82 | 
            +
              /**
         | 
| 83 | 
            +
               * Add metadata tags to the specified Amazon Web Services resource.
         | 
| 84 | 
            +
               */
         | 
| 85 | 
            +
              tagResource(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.TagResourceResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.TagResourceResponse, AWSError>;
         | 
| 86 | 
            +
              /**
         | 
| 87 | 
            +
               * Remove one or more metadata tag from the specified Amazon Web Services resource.
         | 
| 88 | 
            +
               */
         | 
| 89 | 
            +
              untagResource(params: LicenseManagerLinuxSubscriptions.Types.UntagResourceRequest, callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.UntagResourceResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.UntagResourceResponse, AWSError>;
         | 
| 90 | 
            +
              /**
         | 
| 91 | 
            +
               * Remove one or more metadata tag from the specified Amazon Web Services resource.
         | 
| 92 | 
            +
               */
         | 
| 93 | 
            +
              untagResource(callback?: (err: AWSError, data: LicenseManagerLinuxSubscriptions.Types.UntagResourceResponse) => void): Request<LicenseManagerLinuxSubscriptions.Types.UntagResourceResponse, AWSError>;
         | 
| 38 94 | 
             
              /**
         | 
| 39 95 | 
             
               * Updates the service settings for Linux subscriptions.
         | 
| 40 96 | 
             
               */
         | 
| @@ -48,6 +104,14 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 48 104 | 
             
              export type Boolean = boolean;
         | 
| 49 105 | 
             
              export type BoxInteger = number;
         | 
| 50 106 | 
             
              export type BoxLong = number;
         | 
| 107 | 
            +
              export interface DeregisterSubscriptionProviderRequest {
         | 
| 108 | 
            +
                /**
         | 
| 109 | 
            +
                 * The Amazon Resource Name (ARN) of the subscription provider resource to deregister.
         | 
| 110 | 
            +
                 */
         | 
| 111 | 
            +
                SubscriptionProviderArn: SubscriptionProviderArn;
         | 
| 112 | 
            +
              }
         | 
| 113 | 
            +
              export interface DeregisterSubscriptionProviderResponse {
         | 
| 114 | 
            +
              }
         | 
| 51 115 | 
             
              export interface Filter {
         | 
| 52 116 | 
             
                /**
         | 
| 53 117 | 
             
                 * The type of name to filter by.
         | 
| @@ -63,6 +127,38 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 63 127 | 
             
                Values?: StringList;
         | 
| 64 128 | 
             
              }
         | 
| 65 129 | 
             
              export type FilterList = Filter[];
         | 
| 130 | 
            +
              export interface GetRegisteredSubscriptionProviderRequest {
         | 
| 131 | 
            +
                /**
         | 
| 132 | 
            +
                 * The Amazon Resource Name (ARN) of the BYOL registration resource to get details for.
         | 
| 133 | 
            +
                 */
         | 
| 134 | 
            +
                SubscriptionProviderArn: SubscriptionProviderArn;
         | 
| 135 | 
            +
              }
         | 
| 136 | 
            +
              export interface GetRegisteredSubscriptionProviderResponse {
         | 
| 137 | 
            +
                /**
         | 
| 138 | 
            +
                 * The timestamp from the last time License Manager retrieved subscription details from your registered third-party Linux subscription provider.
         | 
| 139 | 
            +
                 */
         | 
| 140 | 
            +
                LastSuccessfulDataRetrievalTime?: String;
         | 
| 141 | 
            +
                /**
         | 
| 142 | 
            +
                 * The Amazon Resource Name (ARN) of the third-party access secret stored in Secrets Manager for the BYOL registration resource specified in the request.
         | 
| 143 | 
            +
                 */
         | 
| 144 | 
            +
                SecretArn?: SecretArn;
         | 
| 145 | 
            +
                /**
         | 
| 146 | 
            +
                 * The Amazon Resource Name (ARN) for the BYOL registration resource specified in the request.
         | 
| 147 | 
            +
                 */
         | 
| 148 | 
            +
                SubscriptionProviderArn?: SubscriptionProviderArn;
         | 
| 149 | 
            +
                /**
         | 
| 150 | 
            +
                 * The subscription provider for the BYOL registration resource specified in the request.
         | 
| 151 | 
            +
                 */
         | 
| 152 | 
            +
                SubscriptionProviderSource?: SubscriptionProviderSource;
         | 
| 153 | 
            +
                /**
         | 
| 154 | 
            +
                 * The status of the Linux subscription provider access token from the last successful subscription data request.
         | 
| 155 | 
            +
                 */
         | 
| 156 | 
            +
                SubscriptionProviderStatus?: SubscriptionProviderStatus;
         | 
| 157 | 
            +
                /**
         | 
| 158 | 
            +
                 * The detailed message from your subscription provider token status.
         | 
| 159 | 
            +
                 */
         | 
| 160 | 
            +
                SubscriptionProviderStatusMessage?: String;
         | 
| 161 | 
            +
              }
         | 
| 66 162 | 
             
              export interface GetServiceSettingsRequest {
         | 
| 67 163 | 
             
              }
         | 
| 68 164 | 
             
              export interface GetServiceSettingsResponse {
         | 
| @@ -96,6 +192,10 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 96 192 | 
             
                 * The AMI ID used to launch the instance.
         | 
| 97 193 | 
             
                 */
         | 
| 98 194 | 
             
                AmiId?: String;
         | 
| 195 | 
            +
                /**
         | 
| 196 | 
            +
                 * Indicates that you have two different license subscriptions for the same software on your instance.
         | 
| 197 | 
            +
                 */
         | 
| 198 | 
            +
                DualSubscription?: String;
         | 
| 99 199 | 
             
                /**
         | 
| 100 200 | 
             
                 * The instance ID of the resource.
         | 
| 101 201 | 
             
                 */
         | 
| @@ -108,6 +208,10 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 108 208 | 
             
                 * The time in which the last discovery updated the instance details.
         | 
| 109 209 | 
             
                 */
         | 
| 110 210 | 
             
                LastUpdatedTime?: String;
         | 
| 211 | 
            +
                /**
         | 
| 212 | 
            +
                 * The operating system software version that runs on your instance.
         | 
| 213 | 
            +
                 */
         | 
| 214 | 
            +
                OsVersion?: String;
         | 
| 111 215 | 
             
                /**
         | 
| 112 216 | 
             
                 * The product code for the instance. For more information, see Usage operation values in the License Manager User Guide .
         | 
| 113 217 | 
             
                 */
         | 
| @@ -116,14 +220,26 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 116 220 | 
             
                 * The Region the instance is running in.
         | 
| 117 221 | 
             
                 */
         | 
| 118 222 | 
             
                Region?: String;
         | 
| 223 | 
            +
                /**
         | 
| 224 | 
            +
                 * Indicates that your instance uses a BYOL license subscription from a third-party Linux subscription provider that you've registered with License Manager.
         | 
| 225 | 
            +
                 */
         | 
| 226 | 
            +
                RegisteredWithSubscriptionProvider?: String;
         | 
| 119 227 | 
             
                /**
         | 
| 120 228 | 
             
                 * The status of the instance.
         | 
| 121 229 | 
             
                 */
         | 
| 122 230 | 
             
                Status?: String;
         | 
| 123 231 | 
             
                /**
         | 
| 124 | 
            -
                 * The name of the subscription  | 
| 232 | 
            +
                 * The name of the license subscription that the instance uses.
         | 
| 125 233 | 
             
                 */
         | 
| 126 234 | 
             
                SubscriptionName?: String;
         | 
| 235 | 
            +
                /**
         | 
| 236 | 
            +
                 * The timestamp when you registered the third-party Linux subscription provider for the subscription that the instance uses.
         | 
| 237 | 
            +
                 */
         | 
| 238 | 
            +
                SubscriptionProviderCreateTime?: String;
         | 
| 239 | 
            +
                /**
         | 
| 240 | 
            +
                 * The timestamp from the last time that the instance synced with the registered third-party Linux subscription provider.
         | 
| 241 | 
            +
                 */
         | 
| 242 | 
            +
                SubscriptionProviderUpdateTime?: String;
         | 
| 127 243 | 
             
                /**
         | 
| 128 244 | 
             
                 * The usage operation of the instance. For more information, see For more information, see Usage operation values in the License Manager User Guide.
         | 
| 129 245 | 
             
                 */
         | 
| @@ -143,15 +259,15 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 143 259 | 
             
              }
         | 
| 144 260 | 
             
              export interface ListLinuxSubscriptionInstancesRequest {
         | 
| 145 261 | 
             
                /**
         | 
| 146 | 
            -
                 * An array of structures that you can use to filter the results  | 
| 262 | 
            +
                 * An array of structures that you can use to filter the results by your specified criteria. For example, you can specify Region in the Name, with the contains operator to list all subscriptions that match a partial string in the Value, such as us-west. For each filter, you can specify one of the following values for the Name key to streamline results:    AccountID     AmiID     DualSubscription     InstanceID     InstanceType     ProductCode     Region     Status     UsageOperation    For each filter, you can use one of the following Operator values to define the behavior of the filter:    contains     equals     Notequal   
         | 
| 147 263 | 
             
                 */
         | 
| 148 264 | 
             
                Filters?: FilterList;
         | 
| 149 265 | 
             
                /**
         | 
| 150 | 
            -
                 *  | 
| 266 | 
            +
                 * The maximum items to return in a request.
         | 
| 151 267 | 
             
                 */
         | 
| 152 268 | 
             
                MaxResults?: BoxInteger;
         | 
| 153 269 | 
             
                /**
         | 
| 154 | 
            -
                 *  | 
| 270 | 
            +
                 * A token to specify where to start paginating. This is the nextToken from a previously truncated response.
         | 
| 155 271 | 
             
                 */
         | 
| 156 272 | 
             
                NextToken?: ListLinuxSubscriptionInstancesRequestNextTokenString;
         | 
| 157 273 | 
             
              }
         | 
| @@ -162,7 +278,7 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 162 278 | 
             
                 */
         | 
| 163 279 | 
             
                Instances?: InstanceList;
         | 
| 164 280 | 
             
                /**
         | 
| 165 | 
            -
                 *  | 
| 281 | 
            +
                 * The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
         | 
| 166 282 | 
             
                 */
         | 
| 167 283 | 
             
                NextToken?: String;
         | 
| 168 284 | 
             
              }
         | 
| @@ -172,18 +288,18 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 172 288 | 
             
                 */
         | 
| 173 289 | 
             
                Filters?: FilterList;
         | 
| 174 290 | 
             
                /**
         | 
| 175 | 
            -
                 *  | 
| 291 | 
            +
                 * The maximum items to return in a request.
         | 
| 176 292 | 
             
                 */
         | 
| 177 293 | 
             
                MaxResults?: BoxInteger;
         | 
| 178 294 | 
             
                /**
         | 
| 179 | 
            -
                 *  | 
| 295 | 
            +
                 * A token to specify where to start paginating. This is the nextToken from a previously truncated response.
         | 
| 180 296 | 
             
                 */
         | 
| 181 297 | 
             
                NextToken?: ListLinuxSubscriptionsRequestNextTokenString;
         | 
| 182 298 | 
             
              }
         | 
| 183 299 | 
             
              export type ListLinuxSubscriptionsRequestNextTokenString = string;
         | 
| 184 300 | 
             
              export interface ListLinuxSubscriptionsResponse {
         | 
| 185 301 | 
             
                /**
         | 
| 186 | 
            -
                 *  | 
| 302 | 
            +
                 * The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
         | 
| 187 303 | 
             
                 */
         | 
| 188 304 | 
             
                NextToken?: String;
         | 
| 189 305 | 
             
                /**
         | 
| @@ -191,9 +307,102 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 191 307 | 
             
                 */
         | 
| 192 308 | 
             
                Subscriptions?: SubscriptionList;
         | 
| 193 309 | 
             
              }
         | 
| 310 | 
            +
              export interface ListRegisteredSubscriptionProvidersRequest {
         | 
| 311 | 
            +
                /**
         | 
| 312 | 
            +
                 * The maximum items to return in a request.
         | 
| 313 | 
            +
                 */
         | 
| 314 | 
            +
                MaxResults?: ListRegisteredSubscriptionProvidersRequestMaxResultsInteger;
         | 
| 315 | 
            +
                /**
         | 
| 316 | 
            +
                 * A token to specify where to start paginating. This is the nextToken from a previously truncated response.
         | 
| 317 | 
            +
                 */
         | 
| 318 | 
            +
                NextToken?: String;
         | 
| 319 | 
            +
                /**
         | 
| 320 | 
            +
                 * To filter your results, specify which subscription providers to return in the list.
         | 
| 321 | 
            +
                 */
         | 
| 322 | 
            +
                SubscriptionProviderSources?: SubscriptionProviderSourceList;
         | 
| 323 | 
            +
              }
         | 
| 324 | 
            +
              export type ListRegisteredSubscriptionProvidersRequestMaxResultsInteger = number;
         | 
| 325 | 
            +
              export interface ListRegisteredSubscriptionProvidersResponse {
         | 
| 326 | 
            +
                /**
         | 
| 327 | 
            +
                 * The next token used for paginated responses. When this field isn't empty, there are additional elements that the service hasn't included in this request. Use this token with the next request to retrieve additional objects.
         | 
| 328 | 
            +
                 */
         | 
| 329 | 
            +
                NextToken?: String;
         | 
| 330 | 
            +
                /**
         | 
| 331 | 
            +
                 * The list of BYOL registration resources that fit the criteria you specified in the request.
         | 
| 332 | 
            +
                 */
         | 
| 333 | 
            +
                RegisteredSubscriptionProviders?: RegisteredSubscriptionProviderList;
         | 
| 334 | 
            +
              }
         | 
| 335 | 
            +
              export interface ListTagsForResourceRequest {
         | 
| 336 | 
            +
                /**
         | 
| 337 | 
            +
                 * The Amazon Resource Name (ARN) of the resource for which to list metadata tags.
         | 
| 338 | 
            +
                 */
         | 
| 339 | 
            +
                resourceArn: SubscriptionProviderArn;
         | 
| 340 | 
            +
              }
         | 
| 341 | 
            +
              export interface ListTagsForResourceResponse {
         | 
| 342 | 
            +
                /**
         | 
| 343 | 
            +
                 * The metadata tags for the requested resource.
         | 
| 344 | 
            +
                 */
         | 
| 345 | 
            +
                tags?: Tags;
         | 
| 346 | 
            +
              }
         | 
| 194 347 | 
             
              export type Operator = "Equal"|"NotEqual"|"Contains"|string;
         | 
| 195 348 | 
             
              export type OrganizationIntegration = "Enabled"|"Disabled"|string;
         | 
| 196 349 | 
             
              export type ProductCodeList = String[];
         | 
| 350 | 
            +
              export interface RegisterSubscriptionProviderRequest {
         | 
| 351 | 
            +
                /**
         | 
| 352 | 
            +
                 * The Amazon Resource Name (ARN) of the secret where you've stored your subscription provider's access token. For RHEL subscriptions managed through the Red Hat Subscription Manager (RHSM), the secret contains your Red Hat Offline token.
         | 
| 353 | 
            +
                 */
         | 
| 354 | 
            +
                SecretArn: SecretArn;
         | 
| 355 | 
            +
                /**
         | 
| 356 | 
            +
                 * The supported Linux subscription provider to register.
         | 
| 357 | 
            +
                 */
         | 
| 358 | 
            +
                SubscriptionProviderSource: SubscriptionProviderSource;
         | 
| 359 | 
            +
                /**
         | 
| 360 | 
            +
                 * The metadata tags to assign to your registered Linux subscription provider resource.
         | 
| 361 | 
            +
                 */
         | 
| 362 | 
            +
                Tags?: Tags;
         | 
| 363 | 
            +
              }
         | 
| 364 | 
            +
              export interface RegisterSubscriptionProviderResponse {
         | 
| 365 | 
            +
                /**
         | 
| 366 | 
            +
                 * The Amazon Resource Name (ARN) of the Linux subscription provider resource that you registered.
         | 
| 367 | 
            +
                 */
         | 
| 368 | 
            +
                SubscriptionProviderArn?: String;
         | 
| 369 | 
            +
                /**
         | 
| 370 | 
            +
                 * The Linux subscription provider that you registered.
         | 
| 371 | 
            +
                 */
         | 
| 372 | 
            +
                SubscriptionProviderSource?: SubscriptionProviderSource;
         | 
| 373 | 
            +
                /**
         | 
| 374 | 
            +
                 * Indicates the status of the registration action for the Linux subscription provider that you requested.
         | 
| 375 | 
            +
                 */
         | 
| 376 | 
            +
                SubscriptionProviderStatus?: SubscriptionProviderStatus;
         | 
| 377 | 
            +
              }
         | 
| 378 | 
            +
              export interface RegisteredSubscriptionProvider {
         | 
| 379 | 
            +
                /**
         | 
| 380 | 
            +
                 * The timestamp from the last time that License Manager accessed third-party subscription data for your account from your registered Linux subscription provider.
         | 
| 381 | 
            +
                 */
         | 
| 382 | 
            +
                LastSuccessfulDataRetrievalTime?: String;
         | 
| 383 | 
            +
                /**
         | 
| 384 | 
            +
                 * The Amazon Resource Name (ARN) of the Secrets Manager secret that stores your registered Linux subscription provider access token. For RHEL account subscriptions, this is the offline token.
         | 
| 385 | 
            +
                 */
         | 
| 386 | 
            +
                SecretArn?: SecretArn;
         | 
| 387 | 
            +
                /**
         | 
| 388 | 
            +
                 * The Amazon Resource Name (ARN) of the Linux subscription provider resource that you registered.
         | 
| 389 | 
            +
                 */
         | 
| 390 | 
            +
                SubscriptionProviderArn?: SubscriptionProviderArn;
         | 
| 391 | 
            +
                /**
         | 
| 392 | 
            +
                 * A supported third-party Linux subscription provider. License Manager currently supports Red Hat subscriptions.
         | 
| 393 | 
            +
                 */
         | 
| 394 | 
            +
                SubscriptionProviderSource?: SubscriptionProviderSource;
         | 
| 395 | 
            +
                /**
         | 
| 396 | 
            +
                 * Indicates the status of your registered Linux subscription provider access token from the last time License Manager retrieved subscription data. For RHEL account subscriptions, this is the status of the offline token.
         | 
| 397 | 
            +
                 */
         | 
| 398 | 
            +
                SubscriptionProviderStatus?: SubscriptionProviderStatus;
         | 
| 399 | 
            +
                /**
         | 
| 400 | 
            +
                 * A detailed message that's associated with your BYOL subscription provider token status.
         | 
| 401 | 
            +
                 */
         | 
| 402 | 
            +
                SubscriptionProviderStatusMessage?: String;
         | 
| 403 | 
            +
              }
         | 
| 404 | 
            +
              export type RegisteredSubscriptionProviderList = RegisteredSubscriptionProvider[];
         | 
| 405 | 
            +
              export type SecretArn = string;
         | 
| 197 406 | 
             
              export type Status = "InProgress"|"Completed"|"Successful"|"Failed"|string;
         | 
| 198 407 | 
             
              export type String = string;
         | 
| 199 408 | 
             
              export type StringList = StringListMemberString[];
         | 
| @@ -214,6 +423,36 @@ declare namespace LicenseManagerLinuxSubscriptions { | |
| 214 423 | 
             
                Type?: String;
         | 
| 215 424 | 
             
              }
         | 
| 216 425 | 
             
              export type SubscriptionList = Subscription[];
         | 
| 426 | 
            +
              export type SubscriptionProviderArn = string;
         | 
| 427 | 
            +
              export type SubscriptionProviderSource = "RedHat"|string;
         | 
| 428 | 
            +
              export type SubscriptionProviderSourceList = SubscriptionProviderSource[];
         | 
| 429 | 
            +
              export type SubscriptionProviderStatus = "ACTIVE"|"INVALID"|"PENDING"|string;
         | 
| 430 | 
            +
              export type TagKeyList = String[];
         | 
| 431 | 
            +
              export interface TagResourceRequest {
         | 
| 432 | 
            +
                /**
         | 
| 433 | 
            +
                 * The Amazon Resource Name (ARN) of the Amazon Web Services resource to which to add the specified metadata tags.
         | 
| 434 | 
            +
                 */
         | 
| 435 | 
            +
                resourceArn: SubscriptionProviderArn;
         | 
| 436 | 
            +
                /**
         | 
| 437 | 
            +
                 * The metadata tags to assign to the Amazon Web Services resource. Tags are formatted as key value pairs.
         | 
| 438 | 
            +
                 */
         | 
| 439 | 
            +
                tags: Tags;
         | 
| 440 | 
            +
              }
         | 
| 441 | 
            +
              export interface TagResourceResponse {
         | 
| 442 | 
            +
              }
         | 
| 443 | 
            +
              export type Tags = {[key: string]: String};
         | 
| 444 | 
            +
              export interface UntagResourceRequest {
         | 
| 445 | 
            +
                /**
         | 
| 446 | 
            +
                 * The Amazon Resource Name (ARN) of the Amazon Web Services resource to remove the metadata tags from.
         | 
| 447 | 
            +
                 */
         | 
| 448 | 
            +
                resourceArn: SubscriptionProviderArn;
         | 
| 449 | 
            +
                /**
         | 
| 450 | 
            +
                 * A list of metadata tag keys to remove from the requested resource.
         | 
| 451 | 
            +
                 */
         | 
| 452 | 
            +
                tagKeys: TagKeyList;
         | 
| 453 | 
            +
              }
         | 
| 454 | 
            +
              export interface UntagResourceResponse {
         | 
| 455 | 
            +
              }
         | 
| 217 456 | 
             
              export interface UpdateServiceSettingsRequest {
         | 
| 218 457 | 
             
                /**
         | 
| 219 458 | 
             
                 * Describes if updates are allowed to the service settings for Linux subscriptions. If you allow updates, you can aggregate Linux subscription data in more than one home Region.
         | 
| @@ -752,6 +752,10 @@ declare namespace MediaConnect { | |
| 752 752 | 
             
                 * The name of the VPC interface attachment to use for this output.
         | 
| 753 753 | 
             
                 */
         | 
| 754 754 | 
             
                VpcInterfaceAttachment?: VpcInterfaceAttachment;
         | 
| 755 | 
            +
                /**
         | 
| 756 | 
            +
                 * An indication of whether the new output should be enabled or disabled as soon as it is created. If you don't specify the outputStatus field in your request, MediaConnect sets it to ENABLED.
         | 
| 757 | 
            +
                 */
         | 
| 758 | 
            +
                OutputStatus?: OutputStatus;
         | 
| 755 759 | 
             
              }
         | 
| 756 760 | 
             
              export type Algorithm = "aes128"|"aes192"|"aes256"|string;
         | 
| 757 761 | 
             
              export interface Bridge {
         | 
| @@ -2036,7 +2040,12 @@ declare namespace MediaConnect { | |
| 2036 2040 | 
             
                 * The bridge output ports currently in use.
         | 
| 2037 2041 | 
             
                 */
         | 
| 2038 2042 | 
             
                BridgePorts?: __listOf__integer;
         | 
| 2043 | 
            +
                /**
         | 
| 2044 | 
            +
                 * An indication of whether the output is transmitting data or not.
         | 
| 2045 | 
            +
                 */
         | 
| 2046 | 
            +
                OutputStatus?: OutputStatus;
         | 
| 2039 2047 | 
             
              }
         | 
| 2048 | 
            +
              export type OutputStatus = "ENABLED"|"DISABLED"|string;
         | 
| 2040 2049 | 
             
              export type PriceUnits = "HOURLY"|string;
         | 
| 2041 2050 | 
             
              export type Protocol = "zixi-push"|"rtp-fec"|"rtp"|"zixi-pull"|"rist"|"st2110-jpegxs"|"cdi"|"srt-listener"|"srt-caller"|"fujitsu-qos"|"udp"|string;
         | 
| 2042 2051 | 
             
              export interface PurchaseOfferingRequest {
         | 
| @@ -2904,6 +2913,10 @@ declare namespace MediaConnect { | |
| 2904 2913 | 
             
                 * The name of the VPC interface attachment to use for this output.
         | 
| 2905 2914 | 
             
                 */
         | 
| 2906 2915 | 
             
                VpcInterfaceAttachment?: VpcInterfaceAttachment;
         | 
| 2916 | 
            +
                /**
         | 
| 2917 | 
            +
                 * An indication of whether the output should transmit data or not. If you don't specify the outputStatus field in your request, MediaConnect leaves the value unchanged.
         | 
| 2918 | 
            +
                 */
         | 
| 2919 | 
            +
                OutputStatus?: OutputStatus;
         | 
| 2907 2920 | 
             
              }
         | 
| 2908 2921 | 
             
              export interface UpdateFlowOutputResponse {
         | 
| 2909 2922 | 
             
                /**
         |