Interface AddThingToThingGroupRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<AddThingToThingGroupRequest.Builder,AddThingToThingGroupRequest>
,IotRequest.Builder
,SdkBuilder<AddThingToThingGroupRequest.Builder,AddThingToThingGroupRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- AddThingToThingGroupRequest
public static interface AddThingToThingGroupRequest.Builder extends IotRequest.Builder, SdkPojo, CopyableBuilder<AddThingToThingGroupRequest.Builder,AddThingToThingGroupRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddThingToThingGroupRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AddThingToThingGroupRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AddThingToThingGroupRequest.Builder
overrideDynamicGroups(Boolean overrideDynamicGroups)
Override dynamic thing groups with static thing groups when 10-group limit is reached.AddThingToThingGroupRequest.Builder
thingArn(String thingArn)
The ARN of the thing to add to a group.AddThingToThingGroupRequest.Builder
thingGroupArn(String thingGroupArn)
The ARN of the group to which you are adding a thing.AddThingToThingGroupRequest.Builder
thingGroupName(String thingGroupName)
The name of the group to which you are adding a thing.AddThingToThingGroupRequest.Builder
thingName(String thingName)
The name of the thing to add to a group.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
thingGroupName
AddThingToThingGroupRequest.Builder thingGroupName(String thingGroupName)
The name of the group to which you are adding a thing.
- Parameters:
thingGroupName
- The name of the group to which you are adding a thing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingGroupArn
AddThingToThingGroupRequest.Builder thingGroupArn(String thingGroupArn)
The ARN of the group to which you are adding a thing.
- Parameters:
thingGroupArn
- The ARN of the group to which you are adding a thing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingName
AddThingToThingGroupRequest.Builder thingName(String thingName)
The name of the thing to add to a group.
- Parameters:
thingName
- The name of the thing to add to a group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
thingArn
AddThingToThingGroupRequest.Builder thingArn(String thingArn)
The ARN of the thing to add to a group.
- Parameters:
thingArn
- The ARN of the thing to add to a group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideDynamicGroups
AddThingToThingGroupRequest.Builder overrideDynamicGroups(Boolean overrideDynamicGroups)
Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.
- Parameters:
overrideDynamicGroups
- Override dynamic thing groups with static thing groups when 10-group limit is reached. If a thing belongs to 10 thing groups, and one or more of those groups are dynamic thing groups, adding a thing to a static group removes the thing from the last dynamic group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
AddThingToThingGroupRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
AddThingToThingGroupRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-