/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Neptune { namespace Model { /** */ class DescribeDBClusterSnapshotsRequest : public NeptuneRequest { public: AWS_NEPTUNE_API DescribeDBClusterSnapshotsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeDBClusterSnapshots"; } AWS_NEPTUNE_API Aws::String SerializePayload() const override; protected: AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline const Aws::String& GetDBClusterIdentifier() const{ return m_dBClusterIdentifier; } /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline bool DBClusterIdentifierHasBeenSet() const { return m_dBClusterIdentifierHasBeenSet; } /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline void SetDBClusterIdentifier(const Aws::String& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = value; } /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline void SetDBClusterIdentifier(Aws::String&& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = std::move(value); } /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline void SetDBClusterIdentifier(const char* value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier.assign(value); } /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline DescribeDBClusterSnapshotsRequest& WithDBClusterIdentifier(const Aws::String& value) { SetDBClusterIdentifier(value); return *this;} /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline DescribeDBClusterSnapshotsRequest& WithDBClusterIdentifier(Aws::String&& value) { SetDBClusterIdentifier(std::move(value)); return *this;} /** *

The ID of the DB cluster to retrieve the list of DB cluster snapshots for. * This parameter can't be used in conjunction with the * DBClusterSnapshotIdentifier parameter. This parameter is not * case-sensitive.

Constraints:

  • If supplied, must match the * identifier of an existing DBCluster.

*/ inline DescribeDBClusterSnapshotsRequest& WithDBClusterIdentifier(const char* value) { SetDBClusterIdentifier(value); return *this;} /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline const Aws::String& GetDBClusterSnapshotIdentifier() const{ return m_dBClusterSnapshotIdentifier; } /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline bool DBClusterSnapshotIdentifierHasBeenSet() const { return m_dBClusterSnapshotIdentifierHasBeenSet; } /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline void SetDBClusterSnapshotIdentifier(const Aws::String& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = value; } /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline void SetDBClusterSnapshotIdentifier(Aws::String&& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = std::move(value); } /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline void SetDBClusterSnapshotIdentifier(const char* value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier.assign(value); } /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline DescribeDBClusterSnapshotsRequest& WithDBClusterSnapshotIdentifier(const Aws::String& value) { SetDBClusterSnapshotIdentifier(value); return *this;} /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline DescribeDBClusterSnapshotsRequest& WithDBClusterSnapshotIdentifier(Aws::String&& value) { SetDBClusterSnapshotIdentifier(std::move(value)); return *this;} /** *

A specific DB cluster snapshot identifier to describe. This parameter can't * be used in conjunction with the DBClusterIdentifier parameter. This * value is stored as a lowercase string.

Constraints:

  • If * supplied, must match the identifier of an existing DBClusterSnapshot.

  • *
  • If this identifier is for an automated snapshot, the * SnapshotType parameter must also be specified.

*/ inline DescribeDBClusterSnapshotsRequest& WithDBClusterSnapshotIdentifier(const char* value) { SetDBClusterSnapshotIdentifier(value); return *this;} /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline const Aws::String& GetSnapshotType() const{ return m_snapshotType; } /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline bool SnapshotTypeHasBeenSet() const { return m_snapshotTypeHasBeenSet; } /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline void SetSnapshotType(const Aws::String& value) { m_snapshotTypeHasBeenSet = true; m_snapshotType = value; } /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline void SetSnapshotType(Aws::String&& value) { m_snapshotTypeHasBeenSet = true; m_snapshotType = std::move(value); } /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline void SetSnapshotType(const char* value) { m_snapshotTypeHasBeenSet = true; m_snapshotType.assign(value); } /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline DescribeDBClusterSnapshotsRequest& WithSnapshotType(const Aws::String& value) { SetSnapshotType(value); return *this;} /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline DescribeDBClusterSnapshotsRequest& WithSnapshotType(Aws::String&& value) { SetSnapshotType(std::move(value)); return *this;} /** *

The type of DB cluster snapshots to be returned. You can specify one of the * following values:

  • automated - Return all DB * cluster snapshots that have been automatically taken by Amazon Neptune for my * Amazon account.

  • manual - Return all DB cluster * snapshots that have been taken by my Amazon account.

  • * shared - Return all manual DB cluster snapshots that have been * shared to my Amazon account.

  • public - Return all * DB cluster snapshots that have been marked as public.

If you * don't specify a SnapshotType value, then both automated and manual * DB cluster snapshots are returned. You can include shared DB cluster snapshots * with these results by setting the IncludeShared parameter to * true. You can include public DB cluster snapshots with these * results by setting the IncludePublic parameter to * true.

The IncludeShared and * IncludePublic parameters don't apply for SnapshotType * values of manual or automated. The * IncludePublic parameter doesn't apply when * SnapshotType is set to shared. The * IncludeShared parameter doesn't apply when * SnapshotType is set to public.

*/ inline DescribeDBClusterSnapshotsRequest& WithSnapshotType(const char* value) { SetSnapshotType(value); return *this;} /** *

This parameter is not currently supported.

*/ inline const Aws::Vector& GetFilters() const{ return m_filters; } /** *

This parameter is not currently supported.

*/ inline bool FiltersHasBeenSet() const { return m_filtersHasBeenSet; } /** *

This parameter is not currently supported.

*/ inline void SetFilters(const Aws::Vector& value) { m_filtersHasBeenSet = true; m_filters = value; } /** *

This parameter is not currently supported.

*/ inline void SetFilters(Aws::Vector&& value) { m_filtersHasBeenSet = true; m_filters = std::move(value); } /** *

This parameter is not currently supported.

*/ inline DescribeDBClusterSnapshotsRequest& WithFilters(const Aws::Vector& value) { SetFilters(value); return *this;} /** *

This parameter is not currently supported.

*/ inline DescribeDBClusterSnapshotsRequest& WithFilters(Aws::Vector&& value) { SetFilters(std::move(value)); return *this;} /** *

This parameter is not currently supported.

*/ inline DescribeDBClusterSnapshotsRequest& AddFilters(const Filter& value) { m_filtersHasBeenSet = true; m_filters.push_back(value); return *this; } /** *

This parameter is not currently supported.

*/ inline DescribeDBClusterSnapshotsRequest& AddFilters(Filter&& value) { m_filtersHasBeenSet = true; m_filters.push_back(std::move(value)); return *this; } /** *

The maximum number of records to include in the response. If more records * exist than the specified MaxRecords value, a pagination token * called a marker is included in the response so that the remaining results can be * retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

*/ inline int GetMaxRecords() const{ return m_maxRecords; } /** *

The maximum number of records to include in the response. If more records * exist than the specified MaxRecords value, a pagination token * called a marker is included in the response so that the remaining results can be * retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

*/ inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; } /** *

The maximum number of records to include in the response. If more records * exist than the specified MaxRecords value, a pagination token * called a marker is included in the response so that the remaining results can be * retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

*/ inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; } /** *

The maximum number of records to include in the response. If more records * exist than the specified MaxRecords value, a pagination token * called a marker is included in the response so that the remaining results can be * retrieved.

Default: 100

Constraints: Minimum 20, maximum 100.

*/ inline DescribeDBClusterSnapshotsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;} /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline DescribeDBClusterSnapshotsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline DescribeDBClusterSnapshotsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *

An optional pagination token provided by a previous * DescribeDBClusterSnapshots request. If this parameter is specified, * the response includes only records beyond the marker, up to the value specified * by MaxRecords.

*/ inline DescribeDBClusterSnapshotsRequest& WithMarker(const char* value) { SetMarker(value); return *this;} /** *

True to include shared manual DB cluster snapshots from other Amazon accounts * that this Amazon account has been given permission to copy or restore, and * otherwise false. The default is false.

You can give an * Amazon account permission to restore a manual DB cluster snapshot from another * Amazon account by the ModifyDBClusterSnapshotAttribute API action.

*/ inline bool GetIncludeShared() const{ return m_includeShared; } /** *

True to include shared manual DB cluster snapshots from other Amazon accounts * that this Amazon account has been given permission to copy or restore, and * otherwise false. The default is false.

You can give an * Amazon account permission to restore a manual DB cluster snapshot from another * Amazon account by the ModifyDBClusterSnapshotAttribute API action.

*/ inline bool IncludeSharedHasBeenSet() const { return m_includeSharedHasBeenSet; } /** *

True to include shared manual DB cluster snapshots from other Amazon accounts * that this Amazon account has been given permission to copy or restore, and * otherwise false. The default is false.

You can give an * Amazon account permission to restore a manual DB cluster snapshot from another * Amazon account by the ModifyDBClusterSnapshotAttribute API action.

*/ inline void SetIncludeShared(bool value) { m_includeSharedHasBeenSet = true; m_includeShared = value; } /** *

True to include shared manual DB cluster snapshots from other Amazon accounts * that this Amazon account has been given permission to copy or restore, and * otherwise false. The default is false.

You can give an * Amazon account permission to restore a manual DB cluster snapshot from another * Amazon account by the ModifyDBClusterSnapshotAttribute API action.

*/ inline DescribeDBClusterSnapshotsRequest& WithIncludeShared(bool value) { SetIncludeShared(value); return *this;} /** *

True to include manual DB cluster snapshots that are public and can be copied * or restored by any Amazon account, and otherwise false. The default is * false. The default is false.

You can share a manual DB * cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute * API action.

*/ inline bool GetIncludePublic() const{ return m_includePublic; } /** *

True to include manual DB cluster snapshots that are public and can be copied * or restored by any Amazon account, and otherwise false. The default is * false. The default is false.

You can share a manual DB * cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute * API action.

*/ inline bool IncludePublicHasBeenSet() const { return m_includePublicHasBeenSet; } /** *

True to include manual DB cluster snapshots that are public and can be copied * or restored by any Amazon account, and otherwise false. The default is * false. The default is false.

You can share a manual DB * cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute * API action.

*/ inline void SetIncludePublic(bool value) { m_includePublicHasBeenSet = true; m_includePublic = value; } /** *

True to include manual DB cluster snapshots that are public and can be copied * or restored by any Amazon account, and otherwise false. The default is * false. The default is false.

You can share a manual DB * cluster snapshot as public by using the ModifyDBClusterSnapshotAttribute * API action.

*/ inline DescribeDBClusterSnapshotsRequest& WithIncludePublic(bool value) { SetIncludePublic(value); return *this;} private: Aws::String m_dBClusterIdentifier; bool m_dBClusterIdentifierHasBeenSet = false; Aws::String m_dBClusterSnapshotIdentifier; bool m_dBClusterSnapshotIdentifierHasBeenSet = false; Aws::String m_snapshotType; bool m_snapshotTypeHasBeenSet = false; Aws::Vector m_filters; bool m_filtersHasBeenSet = false; int m_maxRecords; bool m_maxRecordsHasBeenSet = false; Aws::String m_marker; bool m_markerHasBeenSet = false; bool m_includeShared; bool m_includeSharedHasBeenSet = false; bool m_includePublic; bool m_includePublicHasBeenSet = false; }; } // namespace Model } // namespace Neptune } // namespace Aws