public static interface CreateAgentRequest.Builder extends DataSyncRequest.Builder, SdkPojo, CopyableBuilder<CreateAgentRequest.Builder,CreateAgentRequest>
Modifier and Type | Method and Description |
---|---|
CreateAgentRequest.Builder |
activationKey(String activationKey)
Your agent activation key.
|
CreateAgentRequest.Builder |
agentName(String agentName)
The name you configured for your agent.
|
CreateAgentRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
Add an optional request override configuration.
|
CreateAgentRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
Add an optional request override configuration.
|
CreateAgentRequest.Builder |
tags(Collection<TagListEntry> tags)
The key-value pair that represents the tag you want to associate with the agent.
|
CreateAgentRequest.Builder |
tags(Consumer<TagListEntry.Builder>... tags)
The key-value pair that represents the tag you want to associate with the agent.
|
CreateAgentRequest.Builder |
tags(TagListEntry... tags)
The key-value pair that represents the tag you want to associate with the agent.
|
build
overrideConfiguration
copy
applyMutation, build
CreateAgentRequest.Builder activationKey(String activationKey)
Your agent activation key. You can get the activation key either by sending an HTTP GET request with redirects that enable you to get the agent IP address (port 80). Alternatively, you can get it from the AWS DataSync console.
The redirect URL returned in the response provides you the activation key for your agent in the query string
parameter activationKey
. It might also include other activation-related parameters; however,
these are merely defaults. The arguments you pass to this API call determine the actual configuration of your
agent. For more information, see Activating a Sync Agent in the AWS DataSync User Guide.
activationKey
- Your agent activation key. You can get the activation key either by sending an HTTP GET request with
redirects that enable you to get the agent IP address (port 80). Alternatively, you can get it from
the AWS DataSync console.
The redirect URL returned in the response provides you the activation key for your agent in the query
string parameter activationKey
. It might also include other activation-related
parameters; however, these are merely defaults. The arguments you pass to this API call determine the
actual configuration of your agent. For more information, see Activating a Sync Agent in the AWS DataSync User Guide.
CreateAgentRequest.Builder agentName(String agentName)
The name you configured for your agent. This value is a text reference that is used to identify the agent in the console.
agentName
- The name you configured for your agent. This value is a text reference that is used to identify the
agent in the console.CreateAgentRequest.Builder tags(Collection<TagListEntry> tags)
The key-value pair that represents the tag you want to associate with the agent. The value can be an empty string. This value helps you manage, filter, and search for your agents.
Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @.
tags
- The key-value pair that represents the tag you want to associate with the agent. The value can be an
empty string. This value helps you manage, filter, and search for your agents. Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @.
CreateAgentRequest.Builder tags(TagListEntry... tags)
The key-value pair that represents the tag you want to associate with the agent. The value can be an empty string. This value helps you manage, filter, and search for your agents.
Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @.
tags
- The key-value pair that represents the tag you want to associate with the agent. The value can be an
empty string. This value helps you manage, filter, and search for your agents. Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @.
CreateAgentRequest.Builder tags(Consumer<TagListEntry.Builder>... tags)
The key-value pair that represents the tag you want to associate with the agent. The value can be an empty string. This value helps you manage, filter, and search for your agents.
Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @.
List.Builder
avoiding the
need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #tags(List)
.tags
- a consumer that will call methods on List.Builder
#tags(List)
CreateAgentRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
overrideConfiguration
- The override configuration.CreateAgentRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AwsRequest.Builder
overrideConfiguration
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfiguration.Builder
will be
given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.