Class: Aws::DatabaseMigrationService::Types::DescribeFleetAdvisorSchemasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::DescribeFleetAdvisorSchemasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
If you specify any of the following filters, the output includes information for only those schemas that meet the filter criteria:.
-
#max_records ⇒ Integer
Sets the maximum number of records returned in the response.
-
#next_token ⇒ String
If ‘NextToken` is returned by a previous response, there are more results available.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
If you specify any of the following filters, the output includes information for only those schemas that meet the filter criteria:
-
‘complexity` – The schema’s complexity, for example ‘Simple`.
-
‘database-id` – The ID of the schema’s database.
-
‘database-ip-address` – The IP address of the schema’s database.
-
‘database-name` – The name of the schema’s database.
-
‘database-engine` – The name of the schema database’s engine.
-
‘original-schema-name` – The name of the schema’s database’s main schema.
-
‘schema-id` – The ID of the schema, for example `15`.
-
‘schema-name` – The name of the schema.
-
‘server-ip-address` – The IP address of the schema database’s server.
An example is: ‘describe-fleet-advisor-schemas –filter Name=“schema-id”,Values=“50”`
3776 3777 3778 3779 3780 3781 3782 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 3776 class DescribeFleetAdvisorSchemasRequest < Struct.new( :filters, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_records ⇒ Integer
Sets the maximum number of records returned in the response.
3776 3777 3778 3779 3780 3781 3782 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 3776 class DescribeFleetAdvisorSchemasRequest < Struct.new( :filters, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If ‘NextToken` is returned by a previous response, there are more results available. The value of `NextToken` is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged.
3776 3777 3778 3779 3780 3781 3782 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 3776 class DescribeFleetAdvisorSchemasRequest < Struct.new( :filters, :max_records, :next_token) SENSITIVE = [] include Aws::Structure end |