Interface DescribeTopicResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<DescribeTopicResponse.Builder,DescribeTopicResponse>
,QuickSightResponse.Builder
,SdkBuilder<DescribeTopicResponse.Builder,DescribeTopicResponse>
,SdkPojo
,SdkResponse.Builder
- Enclosing class:
- DescribeTopicResponse
public static interface DescribeTopicResponse.Builder extends QuickSightResponse.Builder, SdkPojo, CopyableBuilder<DescribeTopicResponse.Builder,DescribeTopicResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DescribeTopicResponse.Builder
arn(String arn)
The Amazon Resource Name (ARN) of the topic.DescribeTopicResponse.Builder
requestId(String requestId)
The Amazon Web Services request ID for this operation.DescribeTopicResponse.Builder
status(Integer status)
The HTTP status of the request.default DescribeTopicResponse.Builder
topic(Consumer<TopicDetails.Builder> topic)
The definition of a topic.DescribeTopicResponse.Builder
topic(TopicDetails topic)
The definition of a topic.DescribeTopicResponse.Builder
topicId(String topicId)
The ID of the topic that you want to describe.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.quicksight.model.QuickSightResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
arn
DescribeTopicResponse.Builder arn(String arn)
The Amazon Resource Name (ARN) of the topic.
- Parameters:
arn
- The Amazon Resource Name (ARN) of the topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topicId
DescribeTopicResponse.Builder topicId(String topicId)
The ID of the topic that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
- Parameters:
topicId
- The ID of the topic that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topic
DescribeTopicResponse.Builder topic(TopicDetails topic)
The definition of a topic.
- Parameters:
topic
- The definition of a topic.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
topic
default DescribeTopicResponse.Builder topic(Consumer<TopicDetails.Builder> topic)
The definition of a topic.
This is a convenience method that creates an instance of theTopicDetails.Builder
avoiding the need to create one manually viaTopicDetails.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totopic(TopicDetails)
.- Parameters:
topic
- a consumer that will call methods onTopicDetails.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
topic(TopicDetails)
-
requestId
DescribeTopicResponse.Builder requestId(String requestId)
The Amazon Web Services request ID for this operation.
- Parameters:
requestId
- The Amazon Web Services request ID for this operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DescribeTopicResponse.Builder status(Integer status)
The HTTP status of the request.
- Parameters:
status
- The HTTP status of the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-