Interface CreateThingRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<CreateThingRequest.Builder,CreateThingRequest>
,IotRequest.Builder
,SdkBuilder<CreateThingRequest.Builder,CreateThingRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateThingRequest
public static interface CreateThingRequest.Builder extends IotRequest.Builder, SdkPojo, CopyableBuilder<CreateThingRequest.Builder,CreateThingRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CreateThingRequest.Builder
attributePayload(Consumer<AttributePayload.Builder> attributePayload)
The attribute payload, which consists of up to three name/value pairs in a JSON document.CreateThingRequest.Builder
attributePayload(AttributePayload attributePayload)
The attribute payload, which consists of up to three name/value pairs in a JSON document.CreateThingRequest.Builder
billingGroupName(String billingGroupName)
The name of the billing group the thing will be added to.CreateThingRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
CreateThingRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
CreateThingRequest.Builder
thingName(String thingName)
The name of the thing to create.CreateThingRequest.Builder
thingTypeName(String thingTypeName)
The name of the thing type associated with the new thing.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iot.model.IotRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
thingName
CreateThingRequest.Builder thingName(String thingName)
The name of the thing to create.
You can't change a thing's name after you create it. To change a thing's name, you must create a new thing, give it the new name, and then delete the old thing.
- Parameters:
thingName
- The name of the thing to create.You can't change a thing's name after you create it. To change a thing's name, you must create a new thing, give it the new name, and then delete the old thing.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingTypeName
CreateThingRequest.Builder thingTypeName(String thingTypeName)
The name of the thing type associated with the new thing.
- Parameters:
thingTypeName
- The name of the thing type associated with the new thing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributePayload
CreateThingRequest.Builder attributePayload(AttributePayload attributePayload)
The attribute payload, which consists of up to three name/value pairs in a JSON document. For example:
{\"attributes\":{\"string1\":\"string2\"}}
- Parameters:
attributePayload
- The attribute payload, which consists of up to three name/value pairs in a JSON document. For example:{\"attributes\":{\"string1\":\"string2\"}}
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
attributePayload
default CreateThingRequest.Builder attributePayload(Consumer<AttributePayload.Builder> attributePayload)
The attribute payload, which consists of up to three name/value pairs in a JSON document. For example:
{\"attributes\":{\"string1\":\"string2\"}}
AttributePayload.Builder
avoiding the need to create one manually viaAttributePayload.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toattributePayload(AttributePayload)
.- Parameters:
attributePayload
- a consumer that will call methods onAttributePayload.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
attributePayload(AttributePayload)
-
billingGroupName
CreateThingRequest.Builder billingGroupName(String billingGroupName)
The name of the billing group the thing will be added to.
- Parameters:
billingGroupName
- The name of the billing group the thing will be added to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateThingRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateThingRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-