createConnectorDefinition method

Future<CreateConnectorDefinitionResponse> createConnectorDefinition({
  1. String? amznClientToken,
  2. ConnectorDefinitionVersion? initialVersion,
  3. String? name,
  4. Map<String, String>? tags,
})

Creates a connector definition. You may provide the initial version of the connector definition now or use ''CreateConnectorDefinitionVersion'' at a later time.

May throw BadRequestException.

Parameter amznClientToken : A client token used to correlate requests and responses.

Parameter initialVersion : Information about the initial version of the connector definition.

Parameter name : The name of the connector definition.

Parameter tags : Tag(s) to add to the new resource.

Implementation

Future<CreateConnectorDefinitionResponse> createConnectorDefinition({
  String? amznClientToken,
  ConnectorDefinitionVersion? initialVersion,
  String? name,
  Map<String, String>? tags,
}) async {
  final headers = <String, String>{
    if (amznClientToken != null)
      'X-Amzn-Client-Token': amznClientToken.toString(),
  };
  final $payload = <String, dynamic>{
    if (initialVersion != null) 'InitialVersion': initialVersion,
    if (name != null) 'Name': name,
    if (tags != null) 'tags': tags,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/greengrass/definition/connectors',
    headers: headers,
    exceptionFnMap: _exceptionFns,
  );
  return CreateConnectorDefinitionResponse.fromJson(response);
}