Interface TopicRuleDestinationSummary.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TopicRuleDestinationSummary.Builder,
,TopicRuleDestinationSummary> SdkBuilder<TopicRuleDestinationSummary.Builder,
,TopicRuleDestinationSummary> SdkPojo
- Enclosing class:
TopicRuleDestinationSummary
-
Method Summary
Modifier and TypeMethodDescriptionThe topic rule destination ARN.The date and time when the topic rule destination was created.httpUrlSummary
(Consumer<HttpUrlDestinationSummary.Builder> httpUrlSummary) Information about the HTTP URL.httpUrlSummary
(HttpUrlDestinationSummary httpUrlSummary) Information about the HTTP URL.lastUpdatedAt
(Instant lastUpdatedAt) The date and time when the topic rule destination was last updated.The status of the topic rule destination.status
(TopicRuleDestinationStatus status) The status of the topic rule destination.statusReason
(String statusReason) The reason the topic rule destination is in the current status.vpcDestinationSummary
(Consumer<VpcDestinationSummary.Builder> vpcDestinationSummary) Information about the virtual private cloud (VPC) connection.vpcDestinationSummary
(VpcDestinationSummary vpcDestinationSummary) Information about the virtual private cloud (VPC) connection.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
arn
The topic rule destination ARN.
- Parameters:
arn
- The topic rule destination ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
The status of the topic rule destination. Valid values are:
- IN_PROGRESS
-
A topic rule destination was created but has not been confirmed. You can set
status
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint. - ENABLED
-
Confirmation was completed, and traffic to this destination is allowed. You can set
status
toDISABLED
by callingUpdateTopicRuleDestination
. - DISABLED
-
Confirmation was completed, and traffic to this destination is not allowed. You can set
status
toENABLED
by callingUpdateTopicRuleDestination
. - ERROR
-
Confirmation could not be completed, for example if the confirmation timed out. You can call
GetTopicRuleDestination
for details about the error. You can setstatus
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint.
- Parameters:
status
- The status of the topic rule destination. Valid values are:- IN_PROGRESS
-
A topic rule destination was created but has not been confirmed. You can set
status
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint. - ENABLED
-
Confirmation was completed, and traffic to this destination is allowed. You can set
status
toDISABLED
by callingUpdateTopicRuleDestination
. - DISABLED
-
Confirmation was completed, and traffic to this destination is not allowed. You can set
status
toENABLED
by callingUpdateTopicRuleDestination
. - ERROR
-
Confirmation could not be completed, for example if the confirmation timed out. You can call
GetTopicRuleDestination
for details about the error. You can setstatus
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
status
The status of the topic rule destination. Valid values are:
- IN_PROGRESS
-
A topic rule destination was created but has not been confirmed. You can set
status
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint. - ENABLED
-
Confirmation was completed, and traffic to this destination is allowed. You can set
status
toDISABLED
by callingUpdateTopicRuleDestination
. - DISABLED
-
Confirmation was completed, and traffic to this destination is not allowed. You can set
status
toENABLED
by callingUpdateTopicRuleDestination
. - ERROR
-
Confirmation could not be completed, for example if the confirmation timed out. You can call
GetTopicRuleDestination
for details about the error. You can setstatus
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint.
- Parameters:
status
- The status of the topic rule destination. Valid values are:- IN_PROGRESS
-
A topic rule destination was created but has not been confirmed. You can set
status
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint. - ENABLED
-
Confirmation was completed, and traffic to this destination is allowed. You can set
status
toDISABLED
by callingUpdateTopicRuleDestination
. - DISABLED
-
Confirmation was completed, and traffic to this destination is not allowed. You can set
status
toENABLED
by callingUpdateTopicRuleDestination
. - ERROR
-
Confirmation could not be completed, for example if the confirmation timed out. You can call
GetTopicRuleDestination
for details about the error. You can setstatus
toIN_PROGRESS
by callingUpdateTopicRuleDestination
. CallingUpdateTopicRuleDestination
causes a new confirmation challenge to be sent to your confirmation endpoint.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
createdAt
The date and time when the topic rule destination was created.
- Parameters:
createdAt
- The date and time when the topic rule destination was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
The date and time when the topic rule destination was last updated.
- Parameters:
lastUpdatedAt
- The date and time when the topic rule destination was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusReason
The reason the topic rule destination is in the current status.
- Parameters:
statusReason
- The reason the topic rule destination is in the current status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpUrlSummary
Information about the HTTP URL.
- Parameters:
httpUrlSummary
- Information about the HTTP URL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpUrlSummary
default TopicRuleDestinationSummary.Builder httpUrlSummary(Consumer<HttpUrlDestinationSummary.Builder> httpUrlSummary) Information about the HTTP URL.
This is a convenience method that creates an instance of theHttpUrlDestinationSummary.Builder
avoiding the need to create one manually viaHttpUrlDestinationSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tohttpUrlSummary(HttpUrlDestinationSummary)
.- Parameters:
httpUrlSummary
- a consumer that will call methods onHttpUrlDestinationSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
vpcDestinationSummary
TopicRuleDestinationSummary.Builder vpcDestinationSummary(VpcDestinationSummary vpcDestinationSummary) Information about the virtual private cloud (VPC) connection.
- Parameters:
vpcDestinationSummary
- Information about the virtual private cloud (VPC) connection.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcDestinationSummary
default TopicRuleDestinationSummary.Builder vpcDestinationSummary(Consumer<VpcDestinationSummary.Builder> vpcDestinationSummary) Information about the virtual private cloud (VPC) connection.
This is a convenience method that creates an instance of theVpcDestinationSummary.Builder
avoiding the need to create one manually viaVpcDestinationSummary.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovpcDestinationSummary(VpcDestinationSummary)
.- Parameters:
vpcDestinationSummary
- a consumer that will call methods onVpcDestinationSummary.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-