Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Modifies the properties of an endpoint in an Amazon Neptune DB cluster.
Synopsis
- data ModifyDBClusterEndpoint = ModifyDBClusterEndpoint' {}
- newModifyDBClusterEndpoint :: Text -> ModifyDBClusterEndpoint
- modifyDBClusterEndpoint_staticMembers :: Lens' ModifyDBClusterEndpoint (Maybe [Text])
- modifyDBClusterEndpoint_endpointType :: Lens' ModifyDBClusterEndpoint (Maybe Text)
- modifyDBClusterEndpoint_excludedMembers :: Lens' ModifyDBClusterEndpoint (Maybe [Text])
- modifyDBClusterEndpoint_dbClusterEndpointIdentifier :: Lens' ModifyDBClusterEndpoint Text
- data ModifyDBClusterEndpointResponse = ModifyDBClusterEndpointResponse' {
- status :: Maybe Text
- dbClusterIdentifier :: Maybe Text
- dbClusterEndpointArn :: Maybe Text
- customEndpointType :: Maybe Text
- staticMembers :: Maybe [Text]
- endpointType :: Maybe Text
- dbClusterEndpointIdentifier :: Maybe Text
- endpoint :: Maybe Text
- dbClusterEndpointResourceIdentifier :: Maybe Text
- excludedMembers :: Maybe [Text]
- httpStatus :: Int
- newModifyDBClusterEndpointResponse :: Int -> ModifyDBClusterEndpointResponse
- modifyDBClusterEndpointResponse_status :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_dbClusterIdentifier :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_dbClusterEndpointArn :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_customEndpointType :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_staticMembers :: Lens' ModifyDBClusterEndpointResponse (Maybe [Text])
- modifyDBClusterEndpointResponse_endpointType :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_dbClusterEndpointIdentifier :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_endpoint :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_dbClusterEndpointResourceIdentifier :: Lens' ModifyDBClusterEndpointResponse (Maybe Text)
- modifyDBClusterEndpointResponse_excludedMembers :: Lens' ModifyDBClusterEndpointResponse (Maybe [Text])
- modifyDBClusterEndpointResponse_httpStatus :: Lens' ModifyDBClusterEndpointResponse Int
Creating a Request
data ModifyDBClusterEndpoint Source #
See: newModifyDBClusterEndpoint
smart constructor.
ModifyDBClusterEndpoint' | |
|
Instances
newModifyDBClusterEndpoint Source #
Create a value of ModifyDBClusterEndpoint
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:staticMembers:ModifyDBClusterEndpoint'
, modifyDBClusterEndpoint_staticMembers
- List of DB instance identifiers that are part of the custom endpoint
group.
$sel:endpointType:ModifyDBClusterEndpoint'
, modifyDBClusterEndpoint_endpointType
- The type of the endpoint. One of: READER
, WRITER
, ANY
.
$sel:excludedMembers:ModifyDBClusterEndpoint'
, modifyDBClusterEndpoint_excludedMembers
- List of DB instance identifiers that aren't part of the custom endpoint
group. All other eligible instances are reachable through the custom
endpoint. Only relevant if the list of static members is empty.
$sel:dbClusterEndpointIdentifier:ModifyDBClusterEndpoint'
, modifyDBClusterEndpoint_dbClusterEndpointIdentifier
- The identifier of the endpoint to modify. This parameter is stored as a
lowercase string.
Request Lenses
modifyDBClusterEndpoint_staticMembers :: Lens' ModifyDBClusterEndpoint (Maybe [Text]) Source #
List of DB instance identifiers that are part of the custom endpoint group.
modifyDBClusterEndpoint_endpointType :: Lens' ModifyDBClusterEndpoint (Maybe Text) Source #
The type of the endpoint. One of: READER
, WRITER
, ANY
.
modifyDBClusterEndpoint_excludedMembers :: Lens' ModifyDBClusterEndpoint (Maybe [Text]) Source #
List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.
modifyDBClusterEndpoint_dbClusterEndpointIdentifier :: Lens' ModifyDBClusterEndpoint Text Source #
The identifier of the endpoint to modify. This parameter is stored as a lowercase string.
Destructuring the Response
data ModifyDBClusterEndpointResponse Source #
This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:
CreateDBClusterEndpoint
DescribeDBClusterEndpoints
ModifyDBClusterEndpoint
DeleteDBClusterEndpoint
For the data structure that represents Amazon RDS DB instance endpoints,
see Endpoint
.
See: newModifyDBClusterEndpointResponse
smart constructor.
ModifyDBClusterEndpointResponse' | |
|
Instances
newModifyDBClusterEndpointResponse Source #
Create a value of ModifyDBClusterEndpointResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:status:ModifyDBClusterEndpointResponse'
, modifyDBClusterEndpointResponse_status
- The current status of the endpoint. One of: creating
, available
,
deleting
, inactive
, modifying
. The inactive
state applies to an
endpoint that cannot be used for a certain kind of cluster, such as a
writer
endpoint for a read-only secondary cluster in a global
database.
$sel:dbClusterIdentifier:ModifyDBClusterEndpointResponse'
, modifyDBClusterEndpointResponse_dbClusterIdentifier
- The DB cluster identifier of the DB cluster associated with the
endpoint. This parameter is stored as a lowercase string.
$sel:dbClusterEndpointArn:ModifyDBClusterEndpointResponse'
, modifyDBClusterEndpointResponse_dbClusterEndpointArn
- The Amazon Resource Name (ARN) for the endpoint.
$sel:customEndpointType:ModifyDBClusterEndpointResponse'
, modifyDBClusterEndpointResponse_customEndpointType
- The type associated with a custom endpoint. One of: READER
, WRITER
,
ANY
.
$sel:staticMembers:ModifyDBClusterEndpoint'
, modifyDBClusterEndpointResponse_staticMembers
- List of DB instance identifiers that are part of the custom endpoint
group.
$sel:endpointType:ModifyDBClusterEndpoint'
, modifyDBClusterEndpointResponse_endpointType
- The type of the endpoint. One of: READER
, WRITER
, CUSTOM
.
$sel:dbClusterEndpointIdentifier:ModifyDBClusterEndpoint'
, modifyDBClusterEndpointResponse_dbClusterEndpointIdentifier
- The identifier associated with the endpoint. This parameter is stored as
a lowercase string.
$sel:endpoint:ModifyDBClusterEndpointResponse'
, modifyDBClusterEndpointResponse_endpoint
- The DNS address of the endpoint.
$sel:dbClusterEndpointResourceIdentifier:ModifyDBClusterEndpointResponse'
, modifyDBClusterEndpointResponse_dbClusterEndpointResourceIdentifier
- A unique system-generated identifier for an endpoint. It remains the
same for the whole life of the endpoint.
$sel:excludedMembers:ModifyDBClusterEndpoint'
, modifyDBClusterEndpointResponse_excludedMembers
- List of DB instance identifiers that aren't part of the custom endpoint
group. All other eligible instances are reachable through the custom
endpoint. Only relevant if the list of static members is empty.
$sel:httpStatus:ModifyDBClusterEndpointResponse'
, modifyDBClusterEndpointResponse_httpStatus
- The response's http status code.
Response Lenses
modifyDBClusterEndpointResponse_status :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
The current status of the endpoint. One of: creating
, available
,
deleting
, inactive
, modifying
. The inactive
state applies to an
endpoint that cannot be used for a certain kind of cluster, such as a
writer
endpoint for a read-only secondary cluster in a global
database.
modifyDBClusterEndpointResponse_dbClusterIdentifier :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.
modifyDBClusterEndpointResponse_dbClusterEndpointArn :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
The Amazon Resource Name (ARN) for the endpoint.
modifyDBClusterEndpointResponse_customEndpointType :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
The type associated with a custom endpoint. One of: READER
, WRITER
,
ANY
.
modifyDBClusterEndpointResponse_staticMembers :: Lens' ModifyDBClusterEndpointResponse (Maybe [Text]) Source #
List of DB instance identifiers that are part of the custom endpoint group.
modifyDBClusterEndpointResponse_endpointType :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
The type of the endpoint. One of: READER
, WRITER
, CUSTOM
.
modifyDBClusterEndpointResponse_dbClusterEndpointIdentifier :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
The identifier associated with the endpoint. This parameter is stored as a lowercase string.
modifyDBClusterEndpointResponse_endpoint :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
The DNS address of the endpoint.
modifyDBClusterEndpointResponse_dbClusterEndpointResourceIdentifier :: Lens' ModifyDBClusterEndpointResponse (Maybe Text) Source #
A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.
modifyDBClusterEndpointResponse_excludedMembers :: Lens' ModifyDBClusterEndpointResponse (Maybe [Text]) Source #
List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.
modifyDBClusterEndpointResponse_httpStatus :: Lens' ModifyDBClusterEndpointResponse Int Source #
The response's http status code.