Skip to content

Commit

Permalink
Support Batch Unique IDs Deletion.
Browse files Browse the repository at this point in the history
This change allows users to disable and enable the schedules associated with their tasks.
EMRonEKS Service support for SecurityConfiguration enforcement for Spark Jobs.
Launching capability for customers to enable or disable automatic assignment of public IPv4 addresses to their network interface
Add SSM DescribeInstanceProperties API to public AWS SDK.
Amazon GameLift releases container fleets support for public preview. Deploy Linux-based containerized game server software for hosting on Amazon GameLift.
  • Loading branch information
aws-sdk-cpp-automation committed Apr 24, 2024
1 parent e0e554f commit ce17a24
Show file tree
Hide file tree
Showing 586 changed files with 34,844 additions and 4,750 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.313
1.11.314
Original file line number Diff line number Diff line change
Expand Up @@ -519,11 +519,11 @@ namespace DataSync
}

/**
* <p>Configures a transfer task, which defines where and how DataSync moves your
* data.</p> <p>A task includes a source location, destination location, and the
* options for how and when you want to transfer your data (such as bandwidth
* limits, scheduling, among other options).</p> <p>If you're planning
* to transfer data to or from an Amazon S3 location, review <a
* <p>Configures a <i>task</i>, which defines where and how DataSync transfers your
* data.</p> <p>A task includes a source location, destination location, and
* transfer options (such as bandwidth limits, scheduling, and more).</p>
* <p>If you're planning to transfer data to or from an Amazon S3
* location, review <a
* href="https://docs.aws.amazon.com/datasync/latest/userguide/create-s3-location.html#create-s3-location-s3-requests">how
* DataSync can affect your S3 request charges</a> and the <a
* href="http://aws.amazon.com/datasync/pricing/">DataSync pricing page</a> before
Expand Down Expand Up @@ -1056,8 +1056,8 @@ namespace DataSync
}

/**
* <p>Provides information about an DataSync transfer task.</p><p><h3>See
* Also:</h3> <a
* <p>Provides information about a <i>task</i>, which defines where and how
* DataSync transfers your data.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/DescribeTask">AWS
* API Reference</a></p>
*/
Expand Down Expand Up @@ -1725,8 +1725,8 @@ namespace DataSync
}

/**
* <p>Updates the configuration of an DataSync transfer task.</p><p><h3>See
* Also:</h3> <a
* <p>Updates the configuration of a <i>task</i>, which defines where and how
* DataSync transfers your data.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/datasync-2018-11-09/UpdateTask">AWS
* API Reference</a></p>
*/
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -38,42 +38,50 @@ namespace Model


/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline const Aws::String& GetTaskArn() const{ return m_taskArn; }

/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline bool TaskArnHasBeenSet() const { return m_taskArnHasBeenSet; }

/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline void SetTaskArn(const Aws::String& value) { m_taskArnHasBeenSet = true; m_taskArn = value; }

/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline void SetTaskArn(Aws::String&& value) { m_taskArnHasBeenSet = true; m_taskArn = std::move(value); }

/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline void SetTaskArn(const char* value) { m_taskArnHasBeenSet = true; m_taskArn.assign(value); }

/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline DescribeTaskRequest& WithTaskArn(const Aws::String& value) { SetTaskArn(value); return *this;}

/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline DescribeTaskRequest& WithTaskArn(Aws::String&& value) { SetTaskArn(std::move(value)); return *this;}

/**
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task.</p>
* <p>Specifies the Amazon Resource Name (ARN) of the transfer task that you want
* information about.</p>
*/
inline DescribeTaskRequest& WithTaskArn(const char* value) { SetTaskArn(value); return *this;}

Expand Down
Loading

0 comments on commit ce17a24

Please sign in to comment.