Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2014-12-02 11:22:38 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2015-01-19 00:01:47 +0300
commitd4b08fad7b004bcaf57fb907956bfa2ab29b7a0c (patch)
tree91352a68c9ec4819324308cc0d471ef9fc61240d /thirdparty
parentbe09336a5a03f68e891ddc71a97dfc8b1959a743 (diff)
Updated AWS SDK for the S3 backend
Diffstat (limited to 'thirdparty')
-rw-r--r--thirdparty/AWS SDK/AWSSDK.diff475
-rw-r--r--thirdparty/AWS SDK/AWSSDK.dllbin1948672 -> 6146048 bytes
-rw-r--r--thirdparty/AWS SDK/AWSSDK.xml97310
3 files changed, 0 insertions, 97785 deletions
diff --git a/thirdparty/AWS SDK/AWSSDK.diff b/thirdparty/AWS SDK/AWSSDK.diff
deleted file mode 100644
index 006b15f5a..000000000
--- a/thirdparty/AWS SDK/AWSSDK.diff
+++ /dev/null
@@ -1,475 +0,0 @@
-Index: Amazon.S3/AmazonS3Client.cs
-===================================================================
---- Amazon.S3/AmazonS3Client.cs (revision 1)
-+++ Amazon.S3/AmazonS3Client.cs (working copy)
-@@ -3616,6 +3616,7 @@
-
- // Add the Timeout parameter
- parameters[S3QueryParameter.RequestTimeout] = request.Timeout.ToString();
-+ parameters[S3QueryParameter.RequestReadWriteTimeout] = request.ReadWriteTimeout.ToString();
-
- addS3QueryParameters(request, request.BucketName);
- }
-@@ -3739,6 +3740,7 @@
-
- // Add the Timeout parameter
- parameters[S3QueryParameter.RequestTimeout] = request.Timeout.ToString();
-+ parameters[S3QueryParameter.RequestReadWriteTimeout] = request.ReadWriteTimeout.ToString();
-
- // Add the Put Object specific headers to the request
- // 1. The Canned ACL
-@@ -3937,6 +3939,7 @@
-
- // Add the Timeout parameter
- parameters[S3QueryParameter.RequestTimeout] = request.Timeout.ToString();
-+ parameters[S3QueryParameter.RequestReadWriteTimeout] = request.ReadWriteTimeout.ToString();
-
- // Add the Copy Object specific headers to the request
- if (request.IsSetETagToMatch())
-@@ -4282,6 +4285,7 @@
-
- // Add the Timeout parameter
- parameters[S3QueryParameter.RequestTimeout] = request.Timeout.ToString();
-+ parameters[S3QueryParameter.RequestReadWriteTimeout] = request.ReadWriteTimeout.ToString();
-
-
- // Finally, add the S3 specific parameters and headers
-@@ -4339,6 +4343,7 @@
-
- // Add the Timeout parameter
- parameters[S3QueryParameter.RequestTimeout] = request.Timeout.ToString();
-+ parameters[S3QueryParameter.RequestReadWriteTimeout] = request.ReadWriteTimeout.ToString();
-
-
- // Finally, add the S3 specific parameters and headers
-@@ -5345,13 +5350,24 @@
- {
- int timeout = 0;
- Int32.TryParse(parameters[S3QueryParameter.RequestTimeout], out timeout);
-- if (timeout > 0)
-+ if (timeout > 0 || timeout == System.Threading.Timeout.Infinite)
- {
-- httpRequest.ReadWriteTimeout = timeout;
- httpRequest.Timeout = timeout;
- }
- }
-
-+ // While checking the Action, for Get, Put and Copy Object, set
-+ // the timeout to the value specified in the request.
-+ if (request.SupportReadWriteTimeout)
-+ {
-+ int readwritetimeout = 0;
-+ Int32.TryParse(parameters[S3QueryParameter.RequestReadWriteTimeout], out readwritetimeout);
-+ if (readwritetimeout > 0 || readwritetimeout == System.Threading.Timeout.Infinite)
-+ {
-+ httpRequest.ReadWriteTimeout = readwritetimeout;
-+ }
-+ }
-+
- httpRequest.Headers.Add(headers);
- httpRequest.Method = parameters[S3QueryParameter.Verb];
- httpRequest.ContentLength = contentLength;
-Index: Amazon.S3/Model/CopyObjectRequest.cs
-===================================================================
---- Amazon.S3/Model/CopyObjectRequest.cs (revision 1)
-+++ Amazon.S3/Model/CopyObjectRequest.cs (working copy)
-@@ -55,6 +55,7 @@
- internal NameValueCollection metaData;
- private S3CannedACL cannedACL;
- private int timeout = 0;
-+ private int readwritetimeout;
- private S3StorageClass storageClass;
-
- #endregion
-@@ -571,7 +572,7 @@
- get { return this.timeout; }
- set
- {
-- if (value > 0)
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
- {
- this.timeout = value;
- }
-@@ -602,6 +603,50 @@
-
- #endregion
-
-+ #region ReadWriteTimeout
-+
-+ /// <summary>
-+ /// Gets and sets of the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout properties of the
-+ /// HTTPWebRequest object used for S3 COPY requests.
-+ /// </summary>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public int ReadWriteTimeout
-+ {
-+ get { return this.readwritetimeout; }
-+ set
-+ {
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
-+ {
-+ this.readwritetimeout = value;
-+ }
-+ }
-+ }
-+
-+ /// <summary>
-+ /// Sets the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout property of the HttpWebRequest.
-+ /// </summary>
-+ /// <param name="readwritetimeout">ReadWriteTimeout property</param>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <returns>this instance</returns>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public CopyObjectRequest WithReadWriteTimeout(int readwritetimeout)
-+ {
-+ ReadWriteTimeout = readwritetimeout;
-+ return this;
-+ }
-+
-+ internal override bool SupportReadWriteTimeout
-+ {
-+ get { return true; }
-+ }
-+
-+ #endregion
-+
- #region SourceVersionId
-
- /// <summary>
-Index: Amazon.S3/Model/CopyPartRequest.cs
-===================================================================
---- Amazon.S3/Model/CopyPartRequest.cs (revision 1)
-+++ Amazon.S3/Model/CopyPartRequest.cs (working copy)
-@@ -51,6 +51,7 @@
- private DateTime? modifiedSinceDate;
- private DateTime? unmodifiedSinceDate;
- private int timeout = System.Threading.Timeout.Infinite;
-+ private int readwritetimeout = 0;
- private int? partNumber;
- private long? firstByte;
- private long? lastByte;
-@@ -506,6 +507,50 @@
-
- #endregion
-
-+ #region ReadWriteTimeout
-+
-+ /// <summary>
-+ /// Gets and sets of the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout properties of the
-+ /// HTTPWebRequest object used for S3 COPY requests.
-+ /// </summary>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public int ReadWriteTimeout
-+ {
-+ get { return this.readwritetimeout; }
-+ set
-+ {
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
-+ {
-+ this.readwritetimeout = value;
-+ }
-+ }
-+ }
-+
-+ /// <summary>
-+ /// Sets the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout property of the HttpWebRequest.
-+ /// </summary>
-+ /// <param name="readwritetimeout">ReadWriteTimeout property</param>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <returns>this instance</returns>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public CopyPartRequest WithReadWriteTimeout(int readwritetimeout)
-+ {
-+ ReadWriteTimeout = readwritetimeout;
-+ return this;
-+ }
-+
-+ internal override bool SupportReadWriteTimeout
-+ {
-+ get { return true; }
-+ }
-+
-+ #endregion
-+
- #region PartNumber
-
- /// <summary>
-Index: Amazon.S3/Model/GetObjectRequest.cs
-===================================================================
---- Amazon.S3/Model/GetObjectRequest.cs (revision 1)
-+++ Amazon.S3/Model/GetObjectRequest.cs (working copy)
-@@ -46,6 +46,7 @@
- string etagToNotMatch;
- Tuple<long, long> byteRange;
- int timeout = 0;
-+ int readwritetimeout = 0;
- ResponseHeaderOverrides _responseHeaders;
-
- #endregion
-@@ -408,18 +409,17 @@
- /// <summary>
- /// Gets and sets of the Timeout property (in milliseconds).
- /// The value of this property is assigned to the
-- /// ReadWriteTimeout and Timeout properties of the
-+ /// Timeout property of the
- /// HTTPWebRequest object used for S3 GET Object requests.
- /// </summary>
- /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-- /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- /// <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- public int Timeout
- {
- get { return this.timeout; }
- set
- {
-- if (value > 0)
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
- {
- this.timeout = value;
- }
-@@ -429,7 +429,7 @@
- /// <summary>
- /// Sets the Timeout property (in milliseconds).
- /// The value of this property is assigned to the
-- /// ReadWriteTimeout and Timeout properties of the
-+ /// Timeout property of the HttpWebRequest
- /// Please specify a timeout value only if you are certain that
- /// the file will not be retrieved within the default intervals
- /// specified for an HttpWebRequest.
-@@ -452,6 +452,50 @@
-
- #endregion
-
-+ #region ReadWriteTimeout
-+
-+ /// <summary>
-+ /// Gets and sets of the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout properties of the
-+ /// HTTPWebRequest object used for S3 GET Object requests.
-+ /// </summary>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public int ReadWriteTimeout
-+ {
-+ get { return this.readwritetimeout; }
-+ set
-+ {
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
-+ {
-+ this.readwritetimeout = value;
-+ }
-+ }
-+ }
-+
-+ /// <summary>
-+ /// Sets the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout property of the HttpWebRequest.
-+ /// </summary>
-+ /// <param name="readwritetimeout">ReadWriteTimeout property</param>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <returns>this instance</returns>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public GetObjectRequest WithReadWriteTimeout(int readwritetimeout)
-+ {
-+ ReadWriteTimeout = readwritetimeout;
-+ return this;
-+ }
-+
-+ internal override bool SupportReadWriteTimeout
-+ {
-+ get { return true; }
-+ }
-+
-+ #endregion
-+
- #region Response Headers
-
-
-Index: Amazon.S3/Model/PutObjectRequest.cs
-===================================================================
---- Amazon.S3/Model/PutObjectRequest.cs (revision 1)
-+++ Amazon.S3/Model/PutObjectRequest.cs (working copy)
-@@ -51,6 +51,7 @@
- private string contentBody;
- internal NameValueCollection metaData;
- private int timeout = 0;
-+ private int readwritetimeout = 0;
- private S3StorageClass storageClass;
- private bool autoCloseStream = true;
-
-@@ -501,7 +502,7 @@
- get { return this.timeout; }
- set
- {
-- if (value > 0)
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
- {
- this.timeout = value;
- }
-@@ -527,6 +528,51 @@
-
- #endregion
-
-+ #region ReadWriteTimeout
-+
-+ /// <summary>
-+ /// Gets and sets of the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout properties of the
-+ /// HTTPWebRequest object used for S3 PUT Object requests.
-+ /// </summary>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public int ReadWriteTimeout
-+ {
-+ get { return this.readwritetimeout; }
-+ set
-+ {
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
-+ {
-+ this.readwritetimeout = value;
-+ }
-+ }
-+ }
-+
-+ /// <summary>
-+ /// Sets the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout property of the HttpWebRequest.
-+ /// </summary>
-+ /// <param name="readwritetimeout">ReadWriteTimeout property</param>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <returns>this instance</returns>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public PutObjectRequest WithReadWriteTimeout(int readwritetimeout)
-+ {
-+ ReadWriteTimeout = readwritetimeout;
-+ return this;
-+ }
-+
-+ internal override bool SupportReadWriteTimeout
-+ {
-+ get { return true; }
-+ }
-+
-+ #endregion
-+
-+
- #region StorageClass
-
- /// <summary>
-Index: Amazon.S3/Model/S3Enumerations.cs
-===================================================================
---- Amazon.S3/Model/S3Enumerations.cs (revision 1)
-+++ Amazon.S3/Model/S3Enumerations.cs (working copy)
-@@ -92,6 +92,7 @@
- Range,
- RequestAddress,
- RequestTimeout,
-+ RequestReadWriteTimeout,
- Url,
- Verb,
- VerifyChecksum,
-Index: Amazon.S3/Model/S3Request.cs
-===================================================================
---- Amazon.S3/Model/S3Request.cs (revision 1)
-+++ Amazon.S3/Model/S3Request.cs (working copy)
-@@ -182,6 +182,11 @@
- get { return false; }
- }
-
-+ internal virtual bool SupportReadWriteTimeout
-+ {
-+ get { return false; }
-+ }
-+
- internal virtual bool Expect100Continue
- {
- get { return false; }
-Index: Amazon.S3/Model/UploadPartRequest.cs
-===================================================================
---- Amazon.S3/Model/UploadPartRequest.cs (revision 1)
-+++ Amazon.S3/Model/UploadPartRequest.cs (working copy)
-@@ -47,7 +47,7 @@
- private string md5Digest;
- private bool fGenerateMD5Digest;
- private int timeout = 0;
--
-+ private int readwritetimeout = 0;
- private string filePath;
- private long? filePosition;
-
-@@ -361,7 +361,7 @@
- get { return this.timeout; }
- set
- {
-- if (value > 0)
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
- {
- this.timeout = value;
- }
-@@ -392,8 +392,52 @@
-
- #endregion
-
-+ #region ReadWriteTimeout
-
- /// <summary>
-+ /// Gets and sets of the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout properties of the
-+ /// HTTPWebRequest object used for S3 PUT Object requests.
-+ /// </summary>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public int ReadWriteTimeout
-+ {
-+ get { return this.readwritetimeout; }
-+ set
-+ {
-+ if (value > 0 || value == System.Threading.Timeout.Infinite)
-+ {
-+ this.readwritetimeout = value;
-+ }
-+ }
-+ }
-+
-+ /// <summary>
-+ /// Sets the ReadWriteTimeout property (in milliseconds).
-+ /// The value of this property is assigned to the
-+ /// ReadWriteTimeout property of the HttpWebRequest.
-+ /// </summary>
-+ /// <param name="readwritetimeout">ReadWriteTimeout property</param>
-+ /// <remarks>A value less than or equal to 0 will be silently ignored</remarks>
-+ /// <returns>this instance</returns>
-+ /// <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
-+ public UploadPartRequest WithReadWriteTimeout(int readwritetimeout)
-+ {
-+ ReadWriteTimeout = readwritetimeout;
-+ return this;
-+ }
-+
-+ internal override bool SupportReadWriteTimeout
-+ {
-+ get { return true; }
-+ }
-+
-+ #endregion
-+
-+
-+ /// <summary>
- /// The event for Put Object progress notifications. All
- /// subscribers will be notified when a new progress
- /// event is raised.
diff --git a/thirdparty/AWS SDK/AWSSDK.dll b/thirdparty/AWS SDK/AWSSDK.dll
index 983a9d5b5..0f4caf8f6 100644
--- a/thirdparty/AWS SDK/AWSSDK.dll
+++ b/thirdparty/AWS SDK/AWSSDK.dll
Binary files differ
diff --git a/thirdparty/AWS SDK/AWSSDK.xml b/thirdparty/AWS SDK/AWSSDK.xml
deleted file mode 100644
index db77dae2b..000000000
--- a/thirdparty/AWS SDK/AWSSDK.xml
+++ /dev/null
@@ -1,97310 +0,0 @@
-<?xml version="1.0"?>
-<doc>
- <assembly>
- <name>AWSSDK</name>
- </assembly>
- <members>
- <member name="T:Amazon.SQS.Model.RemovePermissionRequest">
- <summary>
- Removes the permission with the specified statement id from the queue.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.RemovePermissionRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.RemovePermissionRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.RemovePermissionRequest.WithLabel(System.String)">
- <summary>
- Sets the Label property
- </summary>
- <param name="label">The identfication of the permission you want to remove. This is the label you added in AddPermission.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.RemovePermissionRequest.IsSetLabel">
- <summary>
- Checks if Label property is set
- </summary>
- <returns>true if Label property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.RemovePermissionRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.RemovePermissionRequest.Label">
- <summary>
- Gets and sets the Label property.
- The identfication of the permission you want to remove. This is the label you added in AddPermission.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.SubscribeResponse">
- <summary>
- Encapsulates the metadata and result of the Subscribe action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeResponse.IsSetSubscribeResult">
- <summary>
- Checks if SubscribeResult property is set
- </summary>
- <returns>true if SubscribeResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SubscribeResponse.SubscribeResult">
- <summary>
- Gets and sets the SubscribeResult property.
- Encapsulates the result of the Subscribe action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SubscribeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResponse">
- <summary>
- Encapsulates the metadata and result of the ConfirmSubscription action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResponse.IsSetConfirmSubscriptionResult">
- <summary>
- Checks if ConfirmSubscriptionResult property is set
- </summary>
- <returns>true if ConfirmSubscriptionResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResponse.ConfirmSubscriptionResult">
- <summary>
- Gets and sets the ConfirmSubscriptionResult property.
- Encapsulates the result of the ConfirmSubscription action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.AddPermissionRequest">
- <summary>
- The AddPermission action adds a statement to a topic's access control policy, granting access for the specified AWS accounts to the specified actions.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The ARN of the topic whose access control policy you wish to modify.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.WithLabel(System.String)">
- <summary>
- Sets the Label property
- </summary>
- <param name="label">A unique identifier for the new policy statement.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.IsSetLabel">
- <summary>
- Checks if Label property is set
- </summary>
- <returns>true if Label property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.WithAWSAccountIds(System.String[])">
- <summary>
- Sets the AWSAccountIds property
- </summary>
- <param name="list">The AWS account IDs of the users (principals) who will be given access to the specified
- actions. The users must have AWS accounts, but do not need to be signed up
- for this service.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.IsSetAWSAccountIds">
- <summary>
- Checks if AWSAccountIds property is set
- </summary>
- <returns>true if AWSAccountIds property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.WithActionNames(System.String[])">
- <summary>
- Sets the ActionNames property
- </summary>
- <param name="list">The action you want to allow for the specified principal(s).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionRequest.IsSetActionNames">
- <summary>
- Checks if ActionNames property is set
- </summary>
- <returns>true if ActionNames property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.AddPermissionRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The ARN of the topic whose access control policy you wish to modify.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.AddPermissionRequest.Label">
- <summary>
- Gets and sets the Label property.
- A unique identifier for the new policy statement.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.AddPermissionRequest.AWSAccountIds">
- <summary>
- Gets and sets the AWSAccountIds property.
- The AWS account IDs of the users (principals) who will be given access to the specified
- actions. The users must have AWS accounts, but do not need to be signed up
- for this service.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.AddPermissionRequest.ActionNames">
- <summary>
- Gets and sets the ActionNames property.
- The action you want to allow for the specified principal(s).
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.ListVerifiedEmailAddressesResultUnmarshaller">
- <summary>
- ListVerifiedEmailAddressesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.IUnmarshaller`2">
- <summary>
- Interface for unmarshallers which unmarshall objects from response data.
- The Unmarshallers are stateless, and only encode the rules for what data
- in the XML stream goes into what members of an object.
- </summary>
- <typeparam name="T">The type of object the unmarshaller returns</typeparam>
- <typeparam name="R">The type of the XML unmashaller context, which contains the
- state during parsing of the XML stream. Usually an instance of
- <c>Amazon.Runtime.Internal.Transform.UnmarshallerContext</c>.</typeparam>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.IUnmarshaller`2.Unmarshall(`1)">
- <summary>
- Given the current position in the XML stream, extract a T.
- </summary>
- <param name="input">The XML parsing context</param>
- <returns>An object of type T populated with data from the XML stream.</returns>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.ListVerifiedEmailAddressesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListVerifiedEmailAddresses operation
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.IResponseUnmarshaller`2">
- <summary>
- Interface for unmarshallers which unmarshall service responses.
- The Unmarshallers are stateless, and only encode the rules for what data
- in the XML stream goes into what members of an object.
- </summary>
- <typeparam name="T">The type of object the unmarshaller returns</typeparam>
- <typeparam name="R">The type of the XML unmashaller context, which contains the
- state of parsing the XML stream. Uaually an instance of
- <c>Amazon.Runtime.Internal.Transform.UnmarshallerContext</c>.</typeparam>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.IResponseUnmarshaller`2.Unmarshall(`1)">
- <summary>
- Given the current position in the XML stream, extract a T.
- </summary>
- <param name="input">The XML parsing context</param>
- <returns>An object of type T populated with data from the XML stream.</returns>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.IResponseUnmarshaller`2.UnmarshallException(`1,System.Exception,System.Net.HttpStatusCode)">
- <summary>
- Extracts an exeption with data from an ErrorResponse.
- </summary>
- <param name="input">The XML parsing context.</param>
- <param name="innerException">An inner exception to be included with the returned exception</param>
- <param name="statusCode">The HttpStatusCode from the ErrorResponse</param>
- <returns>Either an exception based on the ErrorCode from the ErrorResponse, or the
- general service exception for the service in question.</returns>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.GetSendStatisticsResultUnmarshaller">
- <summary>
- GetSendStatisticsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.AmazonSimpleDB">
- <summary>
- Amazon SimpleDB is a web service for running queries on structured
- data in real time. This service works in close conjunction with Amazon
- Simple Storage Service (Amazon S3) and Amazon Elastic Compute Cloud
- (Amazon EC2), collectively providing the ability to store, process
- and query data sets in the cloud. These services are designed to make
- web-scale computing easier and more cost-effective for developers.
- Traditionally, this type of functionality has been accomplished with
- a clustered relational database that requires a sizable upfront
- investment, brings more complexity than is typically needed, and often
- requires a DBA to maintain and administer. In contrast, Amazon SimpleDB
- is easy to use and provides the core functionality of a database -
- real-time lookup and simple querying of structured data without the
- operational complexity. Amazon SimpleDB requires no schema, automatically
- indexes your data and provides a simple API for storage and access.
- This eliminates the administrative burden of data modeling, index
- maintenance, and performance tuning. Developers gain access to this
- functionality within Amazon's proven computing environment, are able
- to scale instantly, and pay only for what they use.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginCreateDomain(Amazon.SimpleDB.Model.CreateDomainRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CreateDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.CreateDomain"/>
- </summary>
- <param name="request">The CreateDomainRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCreateDomain.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndCreateDomain(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CreateDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.CreateDomain"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCreateDomain.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a CreateDomainResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.CreateDomain(Amazon.SimpleDB.Model.CreateDomainRequest)">
- <summary>
- Create Domain
- </summary>
- <param name="request">Create Domain request</param>
- <returns>Create Domain Response from the service</returns>
- <remarks>
- The CreateDomain operation creates a new domain. The domain name must be unique
- among the domains associated with the Access Key ID provided in the request. The CreateDomain
- operation may take 10 or more seconds to complete.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginListDomains(Amazon.SimpleDB.Model.ListDomainsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListDomains operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.ListDomains"/>
- </summary>
- <param name="request">The ListDomainsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListDomains.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndListDomains(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListDomains operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.ListDomains"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListDomains.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a ListDomainsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.ListDomains(Amazon.SimpleDB.Model.ListDomainsRequest)">
- <summary>
- List Domains
- </summary>
- <param name="request">List Domains request</param>
- <returns>List Domains Response from the service</returns>
- <remarks>
- The ListDomains operation lists all domains associated with the Access Key ID. It returns
- domain names up to the limit set by MaxNumberOfDomains. A NextToken is returned if there are more
- than MaxNumberOfDomains domains. Calling ListDomains successive times with the
- NextToken returns up to MaxNumberOfDomains more domain names each time.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginDomainMetadata(Amazon.SimpleDB.Model.DomainMetadataRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DomainMetadata operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DomainMetadata"/>
- </summary>
- <param name="request">The DomainMetadataRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDomainMetadata.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndDomainMetadata(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DomainMetadata operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DomainMetadata"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDomainMetadata.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a DomainMetadataResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.DomainMetadata(Amazon.SimpleDB.Model.DomainMetadataRequest)">
- <summary>
- Domain Metadata
- </summary>
- <param name="request">Domain Metadata request</param>
- <returns>Domain Metadata Response from the service</returns>
- <remarks>
- The DomainMetadata operation returns some domain metadata values, such as the
- number of items, attribute names and attribute values along with their sizes.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginDeleteDomain(Amazon.SimpleDB.Model.DeleteDomainRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteDomain"/>
- </summary>
- <param name="request">The DeleteDomainRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteDomain.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndDeleteDomain(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteDomain"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteDomain.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a DeleteDomainResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteDomain(Amazon.SimpleDB.Model.DeleteDomainRequest)">
- <summary>
- Delete Domain
- </summary>
- <param name="request">Delete Domain request</param>
- <returns>Delete Domain Response from the service</returns>
- <remarks>
- The DeleteDomain operation deletes a domain. Any items (and their attributes) in the domain
- are deleted as well. The DeleteDomain operation may take 10 or more seconds to complete.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginPutAttributes(Amazon.SimpleDB.Model.PutAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.PutAttributes"/>
- </summary>
- <param name="request">The PutAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndPutAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.PutAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a PutAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.PutAttributes(Amazon.SimpleDB.Model.PutAttributesRequest)">
- <summary>
- Put Attributes
- </summary>
- <param name="request">Put Attributes request</param>
- <returns>Put Attributes Response from the service</returns>
- <remarks>
- The PutAttributes operation creates or replaces attributes within an item. You specify new attributes
- using a combination of the Attribute.X.Name and Attribute.X.Value parameters. You specify
- the first attribute by the parameters Attribute.0.Name and Attribute.0.Value, the second
- attribute by the parameters Attribute.1.Name and Attribute.1.Value, and so on.
- Attributes are uniquely identified within an item by their name/value combination. For example, a single
- item can have the attributes { "first_name", "first_value" } and { "first_name",
- second_value" }. However, it cannot have two attribute instances where both the Attribute.X.Name and
- Attribute.X.Value are the same.
- Optionally, the requestor can supply the Replace parameter for each individual value. Setting this value
- to true will cause the new attribute value to replace the existing attribute value(s). For example, if an
- item has the attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requestor does a
- PutAttributes of { 'b', '4' } with the Replace parameter set to true, the final attributes of the
- item will be { 'a', '1' } and { 'b', '4' }, replacing the previous values of the 'b' attribute
- with the new value.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginBatchPutAttributes(Amazon.SimpleDB.Model.BatchPutAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the BatchPutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchPutAttributes"/>
- </summary>
- <param name="request">The BatchPutAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndBatchPutAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndBatchPutAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the BatchPutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchPutAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginBatchPutAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a BatchPutAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BatchPutAttributes(Amazon.SimpleDB.Model.BatchPutAttributesRequest)">
- <summary>
- Batch Put Attributes
- </summary>
- <param name="request">Batch Put Attributes request</param>
- <returns>Batch Put Attributes Response from the service</returns>
- <remarks>
- The BatchPutAttributes operation creates or replaces attributes within one or more items.
- You specify the item name with the Item.X.ItemName parameter.
- You specify new attributes using a combination of the Item.X.Attribute.Y.Name and Item.X.Attribute.Y.Value parameters.
- You specify the first attribute for the first item by the parameters Item.0.Attribute.0.Name and Item.0.Attribute.0.Value,
- the second attribute for the first item by the parameters Item.0.Attribute.1.Name and Item.0.Attribute.1.Value, and so on.
- Attributes are uniquely identified within an item by their name/value combination. For example, a single
- item can have the attributes { "first_name", "first_value" } and { "first_name",
- second_value" }. However, it cannot have two attribute instances where both the Item.X.Attribute.Y.Name and
- Item.X.Attribute.Y.Value are the same.
- Optionally, the requestor can supply the Replace parameter for each individual value. Setting this value
- to true will cause the new attribute value to replace the existing attribute value(s). For example, if an
- item 'I' has the attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requestor does a
- BacthPutAttributes of {'I', 'b', '4' } with the Replace parameter set to true, the final attributes of the
- item will be { 'a', '1' } and { 'b', '4' }, replacing the previous values of the 'b' attribute
- with the new value.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginGetAttributes(Amazon.SimpleDB.Model.GetAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.GetAttributes"/>
- </summary>
- <param name="request">The GetAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndGetAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.GetAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a GetAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.GetAttributes(Amazon.SimpleDB.Model.GetAttributesRequest)">
- <summary>
- Get Attributes
- </summary>
- <param name="request">Get Attributes request</param>
- <returns>Get Attributes Response from the service</returns>
- <remarks>
- Returns all of the attributes associated with the item. Optionally, the attributes returned can be limited to
- the specified AttributeName parameter.
- If the item does not exist on the replica that was accessed for this operation, an empty attribute is
- returned. The system does not return an error as it cannot guarantee the item does not exist on other
- replicas.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginDeleteAttributes(Amazon.SimpleDB.Model.DeleteAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteAttributes"/>
- </summary>
- <param name="request">The DeleteAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndDeleteAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a DeleteAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteAttributes(Amazon.SimpleDB.Model.DeleteAttributesRequest)">
- <summary>
- Delete Attributes
- </summary>
- <param name="request">Delete Attributes request</param>
- <returns>Delete Attributes Response from the service</returns>
- <remarks>
- Deletes one or more attributes associated with the item. If all attributes of an item are deleted, the item is
- deleted.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginBatchDeleteAttributes(Amazon.SimpleDB.Model.BatchDeleteAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the BatchDeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchDeleteAttributes"/>
- </summary>
- <param name="request">The BatchDeleteAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndBatchDeleteAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndBatchDeleteAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the BatchDeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchDeleteAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginBatchDeleteAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a BatchDeleteAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BatchDeleteAttributes(Amazon.SimpleDB.Model.BatchDeleteAttributesRequest)">
- <summary>
- Batch Delete Attributes
- </summary>
- <param name="request">Batch Delete Attributes request</param>
- <returns>BatchDeleteAttributesResponse from the service</returns>
- <remarks>
- The BatchDeleteAttributes operation deletes attributes within one or more items.
- An item name and a collection of <see cref="T:Amazon.SimpleDB.Model.Attribute"/> is specified for each
- item to have attributes deleted for. If no attributes are specified then the entire item will be deleted.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.BeginSelect(Amazon.SimpleDB.Model.SelectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Select operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.Select"/>
- </summary>
- <param name="request">The SelectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSelect.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.EndSelect(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the Select operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.Select"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSelect.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a SelectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDB.Select(Amazon.SimpleDB.Model.SelectRequest)">
- <summary>
- Select
- </summary>
- <param name="request">Select request</param>
- <returns>Select Response from the service</returns>
- <remarks>
- The Select operation returns a set of item names and associate attributes that match the
- query expression. Select operations that run longer than 5 seconds will likely time-out
- and return a time-out error response.
- </remarks>
- </member>
- <member name="T:Amazon.S3.Model.SetBucketVersioningRequest">
- <summary>
- The SetBucketVersioningRequest contains the parameters used for the
- SetBucketVersioning operation.
- <br />Required Parameters: BucketName, VersioningConfig
- <br /> MfaCodes property is required if VersioningConfig.EnableMfaDelete = true
- <para>If you want to enable the use of a multi-factor authentication device
- on this bucket, please set the EnableMfaDelete property of VersioningConfig.
- If EnableMfaDelete is set to true, the MfaCodes property needs to be set with the
- Serial number and Current Token displayed on the MFA device.
- </para>
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Request">
- <summary>
- Base class for all S3 operation requests.
- Provides a header collection which can is used to store the request headers.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Request.IsSetHeaders">
- <summary>
- Checks if Headers property is set
- </summary>
- <returns>true if Headers property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Request.AddHeaders(System.Collections.Specialized.NameValueCollection)">
- <summary>
- Adds all of the key/value pairs from collection into our request header.
- </summary>
- <param name="collection">A collection of key/value headers</param>
- </member>
- <member name="M:Amazon.S3.Model.S3Request.AddHeader(System.String,System.String)">
- <summary>
- Adds the header to the collection of headers for the request.
- </summary>
- <param name="key">The name of the header for example Content-Disposition.</param>
- <param name="value">The value to be set for the header.</param>
- </member>
- <member name="M:Amazon.S3.Model.S3Request.WithInputStream(System.IO.Stream)">
- <summary>
- Sets the InputStream property.
- </summary>
- <param name="inputStream">InputStream property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Request.IsSetInputStream">
- <summary>
- Checks if InputStream property is set.
- </summary>
- <returns>true if InputStream property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3Request.Headers">
- <summary>
- Gets the Headers property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Request.InputStream">
- <summary>
- Gets and sets the InputStream property.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.SetBucketVersioningRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- The Versioning Status of this S3 Bucket is modified by the request.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetBucketVersioningRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetBucketVersioningRequest.WithVersioningConfig(Amazon.S3.Model.S3BucketVersioningConfig)">
- <summary>
- Sets the VersioningConfig property for this request.
- The request modifies the Versioning Status of the S3 Bucket to this value.
- </summary>
- <param name="config">The value that VersioningConfig is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetBucketVersioningRequest.IsSetVersioningConfig">
- <summary>
- Checks if VersioningConfig property is set.
- </summary>
- <returns>true if VersioningConfig property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetBucketVersioningRequest.WithMfaCodes(System.String,System.String)">
- <summary>
- Sets the MfaCodes property.
- The MfaCodes Tuple associates the Serial Number
- and the current Token/Code displayed on the
- Multi-Factor Authentication device associated with
- your AWS Account
- </summary>
- <param name="serial">Serial number of the authentication device</param>
- <param name="token">Token displayed on the authentication device</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetBucketVersioningRequest.IsSetMfaCodes">
- <summary>
- Checks if the MfaCodes property is set.
- </summary>
- <returns>true if the MfaCodes property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.SetBucketVersioningRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetBucketVersioningRequest.VersioningConfig">
- <summary>
- Gets and sets the VersioningConfig property.
- Once Versioning has been "Enabled" on a bucket, it can be "Suspended"
- but cannot be switched "Off". If EnableMfaDelete is set,
- the MfaCodes property needs to contain the Serial of and current Token
- displayed on the MFA device.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetBucketVersioningRequest.MfaCodes">
- <summary>
- Gets and Sets the MfaCodes property.
- The MfaCodes Tuple associates the Serial Number
- and the current Token/Code displayed on the
- Multi-Factor Authentication device associated with
- your AWS Account
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketLoggingResponse">
- <summary>
- The GetBucketLoggingResponse contains the GetBucketLoggingResult and
- any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Response">
- <summary>
- Base class for all S3 operation responses.
- Provides a header collection which is used to store the response headers.
- Also exposes the RequestId and AmazonId2 from S3 responses, as well as a
- Response Stream is the operation returned a stream.
- Lastly, if the response contained metadata, they are stored in the Metadata
- collection.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Response.webHeaders">
- <summary>
- web headers for all requests.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Response.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Response.Finalize">
- <summary>
- The destructor for the S3Response class.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Response.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Response.ProcessResponseBody(System.String)">
- <summary>
- A blank virtual method to allow sub classes to provide
- custom response body parsing.
- </summary>
- <param name="responseBody">The response from a request to S3</param>
- </member>
- <member name="P:Amazon.S3.Model.S3Response.RequestId">
- <summary>
- Gets and sets the RequestId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Response.AmazonId2">
- <summary>
- Gets and sets the AmzId2 property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Response.ResponseStream">
- <summary>
- Gets and sets the ResponseStream property. This property
- only has a valid value for GetObjectResponses. In order to
- use this stream without leaking the underlying resource, please
- wrap access to the stream within a using block.
- <code></code>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Response.Headers">
- <summary>
- Gets and sets the Headers property.
- Information like the request-id, the amz-id-2 are
- retrieved fro the Headers and presented to the user
- via properties of the response object.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Response.Metadata">
- <summary>
- Gets and sets the Metadata property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Response.ResponseXml">
- <summary>
- Gets and sets the ResponseXml property. This is the
- original xml response received from S3
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketLoggingResponse.BucketLoggingConfig">
- <summary>
- Gets and sets the LoggingConfig property.
- </summary>
- </member>
- <member name="T:Amazon.S3.AmazonS3Exception">
- <summary>
- Amazon S3 Exception provides details of errors returned by Amazon S3 service.
-
- In particular, this class provides access to S3's extended request ID, the Date,
- and the host ID which are required debugging information in the odd case that
- you need to contact Amazon about an issue where Amazon S3 is incorrectly handling
- a request.
-
- The ResponseHeaders property of the AmazonS3Exception contains all the HTTP headers
- in the Error Response returned by the S3 service.
- </summary>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor">
- <summary>
- Initializes a new AmazonS3Exception with default values.
- </summary>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.String)">
- <summary>
- Initializes a new AmazonS3Exception with a specified error message
- </summary>
- <param name="message">A message that describes the error</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.Exception)">
- <summary>
- Initializes a new AmazonS3Exception from the inner exception that is
- the cause of this exception.
- </summary>
- <param name="innerException">The nested exception that caused the AmazonS3Exception</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new AmazonS3Exception with serialized data.
- </summary>
- <param name="info">The object that holds the serialized object data.
- </param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Serializes this instance of AmazonS3Exception.
- </summary>
- <param name="info">The object that holds the serialized object data.</param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.String,System.Exception)">
- <summary>
- Initializes a new AmazonS3Exception with a specific error message and the inner exception
- that is the cause of this exception.
- </summary>
- <param name="message">Overview of error</param>
- <param name="innerException">The exception that is the cause of the current exception.
- If the innerException parameter is not a null reference, the current exception is
- raised in a catch block that handles the inner exception.</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.String,System.Net.HttpStatusCode)">
- <summary>
- Initializes an AmazonS3Exception with a specific message and
- HTTP status code
- </summary>
- <param name="message">Overview of error</param>
- <param name="statusCode">HTTP status code for error response</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.String,System.Net.HttpStatusCode,System.String,System.String,System.String,System.String,System.String,System.Net.WebHeaderCollection)">
- <summary>
- Initializes an AmazonS3Exception with error information provided in an
- AmazonS3 response.
- </summary>
- <param name="message">Overview of error</param>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="errorCode">Error Code returned by the service</param>
- <param name="requestId">Request ID returned by the service</param>
- <param name="hostId">S3 Host ID returned by the service</param>
- <param name="xml">Compete xml found in response</param>
- <param name="requestAddr">The S3 request url</param>
- <param name="responseHeaders">The response headers containing S3 specific information
- </param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.String,System.Net.HttpStatusCode,System.String,System.Net.WebHeaderCollection,System.Exception)">
- <summary>
- Initializes an AmazonS3Exception with error information provided in an
- AmazonS3 response and the inner exception that is the cause of the exception
- </summary>
- <param name="message">Overview of error</param>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="requestAddr">The S3 request url</param>
- <param name="responseHeaders">The response headers containing S3 specific information
- <param name="innerException">The nested exception that caused the AmazonS3Exception</param>
- </param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Exception.#ctor(System.Net.HttpStatusCode,System.String,System.String,System.Net.WebHeaderCollection,Amazon.S3.Model.S3Error)">
- <summary>
- Initializes an AmazonS3Exception with error information provided in an
- AmazonS3 response and the inner exception that is the cause of the exception
- </summary>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="xml">Compete xml found in response</param>
- <param name="requestAddr">The S3 request url</param>
- <param name="responseHeaders">The response headers containing S3 specific information
- <param name="error">The nested exception that caused the AmazonS3Exception</param>
- </param>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.HostId">
- <summary>
- Gets the HostId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.ErrorCode">
- <summary>
- Gets the ErrorCode property.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.Message">
- <summary>
- Gets error message
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.StatusCode">
- <summary>
- Gets status code returned by the service if available. If status
- code is set to -1, it means that status code was unavailable at the
- time exception was thrown
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.XML">
- <summary>
- Gets XML returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.RequestId">
- <summary>
- Gets Request ID returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.S3RequestAddress">
- <summary>
- Gets the S3 service address used to make this request.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Exception.ResponseHeaders">
- <summary>
- Gets the error response HTTP headers so that S3 specific information
- can be retrieved for debugging. Interesting fields are:
- a. x-amz-id-2
- b. Date
-
- A value can be retrieved from this HeaderCollection via:
- ResponseHeaders.Get("key");
- </summary>
- </member>
- <member name="T:Amazon.S3.AmazonS3Config">
- <summary>
- Configuration for Amazon S3 Client.
- </summary>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithServiceURL(System.String)">
- <summary>
- Sets the ServiceURL property
- </summary>
- <param name="serviceURL">ServiceURL property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.IsSetServiceURL">
- <summary>
- Checks if ServiceURL property is set
- </summary>
- <returns>true if ServiceURL property is set</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithUserAgent(System.String)">
- <summary>
- Sets the UserAgent property
- </summary>
- <param name="userAgent">UserAgent property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.IsSetUserAgent">
- <summary>
- Checks if UserAgent property is set
- </summary>
- <returns>true if UserAgent property is set</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithProxyHost(System.String)">
- <summary>
- Sets the ProxyHost property
- </summary>
- <param name="proxyHost">ProxyHost property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.IsSetProxyHost">
- <summary>
- Checks if ProxyHost property is set
- </summary>
- <returns>true if ProxyHost property is set</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithProxyPort(System.Int32)">
- <summary>
- Sets the ProxyPort property
- </summary>
- <param name="proxyPort">ProxyPort property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.IsSetProxyPort">
- <summary>
- Checks if ProxyPort property is set
- </summary>
- <returns>true if ProxyPort property is set</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithProxyUsername(System.String)">
- <summary>
- Sets the ProxyUsername property
- </summary>
- <param name="userName">Value for the ProxyUsername property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.IsSetProxyUsername">
- <summary>
- Checks if ProxyUsername property is set
- </summary>
- <returns>true if ProxyUsername property is set</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithProxyPassword(System.String)">
- <summary>
- Sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- <param name="password">ProxyPassword property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.IsSetProxyPassword">
- <summary>
- Checks if ProxyPassword property is set
- </summary>
- <returns>true if ProxyPassword property is set</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithMaxErrorRetry(System.Int32)">
- <summary>
- Sets the MaxErrorRetry property
- </summary>
- <param name="maxErrorRetry">MaxErrorRetry property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.IsSetMaxErrorRetry">
- <summary>
- Checks if MaxErrorRetry property is set
- </summary>
- <returns>true if MaxErrorRetry property is set</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithCommunicationProtocol(Amazon.S3.Model.Protocol)">
- <summary>
- Sets the Protocol property. Valid values are Protocol.HTTP
- and Protocol.HTTPS. Default is Protocol.HTTPS.
- </summary>
- <param name="protocol">The protocol to use</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Config.WithUseSecureStringForAwsSecretKey(System.Boolean)">
- <summary>
- Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <param name="fSecure">
- Whether a secure string should be used or not.
- </param>
- <returns>The Config object with the property set</returns>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.ServiceURL">
- <summary>
- Gets and sets the ServiceURL property.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.UserAgent">
- <summary>
- Gets and sets the UserAgent property.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.ProxyHost">
- <summary>
- Gets and sets the ProxyHost property.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.ProxyPort">
- <summary>
- Gets and sets the ProxyPort property.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.ProxyUsername">
- <summary>
- Gets and sets the ProxyUsername property.
- Used in conjunction with the ProxyPassword
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.ProxyPassword">
- <summary>
- Gets and sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.MaxErrorRetry">
- <summary>
- Gets and sets the MaxErrorRetry property.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.CommunicationProtocol">
- <summary>
- Gets and Sets the property that determines whether
- the HTTP or HTTPS protocol is used to make requests to the
- S3 service. By default Protocol.HTTPS is used to
- communicate with S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.UseSecureStringForAwsSecretKey">
- <summary>
- Gets and Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.S3.AmazonS3Config.BufferSize">
- <summary>
- Gets and Sets the BufferSize property.
- The BufferSize controls the buffer used to read in from input streams and write
- out to the request.
- </summary>
- </member>
- <member name="T:Amazon.S3.AmazonS3">
- <summary>
- Interface for Amazon S3 Clients.
- For more information about Amazon S3, go to <see href="http://aws.amazon.com/s3"/>
- </summary>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetPreSignedURL(Amazon.S3.Model.GetPreSignedUrlRequest)">
- <summary>
- The GetPreSignedURL operations creates a signed http request.
- Query string authentication is useful for giving HTTP or browser
- access to resources that would normally require authentication.
- When using query string authentication, you create a query,
- specify an expiration time for the query, sign it with your
- signature, place the data in an HTTP request, and distribute
- the request to a user or embed the request in a web page.
- A PreSigned URL can be generated for GET, PUT and HEAD
- operations on your bucket, keys, and versions.
- </summary>
- <param name="request">The GetPreSignedUrlRequest that defines the
- parameters of the operation.</param>
- <returns>A string that is the signed http request.</returns>
- <exception cref="T:System.ArgumentException" />
- <exception cref="T:System.ArgumentNullException" />
- </member>
- <member name="M:Amazon.S3.AmazonS3.ListBuckets">
- <summary>
- The ListBuckets operation returns a list of all of the buckets
- owned by the authenticated sender of the request.
- </summary>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListBucketsResponse with the response from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginListBuckets(System.AsyncCallback,System.Object)">
- <summary>
- The ListBuckets operation returns a list of all of the buckets
- owned by the authenticated sender of the request.
- </summary>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListBucketsResponse with the response from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginListBuckets(Amazon.S3.Model.ListBucketsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListBuckets operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The ListBucketsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListBuckets.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndListBuckets(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListBuckets operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListBuckets.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListBucketsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.ListBuckets(Amazon.S3.Model.ListBucketsRequest)">
- <summary>
- The ListBuckets operation returns a list of all of the buckets
- owned by the authenticated sender of the request.
- </summary>
- <param name="request">The ListBucketsRequest that defines the parameters
- of this operation</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListBucketsResponse with the response from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetBucketLocation(Amazon.S3.Model.GetBucketLocationRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketLocation operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The GetBucketLocationRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketLocation.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetBucketLocation(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketLocation operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketLocation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLocationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetBucketLocation(Amazon.S3.Model.GetBucketLocationRequest)">
- <summary>
- The GetBucketLocation operation takes in a bucket's name and lists the location
- of the bucket. This information can be used to determine the bucket's geographical
- location.
- To determine the location of a bucket, you must be the bucket owner.
- </summary>
- <param name="request">The GetBucketLocationRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLocationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetBucketLogging(Amazon.S3.Model.GetBucketLoggingRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketLogging operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The GetBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketLogging.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetBucketLogging(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketLogging operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketLogging.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetBucketLogging(Amazon.S3.Model.GetBucketLoggingRequest)">
- <summary>
- The GetBucketLogging operating gets the logging status for the bucket specified.
- For more information about S3Bucket Logging
- see <see href="http://docs.amazonwebservices.com/AmazonS3/latest/ServerLogs.html" />
- </summary>
- <param name="request">The GetBucketLoggingRequest that defines
- the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginEnableBucketLogging(Amazon.S3.Model.EnableBucketLoggingRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the EnableBucketLogging operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The EnableBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndEnableBucketLogging.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndEnableBucketLogging(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the EnableBucketLogging operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginEnableBucketLogging.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a EnableBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EnableBucketLogging(Amazon.S3.Model.EnableBucketLoggingRequest)">
- <summary>
- The EnableBucketLogging operation will turn on bucket logging for the bucket
- specified in the request.
-
- An Amazon S3 bucket can be configured to create access log records for the
- requests made against it. An access log record contains details about the
- request such as the request type, the resource with which the request worked,
- and the time and date that the request was processed. Server access logs are
- useful for many applications, because they give bucket owners insight into
- the nature of requests made by clients not under their control.
- </summary>
- <param name="request">The EnableBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a EnableBucketLoggingResponse from S3.</returns>
- <remarks>
- Changes to the logging status for a bucket are visible in the configuration API immediately,
- but they take time to actually affect the delivery of log files. For example, if you enable
- logging for a bucket, some requests made in the following hour might be logged, while others
- might not. Or, if you change the target bucket for logging from bucket A to bucket B, some
- logs for the next hour might continue to be delivered to bucket A, while others might be delivered
- to the new target bucket B. In all cases, the new settings will eventually take effect without any
- further action on your part.
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginDisableBucketLogging(Amazon.S3.Model.DisableBucketLoggingRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DisableBucketLogging operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DisableBucketLogging"/>
- </summary>
- <param name="request">The DisableBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDisableBucketLogging.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndDisableBucketLogging(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DisableBucketLogging operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDisableBucketLogging.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DisableBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.DisableBucketLogging(Amazon.S3.Model.DisableBucketLoggingRequest)">
- <summary>
- The DisableBucketLogging will turn off bucket logging for the bucket specified
- in the request.
-
- An Amazon S3 bucket can be configured to create access log records for the
- requests made against it. An access log record contains details about the
- request such as the request type, the resource with which the request worked,
- and the time and date that the request was processed. Server access logs are
- useful for many applications, because they give bucket owners insight into
- the nature of requests made by clients not under their control.
- </summary>
- <param name="request">
- The DisableBucketLoggingRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DisableBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetBucketVersioning(Amazon.S3.Model.GetBucketVersioningRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketVersioning operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetBucketVersioning"/>
- </summary>
- <param name="request">The GetBucketVersioningRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketVersioning.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetBucketVersioning(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketVersioning operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketVersioning.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketVersioningResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetBucketVersioning(Amazon.S3.Model.GetBucketVersioningRequest)">
- <summary>
- The GetBucketVersioning operation takes in a bucket's name and get the versioning
- status of the bucket.
- </summary>
- <param name="request">The GetBucketVersioningRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketVersioningResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3BucketVersioningConfig"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginSetBucketVersioning(Amazon.S3.Model.SetBucketVersioningRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the SetBucketVersioning operation.
- <seealso cref="M:Amazon.S3.AmazonS3.SetBucketVersioning"/>
- </summary>
- <param name="request">The SetBucketVersioningRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSetBucketVersioning.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndSetBucketVersioning(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the SetBucketVersioning operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSetBucketVersioning.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetBucketVersioningResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.SetBucketVersioning(Amazon.S3.Model.SetBucketVersioningRequest)">
- <summary>
- The SetBucketVersioning operation takes in a bucket's name and the versioning
- status you want to set on the bucket.
- <para>Valid values for the Versioning Status are Enabled and Suspended.
- Once Versioning has been "Enabled" on a bucket, it can be "Suspended"
- but cannot be switched "Off".</para>
- </summary>
- <param name="request">The SetBucketVersioningRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentException">
- If SetBucketVersioningRequest.VersioningStatus has the value S3BucketVersioningStatus.Off
- </exception>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetBucketVersioningResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3BucketVersioningConfig"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetBucketPolicy(Amazon.S3.Model.GetBucketPolicyRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketPolicy operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetBucketPolicy"/>
- </summary>
- <param name="request">The GetBucketPolicyRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketPolicy.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetBucketPolicy(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketPolicy operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketPolicy.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketPolicyResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetBucketPolicy(Amazon.S3.Model.GetBucketPolicyRequest)">
- <summary>
- <para>
- Retrieves the policy for the specified bucket. Only the owner of the
- bucket can retrieve the policy. If no policy has been set for the bucket,
- then an error will be thrown.
- </para>
- <para>
- Bucket policies provide access control management at the bucket level for
- both the bucket resource and contained object resources. Only one policy
- can be specified per-bucket.
- </para>
- <para>
- For more information on forming bucket polices,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/"/>
- </para>
- </summary>
- <param name="request">The GetBucketPolicyRequest that defines the parameters of the operation.</param>
- <returns>Returns a GetBucketPolicyResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginPutBucketPolicy(Amazon.S3.Model.PutBucketPolicyRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutBucketPolicy operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutBucketPolicy"/>
- </summary>
- <param name="request">The PutBucketPolicyRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutBucketPolicy.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndPutBucketPolicy(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutBucketPolicy operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutBucketPolicy.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketPolicyResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.PutBucketPolicy(Amazon.S3.Model.PutBucketPolicyRequest)">
- <summary>
- <para>
- Sets the policy associated with the specified bucket. Only the owner of
- the bucket can set a bucket policy. If a policy already exists for the
- specified bucket, the new policy will replace the existing policy.
- </para>
- <para>
- Bucket policies provide access control management at the bucket level for
- both the bucket resource and contained object resources. Only one policy
- may be specified per-bucket.
- </para>
- <para>
- For more information on forming bucket polices,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/"/>
- </para>
- </summary>
- <param name="request">The PutBucketPolicyRequest that defines the parameters of the operation.</param>
- <returns>Returns a PutBucketPolicyResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginDeleteBucketPolicy(Amazon.S3.Model.DeleteBucketPolicyRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteBucketPolicy operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteBucketPolicy"/>
- </summary>
- <param name="request">The DeleteBucketPolicyRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteBucketPolicy.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndDeleteBucketPolicy(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteBucketPolicy operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteBucketPolicy.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketPolicyResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.DeleteBucketPolicy(Amazon.S3.Model.DeleteBucketPolicyRequest)">
- <summary>
- <para>
- Deletes the policy associated with the specified bucket. Only the owner
- of the bucket can delete the bucket policy.
- </para>
- <para>
- If you delete a policy that does not exist, Amazon S3 will return a
- success (not an error message).
- </para>
- <para>
- Bucket policies provide access control management at the bucket level for
- both the bucket resource and contained object resources. Only one policy
- may be specified per-bucket.
- </para>
- <para>
- For more information on forming bucket polices,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/"/>
- </para>
- </summary>
- <param name="request">The DeleteBucketPolicyRequest that defines the parameters of the operation.</param>
- <returns>Returns a DeleteBucketPolicyResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginSetNotificationConfiguration(Amazon.S3.Model.SetNotificationConfigurationRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the SetNotificationConfiguration operation.
- <seealso cref="M:Amazon.S3.AmazonS3.SetNotificationConfiguration"/>
- </summary>
- <param name="request">The SetNotificationConfigurationRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSetNotificationConfiguration.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndSetNotificationConfiguration(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the SetNotificationConfiguration operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSetNotificationConfiguration.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetNotificationConfigurationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.SetNotificationConfiguration(Amazon.S3.Model.SetNotificationConfigurationRequest)">
- <summary>
- <para>
- The notification configuration of a bucket provides near realtime notifications
- of events the user is interested in, using SNS as the delivery service.
- Notification is turned on by enabling configuration on a bucket, specifying
- the events and the SNS topic. This configuration can only be turned
- on by the bucket owner. If a notification configuration already exists for the
- specified bucket, the new notification configuration will replace the existing
- notification configuration. To remove the notification configuration pass in
- an empty request. Currently, buckets may only have a single event and topic
- configuration.
- </para>
- <para>
- S3 is eventually consistent. It may take time for the notification status
- of a bucket to be propagated throughout the system.
- </para>
- </summary>
- <param name="request">The SetNotificationConfigurationRequest that defines the parameters of the operation.</param>
- <returns>Returns a SetNotificationConfigurationResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetNotificationConfiguration(Amazon.S3.Model.GetNotificationConfigurationRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetNotificationConfiguration operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetNotificationConfiguration"/>
- </summary>
- <param name="request">The GetNotificationConfigurationRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetNotificationConfiguration.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetNotificationConfiguration(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetNotificationConfiguration operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetNotificationConfiguration.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetNotificationConfigurationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetNotificationConfiguration(Amazon.S3.Model.GetNotificationConfigurationRequest)">
- <summary>
- <para>
- Retrieves the notification configuration for the specified bucket. Only the owner of the
- bucket can retrieve the notification configuration.
- </para>
- </summary>
- <param name="request">The GetNotificationConfigurationRequest that defines the parameters of the operation.</param>
- <returns>Returns a GetNotificationConfigurationResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginListObjects(Amazon.S3.Model.ListObjectsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListObjects operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListObjects"/>
- </summary>
- <param name="request">The ListObjectsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListObjects.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndListObjects(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListObjects operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListObjects.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListObjectsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.ListObjects(Amazon.S3.Model.ListObjectsRequest)">
- <summary>
- The ListObjects operation lists the objects/keys in a bucket ordered
- lexicographically (from a-Z). The list can be filtered via the Marker
- property of the ListObjectsRequest.
- In order to List Objects, you must have READ access to the bucket.
- </summary>
- <param name="request">
- The ListObjectsRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListObjectsResponse from S3 with a list of S3Objects,
- headers and request parameters used to filter the list.</returns>
- <remarks>
- Since buckets can contain a virtually unlimited number of objects, the complete
- results of a list query can be extremely large. To manage large result sets,
- Amazon S3 uses pagination to split them into multiple responses. Callers should
- always check the <see cref="P:Amazon.S3.Model.ListObjectsResponse.IsTruncated" />
- to see if the returned listing
- is complete, or if callers need to make additional calls to get more results.
- The marker parameter allows callers to specify where to start the object listing.
- List performance is not substantially affected by the total number of keys in your
- bucket, nor by the presence or absence of any additional query parameters.
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginListVersions(Amazon.S3.Model.ListVersionsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListVersions operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListVersions"/>
- </summary>
- <param name="request">The ListVersionsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListVersions.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndListVersions(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListVersions operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListVersions.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListVersionsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.ListVersions(Amazon.S3.Model.ListVersionsRequest)">
- <summary>
- The ListVersions operation returns a list of object versions in the bucket
- specified ordered first by key and then by version. Keys are sorted lexicographically
- (i.e. alphabetically from a-Z); versions are sorted from most to least recent.
- Both versions with data and delete markers are included in the results.
- <para>
- In order to List Versions, you must have READ access to the bucket.
- When the list is not filtered by a specific key, only the metadata
- associated with the latest version of objects in the bucket is returned.
- The use of KeyMarker and VersionIdMarker allow you to filter results.</para>
- </summary>
- <param name="request">
- The ListVersionsRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListVersionsResponse from S3 that contains a list of
- versions along with metadata and the original request parameters.</returns>
- <remarks>
- Since buckets can contain a virtually unlimited number of objects, the complete
- results of a list query can be extremely large. To manage large result sets,
- Amazon S3 uses pagination to split them into multiple responses. Callers should
- always check the <see cref="P:Amazon.S3.Model.ListVersionsResonse.IsTruncated" />
- to see if the returned listing
- is complete, or if callers need to make additional calls to get more results.
- The KeyMarker and VersionIdMarker parameters of the ListVersionsRequest object
- allow callers to specify where to start the version listing. In order to enable
- versioning on a bucket, please refer to the
- <see cref="M:Amazon.S3.AmazonS3Client.SetBucketVersioning">SetBucketVersioning</see>
- operation's details.
- <br />List performance is not substantially affected by the total number of keys in your
- bucket, nor by the presence or absence of any additional query parameters.
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetACL(Amazon.S3.Model.GetACLRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetACL operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetACL"/>
- </summary>
- <param name="request">The GetACLRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetACL.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetACL(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetACL operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetACL.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetACLResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetACL(Amazon.S3.Model.GetACLRequest)">
- <summary>
- The GetACL operation gets the S3AccessControlList for a given bucket or object.
- Each bucket and object in Amazon S3 has an ACL that defines its access control
- policy, which is a list of grants. A grant consists of one grantee and one permission.
- ACLs only grant permissions; they do not deny them.
- </summary>
- <param name="request">
- The GetACLRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetACLResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3AccessControlList"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginSetACL(Amazon.S3.Model.SetACLRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the SetACL operation.
- <seealso cref="M:Amazon.S3.AmazonS3.SetACL"/>
- </summary>
- <param name="request">The SetACLRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSetACL.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndSetACL(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the SetACL operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSetACL.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetACLResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.SetACL(Amazon.S3.Model.SetACLRequest)">
- <summary>
- The SetACL operation gets the S3AccessControlList for a given bucket or object.
- Each bucket and object in Amazon S3 has an ACL that defines its access control
- policy, which is a list of grants. A grant consists of one grantee and one permission.
- ACLs only grant permissions; they do not deny them.
- </summary>
- <remarks>
- Often used ACLs are defined in the S3CannedACL enumeration.
- </remarks>
- <param name="request">
- The SetACLRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetACLResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3AccessControlList"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginPutBucket(Amazon.S3.Model.PutBucketRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutBucket operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutBucket"/>
- </summary>
- <param name="request">The PutBucketRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutBucket.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndPutBucket(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutBucket operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutBucket.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.PutBucket(Amazon.S3.Model.PutBucketRequest)">
- <summary>
- The PutBucket operation creates a new S3 Bucket.
- Depending on your latency and legal requirements, you can specify a location
- constraint that will affect where your data physically resides.
- </summary>
- <param name="request">
- The PutBucketRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketResponse from S3.</returns>
- <remarks>
- Every object stored in Amazon S3 is contained in a bucket. Buckets
- partition the namespace of objects stored in Amazon S3 at the top level.
- Within a bucket, you can use any names for your objects, but bucket names
- must be unique across all of Amazon S3.
- <para>
- Buckets are similar to Internet domain names. Just as Amazon is the only owner
- of the domain name Amazon.com, only one person or organization can own a bucket
- within Amazon S3. The similarities between buckets and domain names is not a
- coincidence - there is a direct mapping between Amazon S3 buckets and subdomains
- of s3.amazonaws.com. Objects stored in Amazon S3 are addressable using the REST API
- under the domain bucketname.s3.amazonaws.com. For example, the object homepage.html
- stored in the Amazon S3 bucket mybucket can be addressed as
- http://mybucket.s3.amazonaws.com/homepage.html.</para>
- To conform with DNS requirements, the following constraints apply:
- <list type="bullet">
- <item>Bucket names should not contain underscores (_)</item>
- <item>Bucket names should be between 3 and 63 characters long</item>
- <item>Bucket names should not end with a dash</item>
- <item>Bucket names cannot contain two, adjacent periods</item>
- <item>Bucket names cannot contain dashes next to periods
- (e.g., "my-.bucket.com" and "my.-bucket" are invalid)</item>
- <item>Bucket names cannot contain uppercase characters</item>
- </list>
- There is no limit to the number of objects that can be stored in a bucket and no
- variation in performance when using many buckets or just a few. You can store all
- of your objects in a single bucket or organize them across several buckets.
- </remarks>
- <seealso cref="T:Amazon.S3.Model.S3Region"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginDeleteBucket(Amazon.S3.Model.DeleteBucketRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteBucket operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteBucket"/>
- </summary>
- <param name="request">The DeleteBucketRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteBucket.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndDeleteBucket(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteBucket operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteBucket.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.DeleteBucket(Amazon.S3.Model.DeleteBucketRequest)">
- <summary>
- The DeleteBucket operation deletes the bucket named in the request.
- All objects in the bucket must be deleted before the bucket itself can be deleted.
- Only the owner of a bucket can delete it, regardless of the bucket's access control policy.
- </summary>
- <param name="request">
- The DeleteBucketRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetObject(Amazon.S3.Model.GetObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetObject"/>
- </summary>
- <param name="request">The GetObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetObject(Amazon.S3.Model.GetObjectRequest)">
- <summary>
- The GetObject operation fetches the most recent version of an S3 object
- from the specified S3 bucket. You must have READ access to the object.
- If READ access is granted to an anonymous user, an object can be retrieved
- without an authorization header. Providing a version-id for the object will
- fetch the specific version from S3 instead of the most recent one.
- </summary>
- <param name="request">
- The GetObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectResponse from S3.</returns>
- <remarks>
- Please wrap the response you get from calling GetObject in a using clause.
- This ensures that all underlying IO resources allocated for the response
- are disposed once the response has been processed. This is one way to
- call GetObject:
- <code>
- using (GetObjectResponse response = s3Client.GetObject(request))
- {
- ... Process the response:
- Get the Stream, get the content-length, write contents to disk, etc
- }
- </code>
- To see what resources are cleaned up at the end of the using block, please
- see <see cref="M:Amazon.S3.Model.S3Response.Dispose"/>
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetObjectMetadata(Amazon.S3.Model.GetObjectMetadataRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetObjectMetadata operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetObjectMetadata"/>
- </summary>
- <param name="request">The GetObjectMetadataRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetObjectMetadata.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetObjectMetadata(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetObjectMetadata operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetObjectMetadata.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectMetadataResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetObjectMetadata(Amazon.S3.Model.GetObjectMetadataRequest)">
- <summary>
- The GetObjectMetadata operation is used to retrieve information about a specific object
- or object size, without actually fetching the object itself. This is useful if you're
- only interested in the object metadata, and don't want to waste bandwidth on the object data.
- The response is identical to the GetObject response, except that there is no response body.
- </summary>
- <param name="request">
- The GetObjectMetadataRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectMetadataResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginPutObject(Amazon.S3.Model.PutObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutObject"/>
- </summary>
- <param name="request">The PutObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndPutObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.PutObject(Amazon.S3.Model.PutObjectRequest)">
- <summary>
- The PutObject operation adds an object to an S3 Bucket.
- The response indicates that the object has been successfully stored.
- Amazon S3 never stores partial objects: if you receive a successful
- response, then you can be confident that the entire object was stored.
-
- To ensure data is not corrupted over the network, use the Content-MD5
- header. When you use the Content-MD5 header, Amazon S3 checks the object
- against the provided MD5 value. If they do not match, Amazon S3 returns an error.
- Additionally, you can calculate the MD5 while putting an object to
- Amazon S3 and compare the returned Etag to the calculated MD5 value.
-
- If an object already exists in a bucket, the new object will overwrite
- it because Amazon S3 stores the last write request. However, Amazon S3
- is a distributed system. If Amazon S3 receives multiple write requests
- for the same object nearly simultaneously, all of the objects might be
- stored, even though only one wins in the end. Amazon S3 does not provide
- object locking; if you need this, make sure to build it into your application
- layer.
-
- If you specify a location constraint when creating a bucket, all objects
- added to the bucket are stored in the bucket's location.
-
- You must have WRITE access to the bucket to add an object.
- </summary>
- <param name="request">
- The PutObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentException"></exception>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <exception cref="T:System.IO.FileNotFoundException"></exception>
- <returns>Returns a PutObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginDeleteObject(Amazon.S3.Model.DeleteObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteObject"/>
- </summary>
- <param name="request">The DeleteObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndDeleteObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.DeleteObject(Amazon.S3.Model.DeleteObjectRequest)">
- <summary>
- The DeleteObject operation removes the specified object from Amazon S3.
- Once deleted, there is no method to restore or undelete an object.
-
- If you delete an object that does not exist, Amazon S3 will return a
- success (not an error message).
- </summary>
- <param name="request">
- The DeleteObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginCopyObject(Amazon.S3.Model.CopyObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CopyObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.CopyObject"/>
- </summary>
- <param name="request">The CopyObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCopyObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndCopyObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CopyObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCopyObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CopyObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.CopyObject(Amazon.S3.Model.CopyObjectRequest)">
- <summary>
- The copy operation creates a copy of an object that is already stored in Amazon S3.
- When copying an object, you can preserve all metadata (default) or specify new metadata.
- However, the ACL is not preserved and is set to private for the user making the request.
- To override the default ACL setting, specify a new ACL when generating a copy request.
- If versioning has been enabled on the source bucket, and you want to copy a specific
- version of an object, please use
- <see cref="P:Amazon.S3.Model.CopyObjectRequest.SourceVersionId" /> to specify the
- version. By default, the most recent version of an object is copied to the
- destination bucket.
- </summary>
- <param name="request">
- The CopyObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CopyObjectResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3AccessControlList"/>
- <remarks>
- If Versioning has been enabled on the target bucket, S3 generates a
- unique version ID for the object being copied. This version ID is different
- from the version ID of the source object. Additionally, S3 returns the version
- ID of the copied object in the x-amz-version-id response header in the response.
- If you do not enable Versioning or suspend it on the target bucket, the version ID
- S3 generates is always the string literal - "null".
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginInitiateMultipartUpload(Amazon.S3.Model.InitiateMultipartUploadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the InitiateMultipartUpload operation.
- <seealso cref="M:Amazon.S3.AmazonS3.InitiateMultipartUpload"/>
- </summary>
- <param name="request">The InitiateMultipartUploadRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndInitiateMultipartUpload.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndInitiateMultipartUpload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the InitiateMultipartUpload operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginInitiateMultipartUpload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a InitiateMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.InitiateMultipartUpload(Amazon.S3.Model.InitiateMultipartUploadRequest)">
- <summary>
- This method initiates a multipart upload and returns an InitiateMultipartUploadResponse
- which contains an upload ID. This upload ID associates all the
- parts in the specific upload. You specify this upload ID in each of
- your subsequent Upload Part requests. You also include
- this upload ID in the final request to either complete, or abort
- the multipart upload request.
- </summary>
- <param name="request">
- The CopyObjectRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a InitiateMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginUploadPart(Amazon.S3.Model.UploadPartRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the UploadPart operation.
- <seealso cref="M:Amazon.S3.AmazonS3.UploadPart"/>
- </summary>
- <param name="request">The UploadPartRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUploadPart.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndUploadPart(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the UploadPart operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginUploadPart.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a UploadPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.UploadPart(Amazon.S3.Model.UploadPartRequest)">
- <summary>
- This method uploads a part in a multipart upload. You must initiate a
- multipart upload before you can upload any part.
- <para>
- Your UploadPart request must include an upload ID and a part number.
- The upload ID is the ID returned by Amazon S3 in response to your
- Initiate Multipart Upload request. Part number can be any number between 1 and
- 10,000, inclusive. A part number uniquely identifies a part and also
- defines its position within the object being uploaded. If you
- upload a new part using the same part number as an existing
- part, that part is overwritten.
- </para>
- <para>
- To ensure data is not corrupted traversing the network, specify the
- Content-MD5 header in the Upload Part request. Amazon S3 checks
- the part data against the provided MD5 value. If they do not match,
- Amazon S3 returns an error.
- </para>
- <para>
- When you upload a part, the UploadPartResponse response contains an ETag property.
- You should record this ETag property value and the part
- number. After uploading all parts, you must send a CompleteMultipartUpload
- request. At that time Amazon S3 constructs a complete object by
- concatenating all the parts you uploaded, in ascending order based on
- the part numbers. The CompleteMultipartUpload request requires you to
- send all the part numbers and the corresponding ETag values.
- </para>
- </summary>
- <param name="request">
- The UploadPartRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a UploadPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginCopyPart(Amazon.S3.Model.CopyPartRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CopyPart operation.
- <seealso cref="M:Amazon.S3.AmazonS3.UploadPart"/>
- </summary>
- <param name="request">The CopyPartRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCopyPart.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndCopyPart(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CopyPart operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCopyPart.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CopyPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.CopyPart(Amazon.S3.Model.CopyPartRequest)">
- <summary>
- This method creates a part in a multipart upload from an existing Amazon S3 Object.
- You must initiate a multipart upload before you can copy a part.
- <para>
- Your CopyPart request must include an upload ID and a part number.
- The upload ID is the ID returned by Amazon S3 in response to your
- Initiate Multipart Upload request. Part number can be any number between 1 and
- 10,000, inclusive. A part number uniquely identifies a part and also
- defines its position within the object being uploaded. If you
- copy a part using the same part number as an existing part, that part is overwritten.
- </para>
- <para>
- When you copy a part, the CopyPartResponse response contains an ETag property.
- You should record this ETag property value and the part
- number. After uploading all parts, you must send a CompleteMultipartUpload
- request. At that time Amazon S3 constructs a complete object by
- concatenating all the parts you uploaded, in ascending order based on
- the part numbers. The CompleteMultipartUpload request requires you to
- send all the part numbers and the corresponding ETag values.
- </para>
- </summary>
- <param name="request">
- The CopyPartRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a CopyPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginListParts(Amazon.S3.Model.ListPartsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListParts operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListParts"/>
- </summary>
- <param name="request">The ListPartsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListParts.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndListParts(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListParts operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListParts.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListPartsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.ListParts(Amazon.S3.Model.ListPartsRequest)">
- <summary>
- This method lists the parts that have been uploaded
- for a particular multipart upload.
- <para>
- This method must include the upload ID, returned by
- the InitiateMultipartUpload request. This request
- returns a maximum of 1000 uploaded parts by default. You can
- restrict the number of parts returned by specifying the
- MaxParts property on the ListPartsRequest. If your multipart
- upload consists of more parts than allowed in the
- ListParts response, the response returns a IsTruncated
- field with value true, and a NextPartNumberMarker property.
- In subsequent ListParts request you can include the
- PartNumberMarker property and set its value to the
- NextPartNumberMarker property value from the previous response.
- </para>
- </summary>
- <param name="request">
- The ListPartsRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a ListPartsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginAbortMultipartUpload(Amazon.S3.Model.AbortMultipartUploadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the AbortMultipartUpload operation.
- <seealso cref="M:Amazon.S3.AmazonS3.AbortMultipartUpload"/>
- </summary>
- <param name="request">The AbortMultipartUploadRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndAbortMultipartUpload.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndAbortMultipartUpload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the AbortMultipartUpload operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginAbortMultipartUpload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a AbortMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.AbortMultipartUpload(Amazon.S3.Model.AbortMultipartUploadRequest)">
- <summary>
- This method aborts a multipart upload. After a multipart upload is
- aborted, no additional parts can be uploaded using that upload ID.
- The storage consumed by any previously uploaded parts will be freed.
- However, if any part uploads are currently in progress, those part
- uploads may or may not succeed. As a result, it may be necessary to
- abort a given multipart upload multiple times in order to completely free
- all storage consumed by all parts.
- </summary>
- <param name="request">
- The AbortMultipartUploadRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a AbortMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginCompleteMultipartUpload(Amazon.S3.Model.CompleteMultipartUploadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CompleteMultipartUpload operation.
- <seealso cref="M:Amazon.S3.AmazonS3.CompleteMultipartUpload"/>
- </summary>
- <param name="request">The CompleteMultipartUploadRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCompleteMultipartUpload.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndCompleteMultipartUpload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CompleteMultipartUpload operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCompleteMultipartUpload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CompleteMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.CompleteMultipartUpload(Amazon.S3.Model.CompleteMultipartUploadRequest)">
- <summary>
- This operation completes a multipart upload by assembling
- previously uploaded parts.
- <para>
- You first upload all parts using the UploadPart method.
- After successfully uploading all relevant parts of an upload,
- you call this operation to complete the upload. Upon receiving
- this request, Amazon S3 concatenates all the parts in ascending
- order by part number to create a new object. In the
- CompleteMultipartUpload request, you must provide the
- parts list. For each part in the list, you provide the
- part number and the ETag header value, returned after that
- part was uploaded.
- </para>
- <para>
- Processing of a CompleteMultipartUpload request may take
- several minutes to complete.
- </para>
- </summary>
- <param name="request">
- The CompleteMultipartUploadRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a CompleteMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginListMultipartUploads(Amazon.S3.Model.ListMultipartUploadsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListMultipartUploads operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListMultipartUploads"/>
- </summary>
- <param name="request">The ListMultipartUploadsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListMultipartUploads.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndListMultipartUploads(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListMultipartUploads operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListMultipartUploads.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListMultipartUploadsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.ListMultipartUploads(Amazon.S3.Model.ListMultipartUploadsRequest)">
- <summary>
- This operation lists in-progress multipart uploads. An in-progress
- multipart upload is a multipart upload that has been initiated,
- using the InitiateMultipartUpload request, but has not yet been
- completed or aborted.
- <para>
- This operation returns at most 1,000 multipart uploads in the
- response by default. The number of multipart uploads can be further
- limited using the MaxUploads property on the request parameter. If there are
- additional multipart uploads that satisfy the list criteria, the
- response will contain an IsTruncated property with the value set to true.
- To list the additional multipart uploads use the KeyMarker and
- UploadIdMarker properties on the request parameters.
- </para>
- </summary>
- <param name="request">
- The ListMultipartUploadsRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a ListMultipartUploadsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginPutBucketWebsite(Amazon.S3.Model.PutBucketWebsiteRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutBucketWebsite operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutBucketWebsite"/>
- </summary>
- <param name="request">The PutBucketWebsiteRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutBucketWebsite.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndPutBucketWebsite(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutBucketWebsite operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutBucketWebsite.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.PutBucketWebsite(Amazon.S3.Model.PutBucketWebsiteRequest)">
- <summary>
- This operation enables/configures an S3 Website using the corresponding bucket as the content source.
- The website will have one default domain name associated with it, which is the bucket name.
- If you attempt to configure an S3 website for a bucket whose name is not compatible with DNS,
- Amazon S3 returns an InvalidBucketName error. For more information on bucket names and DNS,
- refer to Bucket Restrictions and Limitations.
-
- To visit the S3 bucket as a website a new endpoint is created in the following pattern
- http://&lt;bucketName&gt;.s3-website-&lt;region&gt;.amazonaws.com/. This is a sample url for a bucket
- called example-bucket in the us-east-1 region. http://example-bucket.s3-website-us-east-1.amazonaws.com/
- </summary>
- <param name="request">
- The PutBucketWebsiteRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a PutBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginGetBucketWebsite(Amazon.S3.Model.GetBucketWebsiteRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketWebsite operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetBucketWebsite"/>
- </summary>
- <param name="request">The GetBucketWebsiteRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketWebsite.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndGetBucketWebsite(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketWebsite operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketWebsite.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.GetBucketWebsite(Amazon.S3.Model.GetBucketWebsiteRequest)">
- <summary>
- This operation retrieves the website configuration for a bucket. The contents of this response
- is identical to the content submitted by the user during the PutBucketWebsite operation if it has ever been configured.
- </summary>
- <param name="request">
- The GetBucketWebsiteRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a GetBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.BeginDeleteBucketWebsite(Amazon.S3.Model.DeleteBucketWebsiteRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteBucketWebsite operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteBucketWebsite"/>
- </summary>
- <param name="request">The DeleteBucketWebsiteRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteBucketWebsite.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.EndDeleteBucketWebsite(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteBucketWebsite operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteBucketWebsite.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3.DeleteBucketWebsite(Amazon.S3.Model.DeleteBucketWebsiteRequest)">
- <summary>
- This operation removes the website configuration for a bucket.
- </summary>
- <param name="request">
- The DeleteBucketWebsiteRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a DeleteBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="T:Amazon.Runtime.AmazonServiceException">
- <summary>
- A base exception for some Amazon Web Services.
- <para>
- Most exceptions thrown to client code will be service-specific exceptions, though some services
- may throw this exception if there is a problem which is caught in the core client code.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.Runtime.AmazonServiceException.ErrorType">
- <summary>
- Whether the error was attributable to <c>Sender</c> or <c>Reciever</c>.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.AmazonServiceException.ErrorCode">
- <summary>
- The error code returned by the service
- </summary>
- </member>
- <member name="P:Amazon.Runtime.AmazonServiceException.RequestId">
- <summary>
- The id of the request which generated the exception.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.AmazonServiceException.StatusCode">
- <summary>
- The HTTP status code from the service response
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ResetDBParameterGroupRequestMarshaller">
- <summary>
- Reset D B Parameter Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RebootDBInstanceResultUnmarshaller">
- <summary>
- Result Unmarshaller for RebootDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.IPRangeUnmarshaller">
- <summary>
- IPRange Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeEngineDefaultParametersResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeEngineDefaultParameters operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBInstanceReadReplicaRequestMarshaller">
- <summary>
- Create D B Instance Read Replica Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ReservedDBInstanceNotFoundException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstanceNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new ReservedDBInstanceNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.Event">
- <summary>
- <para> This data type is used as a response element in the DescribeEvents action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.Event.WithSourceIdentifier(System.String)">
- <summary>
- Sets the SourceIdentifier property
- </summary>
- <param name="sourceIdentifier">The value to set for the SourceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Event.WithSourceType(System.String)">
- <summary>
- Sets the SourceType property
- </summary>
- <param name="sourceType">The value to set for the SourceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Event.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The value to set for the Message property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Event.WithDate(System.DateTime)">
- <summary>
- Sets the Date property
- </summary>
- <param name="date">The value to set for the Date property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.Event.SourceIdentifier">
- <summary>
- Provides the identifier for the source of the event.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Event.SourceType">
- <summary>
- Specifies the source type for this event.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>db-instance, db-parameter-group, db-security-group, db-snapshot</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Event.Message">
- <summary>
- Provides the text of this event.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Event.Date">
- <summary>
- Specifies the date and time of the event.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeReservedDBInstancesResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeReservedDBInstances action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesResult.WithReservedDBInstances(Amazon.RDS.Model.ReservedDBInstance[])">
- <summary>
- Adds elements to the ReservedDBInstances collection
- </summary>
- <param name="reservedDBInstances">The values to add to the ReservedDBInstances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesResult.WithReservedDBInstances(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.ReservedDBInstance})">
- <summary>
- Adds elements to the ReservedDBInstances collection
- </summary>
- <param name="reservedDBInstances">The values to add to the ReservedDBInstances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesResult.Marker">
- <summary>
- The marker provided for paginated results.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesResult.ReservedDBInstances">
- <summary>
- A list of of reserved DB Instances.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBParameterGroupQuotaExceededException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroupQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new DBParameterGroupQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBSnapshotResult">
- <summary>
- The results from the CreateDBSnapshot action.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.AmazonWebServiceResponse">
- <summary>
- Abstract class for Response objects, contains only metadata,
- and no result information.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.AmazonWebServiceResponse.ResponseMetadata">
- <summary>
- Contains additional information about the request, such as the
- Request Id.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSnapshotResult.DBSnapshot">
-
- Gets and sets the CreateDBSnapshotResult property.
- Contains the result of a successful invocation of the CreateDBSnapshot
- action.
-
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.UpdateJobResultUnmarshaller">
- <summary>
- UpdateJobResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.CanceledJobIdException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.CanceledJobIdException.#ctor(System.String)">
- <summary>
- Constructs a new CanceledJobIdException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UploadSigningCertificateResponse">
- <summary>
- Returns information about the UploadSigningCertificateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadSigningCertificateResponse.UploadSigningCertificateResult">
- <summary>
- Gets and sets the UploadSigningCertificateResult property.
- Contains the result of a successful invocation of the UploadSigningCertificate action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateSigningCertificateResponse">
- <summary>
- Returns information about the UpdateSigningCertificate response metadata.
- The UpdateSigningCertificate operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest">
- <summary>
- Container for the parameters to the UpdateSigningCertificate operation.
- <para>Changes the status of the specified signing certificate from
- active to disabled, or vice versa. This action can be used to disable
- a User's signing certificate as part of a certificate rotation
- workflow.</para> <para>If the <c>UserName</c> field is not specified,
- the UserName is determined implicitly based on the AWS Access Key ID
- used to sign the request. Because this action works for access keys
- under the AWS Account, this API can be used to manage root credentials
- even if the AWS Account has no associated Users.</para> <para>For
- information about rotating certificates, see Managing Keys and
- Certificates in <i>Using AWS Identity and Access Management</i>
- .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateSigningCertificate(Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest)"/>
- </member>
- <member name="T:Amazon.Runtime.AmazonWebServiceRequest">
- <summary>
- Base class for request used by some of the services.
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest.WithCertificateId(System.String)">
- <summary>
- Sets the CertificateId property
- </summary>
- <param name="certificateId">The value to set for the CertificateId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest.UserName">
- <summary>
- Name of the User the signing certificate belongs to.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest.CertificateId">
- <summary>
- The ID of the signing certificate you want to update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>24 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest.Status">
- <summary>
- The status you want to assign to the certificate. <c>Active</c> means the certificate can be used for API calls to AWS, while
- <c>Inactive</c> means the certificate cannot be used.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Active, Inactive</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateAccessKeyResponse">
- <summary>
- Returns information about the UpdateAccessKey response metadata.
- The UpdateAccessKey operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListUsersRequestMarshaller">
- <summary>
- List Users Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListUserPoliciesResultUnmarshaller">
- <summary>
- ListUserPoliciesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListMFADevicesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListMFADevices operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupsForUserResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListGroupsForUser operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetUserRequestMarshaller">
- <summary>
- Get User Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteUserPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteUserPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateGroup operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateAccessKeyResultUnmarshaller">
- <summary>
- CreateAccessKeyResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.PutUserPolicyRequest">
- <summary>
- Container for the parameters to the PutUserPolicy operation.
- <para>Adds (or updates) a policy document associated with the
- specified User. For information about policies, refer to Overview of
- Policies in <i>Using AWS Identity and Access Management</i> .</para>
- <para>For information about limits on the number of policies you can
- associate with a User, see Limitations on IAM Entities in <i>Using AWS
- Identity and Access Management</i> .</para> <para><b>NOTE:</b>Because
- policy documents can be large, you should use POST rather than GET
- when calling PutUserPolicy. For more information, see Making Query
- Requests in Using AWS Identity and Access Management.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.PutUserPolicy(Amazon.IdentityManagement.Model.PutUserPolicyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.PutUserPolicyRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.PutUserPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.PutUserPolicyRequest.WithPolicyDocument(System.String)">
- <summary>
- Sets the PolicyDocument property
- </summary>
- <param name="policyDocument">The value to set for the PolicyDocument property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.PutUserPolicyRequest.UserName">
- <summary>
- Name of the User to associate the policy with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.PutUserPolicyRequest.PolicyName">
- <summary>
- Name of the policy document.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.PutUserPolicyRequest.PolicyDocument">
- <summary>
- The policy document.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 131072</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListSigningCertificatesResponse">
- <summary>
- Returns information about the ListSigningCertificatesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListSigningCertificatesResponse.ListSigningCertificatesResult">
- <summary>
- Gets and sets the ListSigningCertificatesResult property.
- Contains the result of a successful invocation of the ListSigningCertificates action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupPoliciesResponse">
- <summary>
- Returns information about the ListGroupPoliciesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupPoliciesResponse.ListGroupPoliciesResult">
- <summary>
- Gets and sets the ListGroupPoliciesResult property.
- Contains the result of a successful invocation of the ListGroupPolicies action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Group">
- <summary>
- <para>The Group data type contains information about a group.</para>
- <para> This data type is used as a response element in the following
- actions:</para>
- <ul>
- <li> CreateGroup </li>
- <li> GetGroup </li>
- <li> ListGroups </li>
-
- </ul>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.Group.WithPath(System.String)">
- <summary>
- Sets the Path property
- </summary>
- <param name="path">The value to set for the Path property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.Group.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.Group.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="groupId">The value to set for the GroupId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.Group.WithArn(System.String)">
- <summary>
- Sets the Arn property
- </summary>
- <param name="arn">The value to set for the Arn property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.Group.WithCreateDate(System.DateTime)">
- <summary>
- Sets the CreateDate property
- </summary>
- <param name="createDate">The value to set for the CreateDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.Group.Path">
- <summary>
- Path to the group. For more information about paths, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.Group.GroupName">
- <summary>
- The name that identifies the group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.Group.GroupId">
- <summary>
- The stable and unique string identifying the group. For more information about IDs, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>16 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.Group.Arn">
- <summary>
- The Amazon Resource Name (ARN) specifying the group. For more information about ARNs and how to use them in policies, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>20 - 2048</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.Group.CreateDate">
- <summary>
- The date when the group was created.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetUserPolicyResponse">
- <summary>
- Returns information about the GetUserPolicyResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserPolicyResponse.GetUserPolicyResult">
- <summary>
- Gets and sets the GetUserPolicyResult property.
- Contains the result of a successful invocation of the GetUserPolicy action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteConflictException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteConflictException.#ctor(System.String)">
- <summary>
- Constructs a new DeleteConflictException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteAccessKeyResponse">
- <summary>
- Returns information about the DeleteAccessKey response metadata.
- The DeleteAccessKey operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateAccountAliasResponse">
- <summary>
- Returns information about the CreateAccountAlias response metadata.
- The CreateAccountAlias operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.AccessKey">
- <summary>
- <para>The AccessKey data type contains information about an AWS access
- key.</para> <para> This data type is used as a response element in the
- actions CreateAccessKey and ListAccessKeys. </para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKey.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKey.WithAccessKeyId(System.String)">
- <summary>
- Sets the AccessKeyId property
- </summary>
- <param name="accessKeyId">The value to set for the AccessKeyId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKey.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKey.WithSecretAccessKey(System.String)">
- <summary>
- Sets the SecretAccessKey property
- </summary>
- <param name="secretAccessKey">The value to set for the SecretAccessKey property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKey.WithCreateDate(System.DateTime)">
- <summary>
- Sets the CreateDate property
- </summary>
- <param name="createDate">The value to set for the CreateDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKey.UserName">
- <summary>
- Name of the User the key is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKey.AccessKeyId">
- <summary>
- The ID for this access key.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>16 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKey.Status">
- <summary>
- The status of the access key. <c>Active</c> means the key is valid for API calls, while <c>Inactive</c> means it is not.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Active, Inactive</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKey.SecretAccessKey">
- <summary>
- The secret key used to sign requests.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKey.CreateDate">
- <summary>
- The date when the access key was created.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.AmazonIdentityManagementService">
- <summary>
- Interface for accessing AmazonIdentityManagementService.
-
- AWS Identity and Access Management <para>This is the AWS Identity and
- Access Management (IAM) API Reference. This guide provides
- descriptions of the IAM API as well as links to related content in the
- guide, Using IAM.</para> <para>AWS Identity and Access Management
- (IAM) is a web service that enables Amazon Web Services (AWS)
- customers to manage Users and User permissions under their AWS
- Account.</para> <para>For more information about this product go to
- AWS Identity and Access Management (IAM). For specific information
- about setting up signatures and authorization through the API, go to
- Making Query Requests in the Using IAM guide.</para> <para>If you're
- new to AWS and need additional technical information about a specific
- AWS product, you can find the product's technical documentation at
- http://aws.amazon.com/documentation/.</para> <para>We will refer to
- Amazon AWS Identity and Access Management using the abbreviated form
- IAM. All copyrights and legal protections still apply.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListGroups(Amazon.IdentityManagement.Model.ListGroupsRequest)">
- <summary>
- <para>Lists the groups that have the specified path prefix.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listGroupsRequest">Container for the necessary parameters
- to execute the ListGroups service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListGroups service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteAccessKey(Amazon.IdentityManagement.Model.DeleteAccessKeyRequest)">
- <summary>
- <para>Deletes the access key associated with the specified
- User.</para> <para>If you do not specify a User name, IAM determines
- the User name implicitly based on the AWS Access Key ID signing the
- request. Because this action works for access keys under the AWS
- Account, you can use this API to manage root credentials even if the
- AWS Account has no associated Users.</para>
- </summary>
-
- <param name="deleteAccessKeyRequest">Container for the necessary
- parameters to execute the DeleteAccessKey service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteAccountAlias(Amazon.IdentityManagement.Model.DeleteAccountAliasRequest)">
- <summary>
- <para>Deletes the specified AWS Account alias. For information about
- using an AWS Account alias, see Using an Alias for Your AWS Account ID
- in <i>Using AWS Identity and Access Management</i> .</para>
- </summary>
-
- <param name="deleteAccountAliasRequest">Container for the necessary
- parameters to execute the DeleteAccountAlias service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListSigningCertificates(Amazon.IdentityManagement.Model.ListSigningCertificatesRequest)">
- <summary>
- <para>Returns information about the signing certificates associated
- with the specified User. If there are none, the action returns an
- empty list.</para> <para>Although each User is limited to a small
- number of signing certificates, you can still paginate the results
- using the <c>MaxItems</c> and <c>Marker</c> parameters.</para>
- <para>If the <c>UserName</c> field is not specified, the UserName is
- determined implicitly based on the AWS Access Key ID used to sign the
- request. Because this action works for access keys under the AWS
- Account, this API can be used to manage root credentials even if the
- AWS Account has no associated Users.</para>
- </summary>
-
- <param name="listSigningCertificatesRequest">Container for the
- necessary parameters to execute the ListSigningCertificates service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListSigningCertificates service method,
- as returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UploadSigningCertificate(Amazon.IdentityManagement.Model.UploadSigningCertificateRequest)">
- <summary>
- <para>Uploads an X.509 signing certificate and associates it with the
- specified User. Some AWS services use X.509 signing certificates to
- validate requests that are signed with a corresponding private key.
- When you upload the certificate, its default status is <c>Active</c>
- .</para> <para>If the <c>UserName</c> field is not specified, the User
- name is determined implicitly based on the AWS Access Key ID used to
- sign the request. Because this action works for access keys under the
- AWS Account, this API can be used to manage root credentials even if
- the AWS Account has no associated Users.</para>
- <para><b>NOTE:</b>Because the body of a X.509 certificate can be
- large, you should use POST rather than GET when calling
- UploadSigningCertificate. For more information, see Making Query
- Requests in Using AWS Identity and Access Management.</para>
- </summary>
-
- <param name="uploadSigningCertificateRequest">Container for the
- necessary parameters to execute the UploadSigningCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the UploadSigningCertificate service
- method, as returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.DuplicateCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.InvalidCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteUserPolicy(Amazon.IdentityManagement.Model.DeleteUserPolicyRequest)">
- <summary>
- <para>Deletes the specified policy associated with the specified
- User.</para>
- </summary>
-
- <param name="deleteUserPolicyRequest">Container for the necessary
- parameters to execute the DeleteUserPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.PutUserPolicy(Amazon.IdentityManagement.Model.PutUserPolicyRequest)">
- <summary>
- <para>Adds (or updates) a policy document associated with the
- specified User. For information about policies, refer to Overview of
- Policies in <i>Using AWS Identity and Access Management</i> .</para>
- <para>For information about limits on the number of policies you can
- associate with a User, see Limitations on IAM Entities in <i>Using AWS
- Identity and Access Management</i> .</para> <para><b>NOTE:</b>Because
- policy documents can be large, you should use POST rather than GET
- when calling PutUserPolicy. For more information, see Making Query
- Requests in Using AWS Identity and Access Management.</para>
- </summary>
-
- <param name="putUserPolicyRequest">Container for the necessary
- parameters to execute the PutUserPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedPolicyDocumentException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListServerCertificates(Amazon.IdentityManagement.Model.ListServerCertificatesRequest)">
- <summary>
- <para>Lists the server certificates that have the specified path
- prefix. If none exist, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listServerCertificatesRequest">Container for the
- necessary parameters to execute the ListServerCertificates service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListServerCertificates service method,
- as returned by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetUserPolicy(Amazon.IdentityManagement.Model.GetUserPolicyRequest)">
- <summary>
- <para>Retrieves the specified policy document for the specified User.
- The returned policy is URL-encoded according to RFC 3986. For more
- information about RFC 3986, go to
- http://www.faqs.org/rfcs/rfc3986.html.</para>
- </summary>
-
- <param name="getUserPolicyRequest">Container for the necessary
- parameters to execute the GetUserPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetUserPolicy service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateLoginProfile(Amazon.IdentityManagement.Model.UpdateLoginProfileRequest)">
- <summary>
- <para>Updates the login profile for the specified User. Use this API
- to change the User's password.</para>
- </summary>
-
- <param name="updateLoginProfileRequest">Container for the necessary
- parameters to execute the UpdateLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateServerCertificate(Amazon.IdentityManagement.Model.UpdateServerCertificateRequest)">
- <summary>
- <para>Updates the name and/or the path of the specified server
- certificate.</para> <para><b>IMPORTANT:</b> You should understand the
- implications of changing a server certificate's path or name. For more
- information, see Managing Server Certificates in Using AWS Identity
- and Access Management. </para> <para><b>NOTE:</b>To change a server
- certificate name the requester must have appropriate permissions on
- both the source object and the target object. For example, to change
- the name from ProductionCert to ProdCert, the entity making the
- request must have permission on ProductionCert and ProdCert, or must
- have permission on all (*). For more information about permissions,
- see Permissions and Policies. </para>
- </summary>
-
- <param name="updateServerCertificateRequest">Container for the
- necessary parameters to execute the UpdateServerCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateUser(Amazon.IdentityManagement.Model.UpdateUserRequest)">
- <summary>
- <para>Updates the name and/or the path of the specified User.</para>
- <para><b>IMPORTANT:</b> You should understand the implications of
- changing a User's path or name. For more information, see Renaming
- Users and Groups in Using AWS Identity and Access Management. </para>
- <para><b>NOTE:</b>To change a User name the requester must have
- appropriate permissions on both the source object and the target
- object. For example, to change Bob to Robert, the entity making the
- request must have permission on Bob and Robert, or must have
- permission on all (*). For more information about permissions, see
- Permissions and Policies. </para>
- </summary>
-
- <param name="updateUserRequest">Container for the necessary parameters
- to execute the UpdateUser service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteLoginProfile(Amazon.IdentityManagement.Model.DeleteLoginProfileRequest)">
- <summary>
- <para>Deletes the login profile for the specified User, which
- terminates the User's ability to access AWS services through the IAM
- login page.</para> <para><b>IMPORTANT:</b>Deleting a User's login
- profile does not prevent a User from accessing IAM through the command
- line interface or the API. To prevent all User access you must also
- either make the access key inactive or delete it. For more
- information about making keys inactive or deleting them, see
- UpdateAccessKey and DeleteAccessKey. </para>
- </summary>
-
- <param name="deleteLoginProfileRequest">Container for the necessary
- parameters to execute the DeleteLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateSigningCertificate(Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest)">
- <summary>
- <para>Changes the status of the specified signing certificate from
- active to disabled, or vice versa. This action can be used to disable
- a User's signing certificate as part of a certificate rotation
- workflow.</para> <para>If the <c>UserName</c> field is not specified,
- the UserName is determined implicitly based on the AWS Access Key ID
- used to sign the request. Because this action works for access keys
- under the AWS Account, this API can be used to manage root credentials
- even if the AWS Account has no associated Users.</para> <para>For
- information about rotating certificates, see Managing Keys and
- Certificates in <i>Using AWS Identity and Access Management</i>
- .</para>
- </summary>
-
- <param name="updateSigningCertificateRequest">Container for the
- necessary parameters to execute the UpdateSigningCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteGroupPolicy(Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest)">
- <summary>
- <para>Deletes the specified policy that is associated with the
- specified group.</para>
- </summary>
-
- <param name="deleteGroupPolicyRequest">Container for the necessary
- parameters to execute the DeleteGroupPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListUsers(Amazon.IdentityManagement.Model.ListUsersRequest)">
- <summary>
- <para>Lists the Users that have the specified path prefix. If there
- are none, the action returns an empty list.</para> <para>You can
- paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
-
- <param name="listUsersRequest">Container for the necessary parameters
- to execute the ListUsers service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListUsers service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateGroup(Amazon.IdentityManagement.Model.UpdateGroupRequest)">
- <summary>
- <para>Updates the name and/or the path of the specified group.</para>
- <para><b>IMPORTANT:</b> You should understand the implications of
- changing a group's path or name. For more information, see Renaming
- Users and Groups in Using AWS Identity and Access Management. </para>
- <para><b>NOTE:</b>To change a group name the requester must have
- appropriate permissions on both the source object and the target
- object. For example, to change Managers to MGRs, the entity making
- the request must have permission on Managers and MGRs, or must have
- permission on all (*). For more information about permissions, see
- Permissions and Policies. </para>
- </summary>
-
- <param name="updateGroupRequest">Container for the necessary
- parameters to execute the UpdateGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetServerCertificate(Amazon.IdentityManagement.Model.GetServerCertificateRequest)">
- <summary>
- <para>Retrieves information about the specified server
- certificate.</para>
- </summary>
-
- <param name="getServerCertificateRequest">Container for the necessary
- parameters to execute the GetServerCertificate service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetServerCertificate service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.PutGroupPolicy(Amazon.IdentityManagement.Model.PutGroupPolicyRequest)">
- <summary>
- <para>Adds (or updates) a policy document associated with the
- specified group. For information about policies, refer to Overview of
- Policies in <i>Using AWS Identity and Access Management</i> .</para>
- <para>For information about limits on the number of policies you can
- associate with a group, see Limitations on IAM Entities in <i>Using
- AWS Identity and Access Management</i> .</para>
- <para><b>NOTE:</b>Because policy documents can be large, you should
- use POST rather than GET when calling PutGroupPolicy. For more
- information, see Making Query Requests in Using AWS Identity and
- Access Management.</para>
- </summary>
-
- <param name="putGroupPolicyRequest">Container for the necessary
- parameters to execute the PutGroupPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedPolicyDocumentException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateUser(Amazon.IdentityManagement.Model.CreateUserRequest)">
- <summary>
- <para>Creates a new User for your AWS Account.</para> <para>For
- information about limitations on the number of Users you can create,
- see Limitations on IAM Entities in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
-
- <param name="createUserRequest">Container for the necessary parameters
- to execute the CreateUser service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateUser service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteSigningCertificate(Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest)">
- <summary>
- <para>Deletes the specified signing certificate associated with the
- specified User.</para> <para>If you do not specify a User name, IAM
- determines the User name implicitly based on the AWS Access Key ID
- signing the request. Because this action works for access keys under
- the AWS Account, you can use this API to manage root credentials even
- if the AWS Account has no associated Users.</para>
- </summary>
-
- <param name="deleteSigningCertificateRequest">Container for the
- necessary parameters to execute the DeleteSigningCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.EnableMFADevice(Amazon.IdentityManagement.Model.EnableMFADeviceRequest)">
- <summary>
- <para>Enables the specified MFA device and associates it with the
- specified User name. When enabled, the MFA device is required for
- every subsequent login by the User name associated with the
- device.</para>
- </summary>
-
- <param name="enableMFADeviceRequest">Container for the necessary
- parameters to execute the EnableMFADevice service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.InvalidAuthenticationCodeException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListUserPolicies(Amazon.IdentityManagement.Model.ListUserPoliciesRequest)">
- <summary>
- <para>Lists the names of the policies associated with the specified
- User. If there are none, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listUserPoliciesRequest">Container for the necessary
- parameters to execute the ListUserPolicies service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListUserPolicies service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListAccessKeys(Amazon.IdentityManagement.Model.ListAccessKeysRequest)">
- <summary>
- <para>Returns information about the Access Key IDs associated with the
- specified User. If there are none, the action returns an empty
- list.</para> <para>Although each User is limited to a small number of
- keys, you can still paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para> <para>If the <c>UserName</c> field is
- not specified, the UserName is determined implicitly based on the AWS
- Access Key ID used to sign the request. Because this action works for
- access keys under the AWS Account, this API can be used to manage root
- credentials even if the AWS Account has no associated Users.</para>
- <para><b>NOTE:</b>To ensure the security of your AWS Account, the
- secret access key is accessible only during key and User
- creation.</para>
- </summary>
-
- <param name="listAccessKeysRequest">Container for the necessary
- parameters to execute the ListAccessKeys service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListAccessKeys service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetLoginProfile(Amazon.IdentityManagement.Model.GetLoginProfileRequest)">
- <summary>
- <para>Retrieves the login profile for the specified User.</para>
- </summary>
-
- <param name="getLoginProfileRequest">Container for the necessary
- parameters to execute the GetLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetLoginProfile service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListGroupsForUser(Amazon.IdentityManagement.Model.ListGroupsForUserRequest)">
- <summary>
- <para>Lists the groups the specified User belongs to.</para> <para>You
- can paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
-
- <param name="listGroupsForUserRequest">Container for the necessary
- parameters to execute the ListGroupsForUser service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListGroupsForUser service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateGroup(Amazon.IdentityManagement.Model.CreateGroupRequest)">
- <summary>
- <para>Creates a new group.</para> <para>For information about the
- number of groups you can create, see Limitations on IAM Entities in
- <i>Using AWS Identity and Access Management</i> .</para>
- </summary>
-
- <param name="createGroupRequest">Container for the necessary
- parameters to execute the CreateGroup service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateGroup service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UploadServerCertificate(Amazon.IdentityManagement.Model.UploadServerCertificateRequest)">
- <summary>
- <para>Uploads a server certificate entity for the AWS Account. The
- server certificate entity includes a public key certificate, a private
- key, and an optional certificate chain, which should all be
- PEM-encoded.</para> <para>For information about the number of server
- certificates you can upload, see Limitations on IAM Entities in
- <i>Using AWS Identity and Access Management</i> .</para>
- <para><b>NOTE:</b>Because the body of the public key certificate,
- private key, and the certificate chain can be large, you should use
- POST rather than GET when calling UploadServerCertificate. For more
- information, see Making Query Requests in Using AWS Identity and
- Access Management.</para>
- </summary>
-
- <param name="uploadServerCertificateRequest">Container for the
- necessary parameters to execute the UploadServerCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the UploadServerCertificate service method,
- as returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.KeyPairMismatchException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateAccountAlias(Amazon.IdentityManagement.Model.CreateAccountAliasRequest)">
- <summary>
- <para>This action creates an alias for your AWS Account. For
- information about using an AWS Account alias, see Using an Alias for
- Your AWS Account ID in <i>Using AWS Identity and Access Management</i>
- .</para>
- </summary>
-
- <param name="createAccountAliasRequest">Container for the necessary
- parameters to execute the CreateAccountAlias service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetGroupPolicy(Amazon.IdentityManagement.Model.GetGroupPolicyRequest)">
- <summary>
- <para>Retrieves the specified policy document for the specified group.
- The returned policy is URL-encoded according to RFC 3986. For more
- information about RFC 3986, go to
- http://www.faqs.org/rfcs/rfc3986.html.</para>
- </summary>
-
- <param name="getGroupPolicyRequest">Container for the necessary
- parameters to execute the GetGroupPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetGroupPolicy service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteUser(Amazon.IdentityManagement.Model.DeleteUserRequest)">
- <summary>
- <para>Deletes the specified User. The User must not belong to any
- groups, have any keys or signing certificates, or have any attached
- policies.</para>
- </summary>
-
- <param name="deleteUserRequest">Container for the necessary parameters
- to execute the DeleteUser service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.DeleteConflictException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeactivateMFADevice(Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest)">
- <summary>
- <para>Deactivates the specified MFA device and removes it from
- association with the User name for which it was originally
- enabled.</para>
- </summary>
-
- <param name="deactivateMFADeviceRequest">Container for the necessary
- parameters to execute the DeactivateMFADevice service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.RemoveUserFromGroup(Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest)">
- <summary>
- <para>Removes the specified User from the specified group.</para>
- </summary>
-
- <param name="removeUserFromGroupRequest">Container for the necessary
- parameters to execute the RemoveUserFromGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteServerCertificate(Amazon.IdentityManagement.Model.DeleteServerCertificateRequest)">
- <summary>
- <para>Deletes the specified server certificate.</para>
- <para><b>IMPORTANT:</b>If your Elastic Load Balancing instances are
- using a server certificate, deleting the certificate could have
- implications for your application. If your Elastic Load Balancing
- instances do not detect the deletion of bound certificates, they may
- continue to use the certificates. This could cause them to stop
- accepting traffic. We recommend that you remove the reference to the
- certificate from your Elastic Load Balancing instances before using
- this command to delete the certificate.</para>
- </summary>
-
- <param name="deleteServerCertificateRequest">Container for the
- necessary parameters to execute the DeleteServerCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.DeleteConflictException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListGroupPolicies(Amazon.IdentityManagement.Model.ListGroupPoliciesRequest)">
- <summary>
- <para>Lists the names of the policies associated with the specified
- group. If there are none, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listGroupPoliciesRequest">Container for the necessary
- parameters to execute the ListGroupPolicies service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListGroupPolicies service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateLoginProfile(Amazon.IdentityManagement.Model.CreateLoginProfileRequest)">
- <summary>
- <para>Creates a login profile for the specified User, giving the User
- the ability to access AWS services such as the AWS Management Console.
- For more information about login profiles, see Managing Login
- Profiles and MFA Devices in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
-
- <param name="createLoginProfileRequest">Container for the necessary
- parameters to execute the CreateLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateLoginProfile service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateAccessKey(Amazon.IdentityManagement.Model.CreateAccessKeyRequest)">
- <summary>
- <para>Creates a new AWS Secret Access Key and corresponding AWS Access
- Key ID for the specified User. The default status for new keys is
- <c>Active</c> .</para> <para>If you do not specify a User name, IAM
- determines the User name implicitly based on the AWS Access Key ID
- signing the request. Because this action works for access keys under
- the AWS Account, you can use this API to manage root credentials even
- if the AWS Account has no associated Users.</para> <para>For
- information about limits on the number of keys you can create, see
- Limitations on IAM Entities in <i>Using AWS Identity and Access
- Management</i> .</para> <para><b>IMPORTANT:</b>To ensure the security
- of your AWS Account, the Secret Access Key is accessible only during
- key and User creation. You must save the key (for example, in a text
- file) if you want to be able to access it again. If a secret key is
- lost, you can delete the access keys for the associated User and then
- create new keys.</para>
- </summary>
-
- <param name="createAccessKeyRequest">Container for the necessary
- parameters to execute the CreateAccessKey service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateAccessKey service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetUser(Amazon.IdentityManagement.Model.GetUserRequest)">
- <summary>
- <para>Retrieves information about the specified User, including the
- User's path, GUID, and ARN.</para> <para>If you do not specify a User
- name, IAM determines the User name implicitly based on the AWS Access
- Key ID signing the request.</para>
- </summary>
-
- <param name="getUserRequest">Container for the necessary parameters to
- execute the GetUser service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetUser service method, as returned by
- AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ResyncMFADevice(Amazon.IdentityManagement.Model.ResyncMFADeviceRequest)">
- <summary>
- <para>Synchronizes the specified MFA device with AWS servers.</para>
- </summary>
-
- <param name="resyncMFADeviceRequest">Container for the necessary
- parameters to execute the ResyncMFADevice service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.InvalidAuthenticationCodeException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListMFADevices(Amazon.IdentityManagement.Model.ListMFADevicesRequest)">
- <summary>
- <para>Lists the MFA devices associated with the specified User
- name.</para> <para>You can paginate the results using the
- <c>MaxItems</c> and <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listMFADevicesRequest">Container for the necessary
- parameters to execute the ListMFADevices service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListMFADevices service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateAccessKey(Amazon.IdentityManagement.Model.UpdateAccessKeyRequest)">
- <summary>
- <para>Changes the status of the specified access key from Active to
- Inactive, or vice versa. This action can be used to disable a User's
- key as part of a key rotation workflow.</para> <para>If the
- <c>UserName</c> field is not specified, the UserName is determined
- implicitly based on the AWS Access Key ID used to sign the request.
- Because this action works for access keys under the AWS Account, this
- API can be used to manage root credentials even if the AWS Account has
- no associated Users.</para> <para>For information about rotating keys,
- see Managing Keys and Certificates in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
-
- <param name="updateAccessKeyRequest">Container for the necessary
- parameters to execute the UpdateAccessKey service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetAccountSummary(Amazon.IdentityManagement.Model.GetAccountSummaryRequest)">
- <summary>
- <para>Retrieves account level information about account entity usage
- and IAM quotas.</para> <para>For information about limitations on IAM
- entities, see Limitations on IAM Entities in <i>Using AWS Identity and
- Access Management</i> .</para>
- </summary>
-
- <param name="getAccountSummaryRequest">Container for the necessary
- parameters to execute the GetAccountSummary service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetAccountSummary service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.AddUserToGroup(Amazon.IdentityManagement.Model.AddUserToGroupRequest)">
- <summary>
- <para>Adds the specified User to the specified group.</para>
- </summary>
-
- <param name="addUserToGroupRequest">Container for the necessary
- parameters to execute the AddUserToGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetGroup(Amazon.IdentityManagement.Model.GetGroupRequest)">
- <summary>
- <para>Returns a list of Users that are in the specified group. You can
- paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
-
- <param name="getGroupRequest">Container for the necessary parameters
- to execute the GetGroup service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetGroup service method, as returned by
- AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListAccountAliases(Amazon.IdentityManagement.Model.ListAccountAliasesRequest)">
- <summary>
- <para>Lists the account aliases associated with the account. For
- information about using an AWS Account alias, see Using an Alias for
- Your AWS Account ID in <i>Using AWS Identity and Access Management</i>
- .</para> <para>You can paginate the results using the <c>MaxItems</c>
- and <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listAccountAliasesRequest">Container for the necessary
- parameters to execute the ListAccountAliases service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListAccountAliases service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteGroup(Amazon.IdentityManagement.Model.DeleteGroupRequest)">
- <summary>
- <para>Deletes the specified group. The group must not contain any
- Users or have any attached policies.</para>
- </summary>
-
- <param name="deleteGroupRequest">Container for the necessary
- parameters to execute the DeleteGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.DeleteConflictException"/>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.TerminateJobFlowsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for TerminateJobFlows operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.ModifyInstanceGroupsRequestMarshaller">
- <summary>
- Modify Instance Groups Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.HadoopJarStepConfigUnmarshaller">
- <summary>
- HadoopJarStepConfig Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.AmazonElasticMapReduce">
- <summary>
- Interface for accessing AmazonElasticMapReduce.
-
- <para> This is the Amazon Elastic MapReduce API Reference Guide. This
- guide is for programmers who need detailed information about the
- Amazon Elastic MapReduce APIs. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.AddInstanceGroups(Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest)">
- <summary>
- <para>AddInstanceGroups adds an instance group to a running
- cluster.</para>
- </summary>
-
- <param name="addInstanceGroupsRequest">Container for the necessary
- parameters to execute the AddInstanceGroups service method on
- AmazonElasticMapReduce.</param>
-
- <returns>The response from the AddInstanceGroups service method, as
- returned by AmazonElasticMapReduce.</returns>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.AddJobFlowSteps(Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest)">
- <summary>
- <para> AddJobFlowSteps adds new steps to a running job flow. A maximum
- of 256 steps are allowed in each job flow. </para> <para> A step
- specifies the location of a JAR file stored either on the master node
- of the job flow or in Amazon S3. Each step is performed by the main
- function of the main class of the JAR file. The main class can be
- specified either in the manifest of the JAR or by using the
- MainFunction parameter of the step. </para> <para> Elastic MapReduce
- executes each step in the order listed. For a step to be considered
- complete, the main function must exit with a zero exit code and all
- Hadoop jobs started while the step was running must have completed and
- run successfully. </para> <para> You can only add steps to a job flow
- that is in one of the following states: STARTING, BOOTSTAPPING,
- RUNNING, or WAITING.</para>
- </summary>
-
- <param name="addJobFlowStepsRequest">Container for the necessary
- parameters to execute the AddJobFlowSteps service method on
- AmazonElasticMapReduce.</param>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.TerminateJobFlows(Amazon.ElasticMapReduce.Model.TerminateJobFlowsRequest)">
- <summary>
- <para> TerminateJobFlows shuts a list of job flows down. When a job
- flow is shut down, any step not yet completed is canceled and the EC2
- instances on which the job flow is running are stopped. Any log files
- not already saved are uploaded to Amazon S3 if a LogUri was specified
- when the job flow was created. </para>
- </summary>
-
- <param name="terminateJobFlowsRequest">Container for the necessary
- parameters to execute the TerminateJobFlows service method on
- AmazonElasticMapReduce.</param>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.DescribeJobFlows(Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest)">
- <summary>
- <para> DescribeJobFlows returns a list of job flows that match all of
- the supplied parameters. The parameters can include a list of job flow
- IDs, job flow states, and restrictions on job flow creation date and
- time.</para> <para> Regardless of supplied parameters, only job flows
- created within the last two months are returned.</para> <para> If no
- parameters are supplied, then job flows matching either of the
- following criteria are returned:</para>
- <ul>
- <li>Job flows created and completed in the last two weeks</li>
- <li> Job flows created within the last two months that are in one of
- the following states: <c>RUNNING</c> ,
-
- <c>WAITING</c> ,
-
- <c>SHUTTING_DOWN</c> ,
-
- <c>STARTING</c> </li>
-
- </ul>
- <para> Amazon Elastic MapReduce can return a maximum of 512 job flow
- descriptions. </para>
- </summary>
-
- <param name="describeJobFlowsRequest">Container for the necessary
- parameters to execute the DescribeJobFlows service method on
- AmazonElasticMapReduce.</param>
-
- <returns>The response from the DescribeJobFlows service method, as
- returned by AmazonElasticMapReduce.</returns>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.RunJobFlow(Amazon.ElasticMapReduce.Model.RunJobFlowRequest)">
- <summary>
- <para> RunJobFlow creates and starts running a new job flow. The job
- flow will run the steps specified. Once the job flow completes, the
- cluster is stopped and the HDFS partition is lost. To prevent loss of
- data, configure the last step of the job flow to store results in
- Amazon S3. If the JobFlowInstancesDetail : KeepJobFlowAliveWhenNoSteps
- parameter is set to <c>TRUE</c> , the job flow will transition to the
- WAITING state rather than shutting down once the steps have completed.
- </para> <para>A maximum of 256 steps are allowed in each job
- flow.</para> <para>For long running job flows, we recommended that you
- periodically store your results.</para>
- </summary>
-
- <param name="runJobFlowRequest">Container for the necessary parameters
- to execute the RunJobFlow service method on
- AmazonElasticMapReduce.</param>
-
- <returns>The response from the RunJobFlow service method, as returned
- by AmazonElasticMapReduce.</returns>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.ModifyInstanceGroups(Amazon.ElasticMapReduce.Model.ModifyInstanceGroupsRequest)">
- <summary>
- <para>ModifyInstanceGroups modifies the number of nodes and
- configuration settings of an instance group. The input parameters
- include the new target instance count for the group and the instance
- group ID. The call will either succeed or fail atomically.</para>
- </summary>
-
- <param name="modifyInstanceGroupsRequest">Container for the necessary
- parameters to execute the ModifyInstanceGroups service method on
- AmazonElasticMapReduce.</param>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.SetLoadBalancerPoliciesOfListenerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SetLoadBalancerPoliciesOfListener operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.SetLoadBalancerListenerSSLCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SetLoadBalancerListenerSSLCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.InstanceUnmarshaller">
- <summary>
- Instance Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DescribeLoadBalancersResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeLoadBalancers operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerPolicyRequestMarshaller">
- <summary>
- Delete Load Balancer Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.ConfigureHealthCheckResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ConfigureHealthCheck operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.ConfigureHealthCheckRequestMarshaller">
- <summary>
- Configure Health Check Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerResult">
- <summary>
- <para> The output for the DeregisterInstancesFromLoadBalancer action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerResult.WithInstances(Amazon.ElasticLoadBalancing.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerResult.WithInstances(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerResult.Instances">
- <summary>
- An updated list of remaining instances registered with the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest">
- <summary>
- Container for the parameters to the DeleteLoadBalancer operation.
- <para> Deletes the specified LoadBalancer. </para> <para> If attempting to recreate the LoadBalancer, the client must reconfigure all the
- settings. The DNS name associated with a deleted LoadBalancer will no longer be usable. Once deleted, the name and associated DNS record of
- the LoadBalancer no longer exist and traffic sent to any of its IP addresses will no longer be delivered to client instances. The client
- will not receive the same DNS name even if a new LoadBalancer with same LoadBalancerName is created. </para> <para> To successfully call
- this API, the client must provide the same account credentials as were used to create the LoadBalancer. </para> <para><b>NOTE:</b> By
- design, if the LoadBalancer does not exist or has already been deleted, DeleteLoadBalancer still succeeds. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeleteLoadBalancer(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest.#ctor">
- <summary>
- Default constructor for a new DeleteLoadBalancerRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest.#ctor(System.String)">
- <summary>
- Constructs a new DeleteLoadBalancerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest">
- <summary>
- Container for the parameters to the CreateLBCookieStickinessPolicy operation.
- <para> Generates a stickiness policy with sticky session lifetimes controlled by the lifetime of the browser (user-agent) or a specified
- expiration period. This policy can be associated only with HTTP/HTTPS listeners. </para> <para> When a load balancer implements this policy,
- the load balancer uses a special cookie to track the backend server instance for each request. When the load balancer receives a request, it
- first checks to see if this cookie is present in the request. If so, the load balancer sends the request to the application server specified
- in the cookie. If not, the load balancer sends the request to a server that is chosen based on the existing load balancing algorithm.
- </para> <para> A cookie is inserted into the response for binding subsequent requests from the same user to that server. The validity of the
- cookie is based on the cookie expiration time, which is specified in the policy configuration. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateLBCookieStickinessPolicy(Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.#ctor">
- <summary>
- Default constructor for a new CreateLBCookieStickinessPolicyRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.#ctor(System.String,System.String)">
- <summary>
- Constructs a new CreateLBCookieStickinessPolicyRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- <param name="policyName"> The name of the policy being created. The name must be unique within the set of policies for this Load Balancer.
- </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.WithCookieExpirationPeriod(System.Int64)">
- <summary>
- Sets the CookieExpirationPeriod property
- </summary>
- <param name="cookieExpirationPeriod">The value to set for the CookieExpirationPeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.PolicyName">
- <summary>
- The name of the policy being created. The name must be unique within the set of policies for this Load Balancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest.CookieExpirationPeriod">
- <summary>
- The time period in seconds after which the cookie should be considered stale. Not specifying this parameter indicates that the sticky
- session will last for the duration of the browser session.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ValidateConfigurationSettingsResultUnmarshaller">
- <summary>
- ValidateConfigurationSettingsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RequestEnvironmentInfoRequestMarshaller">
- <summary>
- Request Environment Info Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ListAvailableSolutionStacksResultUnmarshaller">
- <summary>
- ListAvailableSolutionStacksResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeApplicationVersionsResultUnmarshaller">
- <summary>
- DescribeApplicationVersionsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeApplicationsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeApplications operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateConfigurationTemplateRequestMarshaller">
- <summary>
- Create Configuration Template Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsResponse">
- <summary>
- Returns information about the SwapEnvironmentCNAMEs response metadata.
- The SwapEnvironmentCNAMEs operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.LoadBalancer">
- <summary>
- <para>Describes a LoadBalancer.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.LoadBalancer.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.LoadBalancer.Name">
- <summary>
- The name of the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResponse">
- <summary>
- Returns information about the ListAvailableSolutionStacksResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResponse.ListAvailableSolutionStacksResult">
- <summary>
- Gets and sets the ListAvailableSolutionStacksResult property.
- A list of available AWS Elastic Beanstalk solution stacks.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateStorageLocationRequest">
- <summary>
- Container for the parameters to the CreateStorageLocation operation.
- <para> Creates the Amazon S3 storage location for the account. </para> <para> This location is used to store user log files. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateStorageLocation(Amazon.ElasticBeanstalk.Model.CreateStorageLocationRequest)"/>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient">
- <summary>
- Implemenation for accessing AmazonElasticBeanstalk.
-
- AWS Elastic Beanstalk <para> This is the AWS Elastic Beanstalk API Reference. This guide provides detailed information about AWS Elastic
- Beanstalk actions, data types, parameters, and errors. </para> <para>AWS Elastic Beanstalk is a tool that makes it easy for you to create,
- deploy, and manage scalable, fault-tolerant applications running on Amazon Web Services cloud resources. </para> <para> For more information
- about this product, go to the AWS Elastic Beanstalk details page. For specific information about setting up signatures and authorization
- through the API, go to the AWS Elastic Beanstalk User Guide. The location of the lastest AWS Elastic Beanstalk WSDL is
- http://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl. </para> <para> <b>Endpoints</b> </para> <para>AWS Elastic
- Beanstalk supports the following region-specific endpoint:</para>
- <ul>
- <li> https://elasticbeanstalk.us-east-1.amazonaws.com </li>
-
- </ul>
- </summary>
- </member>
- <member name="T:Amazon.Runtime.AmazonWebServiceClient">
- <summary>
- A base class for service clients that handles making the actual requests
- and possibly retries if needed.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.AmazonWebServiceClient.Dispose(System.Boolean)">
- <summary>
- Implements the Dispose pattern for the AmazonWebServiceClient
- </summary>
- <param name="disposing">Whether this object is being disposed via a call to Dispose
- or garbage collected.</param>
- </member>
- <member name="M:Amazon.Runtime.AmazonWebServiceClient.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.AmazonWebServiceClient.Finalize">
- <summary>
- The destructor for the client class.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.AmazonWebServiceClient.ConfigureWebRequest``1(Amazon.Runtime.Internal.IRequest{``0},System.Byte[])">
- <summary>
- Creates the HttpWebRequest and configures the end point, content, user agent and proxy settings.
- </summary>
- <param name="wrappedRequest">The internal wrapped request.</param>
- <param name="requestData">The data to be sent for the request.</param>
- <returns>The web request that actually makes the call.</returns>
- </member>
- <member name="M:Amazon.Runtime.AmazonWebServiceClient.Invoke``2(Amazon.Runtime.Internal.IRequest{``0},Amazon.Runtime.Internal.Auth.AbstractAWSSigner,Amazon.Runtime.Internal.Transform.IResponseUnmarshaller{``1,Amazon.Runtime.Internal.Transform.UnmarshallerContext})">
- <summary>
- This method makes the actual web request and marshalls the response body or error returned from the service.
- For some error response a retry will be attempted after an exponential pause.
- </summary>
- <typeparam name="X">The user facing request type.</typeparam>
- <typeparam name="Y">The user facing response type.</typeparam>
- <param name="request">The wrapper around the user facing request.</param>
- <param name="signer">The type of signer to use for the request.</param>
- <param name="unmarshaller">The object used to unmarshall the response body.</param>
- <returns>The response object for the request</returns>
- </member>
- <member name="M:Amazon.Runtime.AmazonWebServiceClient.ShouldRetry(System.Net.HttpStatusCode,Amazon.Runtime.ClientConfig,Amazon.Runtime.AmazonServiceException,System.Int32)">
- <summary>
- Returns true if a failed request should be retried.
- </summary>
- <param name="statusCode">The HTTP status code from the failed request</param>
- <param name="config">The client config</param>
- <param name="errorResponseException">The exception from the failed request</param>
- <param name="retries">The number of times the current request has been attempted</param>
- <returns>True if the failed request should be retried.</returns>
- </member>
- <member name="M:Amazon.Runtime.AmazonWebServiceClient.pauseExponentially(System.Int32)">
- <summary>
- Exponential sleep on failed request to avoid flooding a service with
- retries.
- </summary>
- <param name="retries">Current retry count.</param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk">
- <summary>
- Interface for accessing AmazonElasticBeanstalk.
-
- AWS Elastic Beanstalk <para> This is the AWS Elastic Beanstalk API Reference. This guide provides detailed information about AWS Elastic
- Beanstalk actions, data types, parameters, and errors. </para> <para>AWS Elastic Beanstalk is a tool that makes it easy for you to create,
- deploy, and manage scalable, fault-tolerant applications running on Amazon Web Services cloud resources. </para> <para> For more information
- about this product, go to the AWS Elastic Beanstalk details page. For specific information about setting up signatures and authorization
- through the API, go to the AWS Elastic Beanstalk User Guide. The location of the lastest AWS Elastic Beanstalk WSDL is
- http://elasticbeanstalk.s3.amazonaws.com/doc/2010-12-01/AWSElasticBeanstalk.wsdl. </para> <para> <b>Endpoints</b> </para> <para>AWS Elastic
- Beanstalk supports the following region-specific endpoint:</para>
- <ul>
- <li> https://elasticbeanstalk.us-east-1.amazonaws.com </li>
-
- </ul>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CheckDNSAvailability(Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityRequest)">
- <summary>
- <para> Checks if the specified CNAME is available. </para>
- </summary>
-
- <param name="checkDNSAvailabilityRequest">Container for the necessary parameters to execute the CheckDNSAvailability service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CheckDNSAvailability service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeConfigurationOptions(Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest)">
- <summary>
- <para> Describes the configuration options that are used in a particular configuration template or environment, or that a specified solution
- stack defines. The description includes the values the options, their default values, and an indication of the required action on a running
- environment if an option value is changed. </para>
- </summary>
-
- <param name="describeConfigurationOptionsRequest">Container for the necessary parameters to execute the DescribeConfigurationOptions service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeConfigurationOptions service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteConfigurationTemplate(Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest)">
- <summary>
- <para>Deletes the specified configuration template.</para> <para><b>NOTE:</b>When you launch an environment using a configuration template,
- the environment gets a copy of the template. You can delete or modify the environment's copy of the template without affecting the running
- environment.</para>
- </summary>
-
- <param name="deleteConfigurationTemplateRequest">Container for the necessary parameters to execute the DeleteConfigurationTemplate service
- method on AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateEnvironment(Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest)">
- <summary>
- <para> Launches an environment for the specified application using the specified configuration. </para>
- </summary>
-
- <param name="createEnvironmentRequest">Container for the necessary parameters to execute the CreateEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateEnvironment service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyEnvironmentsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateStorageLocation(Amazon.ElasticBeanstalk.Model.CreateStorageLocationRequest)">
- <summary>
- <para> Creates the Amazon S3 storage location for the account. </para> <para> This location is used to store user log files. </para>
- </summary>
-
- <param name="createStorageLocationRequest">Container for the necessary parameters to execute the CreateStorageLocation service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateStorageLocation service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.S3SubscriptionRequiredException"/>
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyBucketsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RequestEnvironmentInfo(Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest)">
- <summary>
- <para> Initiates a request to compile the specified type of information of the deployed environment. </para> <para> Setting the
- <c>InfoType</c> to <c>tail</c> compiles the last lines from the application server log files of every Amazon EC2 instance in your
- environment. Use RetrieveEnvironmentInfo to access the compiled information. </para> <para>Related Topics</para>
- <ul>
- <li> RetrieveEnvironmentInfo </li>
-
- </ul>
- </summary>
-
- <param name="requestEnvironmentInfoRequest">Container for the necessary parameters to execute the RequestEnvironmentInfo service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateApplicationVersion(Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest)">
- <summary>
- <para>Creates an application version for the specified application.</para> <para><b>NOTE:</b>Once you create an application version with a
- specified Amazon S3 bucket and key location, you cannot change that Amazon S3 location. If you change the Amazon S3 location, you receive an
- exception when you attempt to launch an environment from the application version. </para>
- </summary>
-
- <param name="createApplicationVersionRequest">Container for the necessary parameters to execute the CreateApplicationVersion service method
- on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateApplicationVersion service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationsException"/>
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationVersionsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteApplicationVersion(Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest)">
- <summary>
- <para> Deletes the specified version from the specified application. </para> <para><b>NOTE:</b>You cannot delete an application version that
- is associated with a running environment.</para>
- </summary>
-
- <param name="deleteApplicationVersionRequest">Container for the necessary parameters to execute the DeleteApplicationVersion service method
- on AmazonElasticBeanstalk.</param>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.SourceBundleDeletionException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeApplicationVersions(Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest)">
- <summary>
- <para>Returns descriptions for existing application versions.</para>
- </summary>
-
- <param name="describeApplicationVersionsRequest">Container for the necessary parameters to execute the DescribeApplicationVersions service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeApplicationVersions service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteApplication(Amazon.ElasticBeanstalk.Model.DeleteApplicationRequest)">
- <summary>
- <para> Deletes the specified application along with all associated versions and configurations. </para> <para><b>NOTE:</b>You cannot delete
- an application that has a running environment. </para>
- </summary>
-
- <param name="deleteApplicationRequest">Container for the necessary parameters to execute the DeleteApplication service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateApplicationVersion(Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest)">
- <summary>
- <para> Updates the specified application version to have the specified properties. </para> <para><b>NOTE:</b> If a property (for example,
- description) is not provided, the value remains unchanged. To clear properties, specify an empty string. </para>
- </summary>
-
- <param name="updateApplicationVersionRequest">Container for the necessary parameters to execute the UpdateApplicationVersion service method
- on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateApplicationVersion service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateApplication(Amazon.ElasticBeanstalk.Model.CreateApplicationRequest)">
- <summary>
- <para> Creates an application that has one configuration template named <c>default</c> and no application versions. </para>
- <para><b>NOTE:</b> The default configuration template is for a 32-bit version of the Amazon Linux operating system running the Tomcat 6
- application container. </para>
- </summary>
-
- <param name="createApplicationRequest">Container for the necessary parameters to execute the CreateApplication service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateApplication service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.SwapEnvironmentCNAMEs(Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest)">
- <summary>
- </summary>
-
- <param name="swapEnvironmentCNAMEsRequest">Container for the necessary parameters to execute the SwapEnvironmentCNAMEs service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateConfigurationTemplate(Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest)">
- <summary>
- <para> Updates the specified configuration template to have the specified properties or configuration option values. </para>
- <para><b>NOTE:</b> If a property (for example, ApplicationName) is not provided, its value remains unchanged. To clear such properties,
- specify an empty string. </para> <para>Related Topics</para>
- <ul>
- <li> DescribeConfigurationOptions </li>
-
- </ul>
- </summary>
-
- <param name="updateConfigurationTemplateRequest">Container for the necessary parameters to execute the UpdateConfigurationTemplate service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateConfigurationTemplate service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RetrieveEnvironmentInfo(Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest)">
- <summary>
- <para> Retrieves the compiled information from a RequestEnvironmentInfo request. </para> <para>Related Topics</para>
- <ul>
- <li> RequestEnvironmentInfo </li>
-
- </ul>
- </summary>
-
- <param name="retrieveEnvironmentInfoRequest">Container for the necessary parameters to execute the RetrieveEnvironmentInfo service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the RetrieveEnvironmentInfo service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.ListAvailableSolutionStacks(Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksRequest)">
- <summary>
- <para> Returns a list of the available solution stack names. </para>
- </summary>
-
- <param name="listAvailableSolutionStacksRequest">Container for the necessary parameters to execute the ListAvailableSolutionStacks service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the ListAvailableSolutionStacks service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateApplication(Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest)">
- <summary>
- <para>Updates the specified application to have the specified properties. </para> <para><b>NOTE:</b> If a property (for example,
- description) is not provided, the value remains unchanged. To clear these properties, specify an empty string. </para>
- </summary>
-
- <param name="updateApplicationRequest">Container for the necessary parameters to execute the UpdateApplication service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateApplication service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeEnvironments(Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest)">
- <summary>
- <para>Returns descriptions for existing environments.</para>
- </summary>
-
- <param name="describeEnvironmentsRequest">Container for the necessary parameters to execute the DescribeEnvironments service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeEnvironments service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeEnvironmentResources(Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest)">
- <summary>
- <para>Returns AWS resources for this environment.</para>
- </summary>
-
- <param name="describeEnvironmentResourcesRequest">Container for the necessary parameters to execute the DescribeEnvironmentResources service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeEnvironmentResources service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.TerminateEnvironment(Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest)">
- <summary>
- <para> Terminates the specified environment. </para>
- </summary>
-
- <param name="terminateEnvironmentRequest">Container for the necessary parameters to execute the TerminateEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the TerminateEnvironment service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.ValidateConfigurationSettings(Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest)">
- <summary>
- <para> Takes a set of configuration settings and either a configuration template or environment, and determines whether those values are
- valid. </para> <para> This action returns a list of messages indicating any errors or warnings associated with the selection of option
- values. </para>
- </summary>
-
- <param name="validateConfigurationSettingsRequest">Container for the necessary parameters to execute the ValidateConfigurationSettings
- service method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the ValidateConfigurationSettings service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RestartAppServer(Amazon.ElasticBeanstalk.Model.RestartAppServerRequest)">
- <summary>
- <para> Causes the environment to restart the application container server running on each Amazon EC2 instance. </para>
- </summary>
-
- <param name="restartAppServerRequest">Container for the necessary parameters to execute the RestartAppServer service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteEnvironmentConfiguration(Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest)">
- <summary>
- <para> Deletes the draft configuration associated with the running environment. </para> <para> Updating a running environment with any
- configuration changes creates a draft configuration set. You can get the draft configuration using DescribeConfigurationSettings while the
- update is in progress or if the update fails. The <c>DeploymentStatus</c> for the draft configuration indicates whether the deployment is in
- process or has failed. The draft configuration remains in existence until it is deleted with this action. </para>
- </summary>
-
- <param name="deleteEnvironmentConfigurationRequest">Container for the necessary parameters to execute the DeleteEnvironmentConfiguration
- service method on AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateEnvironment(Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest)">
- <summary>
- <para> Updates the environment description, deploys a new application version, updates the configuration settings to an entirely new
- configuration template, or updates select configuration option values in the running environment. </para> <para> Attempting to update both
- the release and configuration is not allowed and AWS Elastic Beanstalk returns an <c>InvalidParameterCombination</c> error. </para> <para>
- When updating the configuration settings to a new template or individual settings, a draft configuration is created and
- DescribeConfigurationSettings for this environment returns two setting descriptions with different <c>DeploymentStatus</c> values. </para>
- </summary>
-
- <param name="updateEnvironmentRequest">Container for the necessary parameters to execute the UpdateEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateEnvironment service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateConfigurationTemplate(Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest)">
- <summary>
- <para>Creates a configuration template. Templates are associated with a specific application and are used to deploy different versions of
- the application with the same configuration settings.</para> <para>Related Topics</para>
- <ul>
- <li> DescribeConfigurationOptions </li>
- <li> DescribeConfigurationSettings </li>
- <li> ListAvailableSolutionStacks </li>
-
- </ul>
- </summary>
-
- <param name="createConfigurationTemplateRequest">Container for the necessary parameters to execute the CreateConfigurationTemplate service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateConfigurationTemplate service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyConfigurationTemplatesException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeConfigurationSettings(Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest)">
- <summary>
- <para> Returns a description of the settings for the specified configuration set, that is, either a configuration template or the
- configuration set associated with a running environment. </para> <para> When describing the settings for the configuration set associated
- with a running environment, it is possible to receive two sets of setting descriptions. One is the deployed configuration set, and the other
- is a draft configuration of an environment that is either in the process of deployment or that failed to deploy. </para> <para>Related
- Topics</para>
- <ul>
- <li> DeleteEnvironmentConfiguration </li>
-
- </ul>
- </summary>
-
- <param name="describeConfigurationSettingsRequest">Container for the necessary parameters to execute the DescribeConfigurationSettings
- service method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeConfigurationSettings service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeApplications(Amazon.ElasticBeanstalk.Model.DescribeApplicationsRequest)">
- <summary>
- <para>Returns the descriptions of existing applications.</para>
- </summary>
-
- <param name="describeApplicationsRequest">Container for the necessary parameters to execute the DescribeApplications service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeApplications service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RebuildEnvironment(Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest)">
- <summary>
- <para> Deletes and recreates all of the AWS resources (for example: the Auto Scaling group, load balancer, etc.) for a specified environment
- and forces a restart. </para>
- </summary>
-
- <param name="rebuildEnvironmentRequest">Container for the necessary parameters to execute the RebuildEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeEvents(Amazon.ElasticBeanstalk.Model.DescribeEventsRequest)">
- <summary>
- <para>Returns list of event descriptions matching criteria up to the last 6 weeks.</para> <para><b>NOTE:</b> This action returns the most
- recent 1,000 events from the specified NextToken. </para>
- </summary>
-
- <param name="describeEventsRequest">Container for the necessary parameters to execute the DescribeEvents service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeEvents service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonElasticBeanstalkClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.#ctor(System.String,System.String,Amazon.ElasticBeanstalk.AmazonElasticBeanstalkConfig)">
- <summary>
- Constructs AmazonElasticBeanstalkClient with AWS Access Key ID, AWS Secret Key and an
- AmazonElasticBeanstalkClient Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonElasticBeanstalkClient Configuration Object</param>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.CheckDNSAvailability(Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityRequest)">
- <summary>
- <para> Checks if the specified CNAME is available. </para>
- </summary>
-
- <param name="checkDNSAvailabilityRequest">Container for the necessary parameters to execute the CheckDNSAvailability service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CheckDNSAvailability service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DescribeConfigurationOptions(Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest)">
- <summary>
- <para> Describes the configuration options that are used in a particular configuration template or environment, or that a specified solution
- stack defines. The description includes the values the options, their default values, and an indication of the required action on a running
- environment if an option value is changed. </para>
- </summary>
-
- <param name="describeConfigurationOptionsRequest">Container for the necessary parameters to execute the DescribeConfigurationOptions service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeConfigurationOptions service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DeleteConfigurationTemplate(Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest)">
- <summary>
- <para>Deletes the specified configuration template.</para> <para><b>NOTE:</b>When you launch an environment using a configuration template,
- the environment gets a copy of the template. You can delete or modify the environment's copy of the template without affecting the running
- environment.</para>
- </summary>
-
- <param name="deleteConfigurationTemplateRequest">Container for the necessary parameters to execute the DeleteConfigurationTemplate service
- method on AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.CreateEnvironment(Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest)">
- <summary>
- <para> Launches an environment for the specified application using the specified configuration. </para>
- </summary>
-
- <param name="createEnvironmentRequest">Container for the necessary parameters to execute the CreateEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateEnvironment service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyEnvironmentsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.CreateStorageLocation(Amazon.ElasticBeanstalk.Model.CreateStorageLocationRequest)">
- <summary>
- <para> Creates the Amazon S3 storage location for the account. </para> <para> This location is used to store user log files. </para>
- </summary>
-
- <param name="createStorageLocationRequest">Container for the necessary parameters to execute the CreateStorageLocation service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateStorageLocation service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.S3SubscriptionRequiredException"/>
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyBucketsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.RequestEnvironmentInfo(Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest)">
- <summary>
- <para> Initiates a request to compile the specified type of information of the deployed environment. </para> <para> Setting the
- <c>InfoType</c> to <c>tail</c> compiles the last lines from the application server log files of every Amazon EC2 instance in your
- environment. Use RetrieveEnvironmentInfo to access the compiled information. </para> <para>Related Topics</para>
- <ul>
- <li> RetrieveEnvironmentInfo </li>
-
- </ul>
- </summary>
-
- <param name="requestEnvironmentInfoRequest">Container for the necessary parameters to execute the RequestEnvironmentInfo service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.CreateApplicationVersion(Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest)">
- <summary>
- <para>Creates an application version for the specified application.</para> <para><b>NOTE:</b>Once you create an application version with a
- specified Amazon S3 bucket and key location, you cannot change that Amazon S3 location. If you change the Amazon S3 location, you receive an
- exception when you attempt to launch an environment from the application version. </para>
- </summary>
-
- <param name="createApplicationVersionRequest">Container for the necessary parameters to execute the CreateApplicationVersion service method
- on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateApplicationVersion service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationsException"/>
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationVersionsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DeleteApplicationVersion(Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest)">
- <summary>
- <para> Deletes the specified version from the specified application. </para> <para><b>NOTE:</b>You cannot delete an application version that
- is associated with a running environment.</para>
- </summary>
-
- <param name="deleteApplicationVersionRequest">Container for the necessary parameters to execute the DeleteApplicationVersion service method
- on AmazonElasticBeanstalk.</param>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.SourceBundleDeletionException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DescribeApplicationVersions(Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest)">
- <summary>
- <para>Returns descriptions for existing application versions.</para>
- </summary>
-
- <param name="describeApplicationVersionsRequest">Container for the necessary parameters to execute the DescribeApplicationVersions service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeApplicationVersions service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DeleteApplication(Amazon.ElasticBeanstalk.Model.DeleteApplicationRequest)">
- <summary>
- <para> Deletes the specified application along with all associated versions and configurations. </para> <para><b>NOTE:</b>You cannot delete
- an application that has a running environment. </para>
- </summary>
-
- <param name="deleteApplicationRequest">Container for the necessary parameters to execute the DeleteApplication service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.UpdateApplicationVersion(Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest)">
- <summary>
- <para> Updates the specified application version to have the specified properties. </para> <para><b>NOTE:</b> If a property (for example,
- description) is not provided, the value remains unchanged. To clear properties, specify an empty string. </para>
- </summary>
-
- <param name="updateApplicationVersionRequest">Container for the necessary parameters to execute the UpdateApplicationVersion service method
- on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateApplicationVersion service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.CreateApplication(Amazon.ElasticBeanstalk.Model.CreateApplicationRequest)">
- <summary>
- <para> Creates an application that has one configuration template named <c>default</c> and no application versions. </para>
- <para><b>NOTE:</b> The default configuration template is for a 32-bit version of the Amazon Linux operating system running the Tomcat 6
- application container. </para>
- </summary>
-
- <param name="createApplicationRequest">Container for the necessary parameters to execute the CreateApplication service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateApplication service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationsException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.SwapEnvironmentCNAMEs(Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest)">
- <summary>
- </summary>
-
- <param name="swapEnvironmentCNAMEsRequest">Container for the necessary parameters to execute the SwapEnvironmentCNAMEs service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.UpdateConfigurationTemplate(Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest)">
- <summary>
- <para> Updates the specified configuration template to have the specified properties or configuration option values. </para>
- <para><b>NOTE:</b> If a property (for example, ApplicationName) is not provided, its value remains unchanged. To clear such properties,
- specify an empty string. </para> <para>Related Topics</para>
- <ul>
- <li> DescribeConfigurationOptions </li>
-
- </ul>
- </summary>
-
- <param name="updateConfigurationTemplateRequest">Container for the necessary parameters to execute the UpdateConfigurationTemplate service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateConfigurationTemplate service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.RetrieveEnvironmentInfo(Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest)">
- <summary>
- <para> Retrieves the compiled information from a RequestEnvironmentInfo request. </para> <para>Related Topics</para>
- <ul>
- <li> RequestEnvironmentInfo </li>
-
- </ul>
- </summary>
-
- <param name="retrieveEnvironmentInfoRequest">Container for the necessary parameters to execute the RetrieveEnvironmentInfo service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the RetrieveEnvironmentInfo service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.ListAvailableSolutionStacks(Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksRequest)">
- <summary>
- <para> Returns a list of the available solution stack names. </para>
- </summary>
-
- <param name="listAvailableSolutionStacksRequest">Container for the necessary parameters to execute the ListAvailableSolutionStacks service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the ListAvailableSolutionStacks service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.UpdateApplication(Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest)">
- <summary>
- <para>Updates the specified application to have the specified properties. </para> <para><b>NOTE:</b> If a property (for example,
- description) is not provided, the value remains unchanged. To clear these properties, specify an empty string. </para>
- </summary>
-
- <param name="updateApplicationRequest">Container for the necessary parameters to execute the UpdateApplication service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateApplication service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DescribeEnvironments(Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest)">
- <summary>
- <para>Returns descriptions for existing environments.</para>
- </summary>
-
- <param name="describeEnvironmentsRequest">Container for the necessary parameters to execute the DescribeEnvironments service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeEnvironments service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DescribeEnvironmentResources(Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest)">
- <summary>
- <para>Returns AWS resources for this environment.</para>
- </summary>
-
- <param name="describeEnvironmentResourcesRequest">Container for the necessary parameters to execute the DescribeEnvironmentResources service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeEnvironmentResources service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.TerminateEnvironment(Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest)">
- <summary>
- <para> Terminates the specified environment. </para>
- </summary>
-
- <param name="terminateEnvironmentRequest">Container for the necessary parameters to execute the TerminateEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the TerminateEnvironment service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.ValidateConfigurationSettings(Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest)">
- <summary>
- <para> Takes a set of configuration settings and either a configuration template or environment, and determines whether those values are
- valid. </para> <para> This action returns a list of messages indicating any errors or warnings associated with the selection of option
- values. </para>
- </summary>
-
- <param name="validateConfigurationSettingsRequest">Container for the necessary parameters to execute the ValidateConfigurationSettings
- service method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the ValidateConfigurationSettings service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.RestartAppServer(Amazon.ElasticBeanstalk.Model.RestartAppServerRequest)">
- <summary>
- <para> Causes the environment to restart the application container server running on each Amazon EC2 instance. </para>
- </summary>
-
- <param name="restartAppServerRequest">Container for the necessary parameters to execute the RestartAppServer service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DeleteEnvironmentConfiguration(Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest)">
- <summary>
- <para> Deletes the draft configuration associated with the running environment. </para> <para> Updating a running environment with any
- configuration changes creates a draft configuration set. You can get the draft configuration using DescribeConfigurationSettings while the
- update is in progress or if the update fails. The <c>DeploymentStatus</c> for the draft configuration indicates whether the deployment is in
- process or has failed. The draft configuration remains in existence until it is deleted with this action. </para>
- </summary>
-
- <param name="deleteEnvironmentConfigurationRequest">Container for the necessary parameters to execute the DeleteEnvironmentConfiguration
- service method on AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.UpdateEnvironment(Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest)">
- <summary>
- <para> Updates the environment description, deploys a new application version, updates the configuration settings to an entirely new
- configuration template, or updates select configuration option values in the running environment. </para> <para> Attempting to update both
- the release and configuration is not allowed and AWS Elastic Beanstalk returns an <c>InvalidParameterCombination</c> error. </para> <para>
- When updating the configuration settings to a new template or individual settings, a draft configuration is created and
- DescribeConfigurationSettings for this environment returns two setting descriptions with different <c>DeploymentStatus</c> values. </para>
- </summary>
-
- <param name="updateEnvironmentRequest">Container for the necessary parameters to execute the UpdateEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the UpdateEnvironment service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.CreateConfigurationTemplate(Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest)">
- <summary>
- <para>Creates a configuration template. Templates are associated with a specific application and are used to deploy different versions of
- the application with the same configuration settings.</para> <para>Related Topics</para>
- <ul>
- <li> DescribeConfigurationOptions </li>
- <li> DescribeConfigurationSettings </li>
- <li> ListAvailableSolutionStacks </li>
-
- </ul>
- </summary>
-
- <param name="createConfigurationTemplateRequest">Container for the necessary parameters to execute the CreateConfigurationTemplate service
- method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the CreateConfigurationTemplate service method, as returned by AmazonElasticBeanstalk.</returns>
-
- <exception cref="T:Amazon.ElasticBeanstalk.Model.TooManyConfigurationTemplatesException"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DescribeConfigurationSettings(Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest)">
- <summary>
- <para> Returns a description of the settings for the specified configuration set, that is, either a configuration template or the
- configuration set associated with a running environment. </para> <para> When describing the settings for the configuration set associated
- with a running environment, it is possible to receive two sets of setting descriptions. One is the deployed configuration set, and the other
- is a draft configuration of an environment that is either in the process of deployment or that failed to deploy. </para> <para>Related
- Topics</para>
- <ul>
- <li> DeleteEnvironmentConfiguration </li>
-
- </ul>
- </summary>
-
- <param name="describeConfigurationSettingsRequest">Container for the necessary parameters to execute the DescribeConfigurationSettings
- service method on AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeConfigurationSettings service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DescribeApplications(Amazon.ElasticBeanstalk.Model.DescribeApplicationsRequest)">
- <summary>
- <para>Returns the descriptions of existing applications.</para>
- </summary>
-
- <param name="describeApplicationsRequest">Container for the necessary parameters to execute the DescribeApplications service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeApplications service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.RebuildEnvironment(Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest)">
- <summary>
- <para> Deletes and recreates all of the AWS resources (for example: the Auto Scaling group, load balancer, etc.) for a specified environment
- and forces a restart. </para>
- </summary>
-
- <param name="rebuildEnvironmentRequest">Container for the necessary parameters to execute the RebuildEnvironment service method on
- AmazonElasticBeanstalk.</param>
-
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkClient.DescribeEvents(Amazon.ElasticBeanstalk.Model.DescribeEventsRequest)">
- <summary>
- <para>Returns list of event descriptions matching criteria up to the last 6 weeks.</para> <para><b>NOTE:</b> This action returns the most
- recent 1,000 events from the specified NextToken. </para>
- </summary>
-
- <param name="describeEventsRequest">Container for the necessary parameters to execute the DescribeEvents service method on
- AmazonElasticBeanstalk.</param>
-
- <returns>The response from the DescribeEvents service method, as returned by AmazonElasticBeanstalk.</returns>
-
- </member>
- <member name="T:Amazon.EC2.Model.UserIdGroupPair">
- <summary>
- Security group and user ID pair.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.UserIdGroupPair.WithUserId(System.String)">
- <summary>
- Sets the UserId property
- </summary>
- <param name="userId">AWS User ID of an account. Cannot be used when
- specifying a CIDR IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UserIdGroupPair.IsSetUserId">
- <summary>
- Checks if UserId property is set
- </summary>
- <returns>true if UserId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UserIdGroupPair.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="userId">AWS Group ID of a Security Group. Cannot be used when
- specifying a CIDR IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UserIdGroupPair.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UserIdGroupPair.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Name of the security group. Cannot be used when
- specifying a CIDR IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UserIdGroupPair.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.UserIdGroupPair.UserId">
- <summary>
- Gets and sets the UserId property.
- AWS User ID of an account. Cannot be used when
- specifying a CIDR IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.UserIdGroupPair.GroupId">
- <summary>
- Gets and sets the GroupId property.
- AWS Group ID of a Security Group. Cannot be used when
- specifying a CIDR IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.UserIdGroupPair.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the security group. Cannot be used when
- specifying a CIDR IP address.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.StopInstancesResult">
- <summary>
- Result of a StopInstances request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesResult.IsSetStoppingInstances">
- <summary>
- Checks if StoppingInstances property is set
- </summary>
- <returns>true if StoppingInstances property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.StopInstancesResult.StoppingInstances">
- <summary>
- Gets and sets the StoppingInstances property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.SnapshotAttribute">
- <summary>
- Snapshot Attribute
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.SnapshotAttribute.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The ID of the Amazon EBS snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SnapshotAttribute.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SnapshotAttribute.WithCreateVolumePermission(Amazon.EC2.Model.CreateVolumePermission[])">
- <summary>
- Sets the CreateVolumePermission property
- </summary>
- <param name="list">list of create volume permissions</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SnapshotAttribute.IsSetCreateVolumePermission">
- <summary>
- Checks if CreateVolumePermission property is set
- </summary>
- <returns>true if CreateVolumePermission property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.SnapshotAttribute.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the Amazon EBS snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SnapshotAttribute.CreateVolumePermission">
- <summary>
- Gets and sets the CreateVolumePermission property.
- list of create volume permissions
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.SecurityGroup">
- <summary>
- Security Group
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithOwnerId(System.String)">
- <summary>
- Sets the OwnerId property
- </summary>
- <param name="ownerId">AWS Access Key ID of the owner of the security
- group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetOwnerId">
- <summary>
- Checks if OwnerId property is set
- </summary>
- <returns>true if OwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The vpc to which the group belongs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="groupId">Id of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Name of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithGroupDescription(System.String)">
- <summary>
- Sets the GroupDescription property
- </summary>
- <param name="groupDescription">Description of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetGroupDescription">
- <summary>
- Checks if GroupDescription property is set
- </summary>
- <returns>true if GroupDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithIpPermission(Amazon.EC2.Model.IpPermission[])">
- <summary>
- Sets the IpPermission property
- </summary>
- <param name="list">Set of IP permissions associated with the
- security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetIpPermission">
- <summary>
- Checks if IpPermission property is set
- </summary>
- <returns>true if IpPermission property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.WithIpPermissionsEgress(Amazon.EC2.Model.IpPermission[])">
- <summary>
- Sets the IpPermissionsEgress property
- </summary>
- <param name="list">A list of outbound rules associated with the security group (for VPC security groups).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SecurityGroup.IsSetIpPermissionsEgress">
- <summary>
- Checks if IpPermissionsEgress property is set
- </summary>
- <returns>true if IpPermissionsEgress property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.OwnerId">
- <summary>
- Gets and sets the OwnerId property.
- AWS Access Key ID of the owner of the security
- group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The vpc to which the group belongs.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.GroupId">
- <summary>
- Gets and sets the GroupId property.
- Id of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.GroupDescription">
- <summary>
- Gets and sets the GroupDescription property.
- Description of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.IpPermission">
- <summary>
- Gets and sets the IpPermission property.
- Set of IP permissions associated with the
- security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SecurityGroup.IpPermissionsEgress">
- <summary>
- Gets and sets the IpPermissionsEgress property.
- A list of outbound rules associated with the security group (for VPC security groups).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceRouteResponse">
- <summary>
- The Response for the
- ReplaceRoute operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RebootInstancesRequest">
- <summary>
- Requests a reboot of one or more instances. This operation is
- asynchronous; it only queues a request to reboot the specified
- instance(s). The operation will succeed if the instances
- are valid and belong to you. Requests to reboot terminated instances
- are ignored.
-
- Note - if a Linux/UNIX instance does not cleanly shut
- down within four
- minutes, Amazon EC2 will perform a hard reboot.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RebootInstancesRequest.WithInstanceId(System.String[])">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="list">One or more instance IDs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RebootInstancesRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RebootInstancesRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- One or more instance IDs.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ModifyImageAttributeResponse">
- <summary>
- Modify Image Attribute Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.GetPasswordDataRequest">
- <summary>
- Retrieves the encrypted administrator password
- for the instances running
- Windows.
-
- Note - the Windows password is
- only generated the first time an AMI is launched.
- It is not generated for rebundled AMIs or after the password is
- changed on an instance.
-
- The password is encrypted using the key pair that you
- provided.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance for which to get the
- password.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.GetPasswordDataRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance for which to get the
- password.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSubnetsRequest">
- <summary>
- Gives you information about your subnets. You can
- filter the results to return information
- only about subnets that match criteria you specify. For example, you
- could ask to get information about a particular subnet
- (or all) only if the subnet's state is available. You
- can specify multiple filters (e.g.,
- the subnet is in a particular
- VPC, and the subnet's state is available).
-
- The result includes information for a particular subnet
- only if the subnet matches all your filters. If there's
- no match, no special message is returned; the response
- is simply empty
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsRequest.WithSubnetId(System.String[])">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="list">A subnet ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsRequest.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">The filter to apply on the results of DescribeSubnets. Filters can be:
- a. state - The state of the subnet. (pending, available).
- b. vpcId - The ID of the VPC the subnet is in.
- c. cidrBlock - The CIDR block of the subnet. The
- CIDR block you specify must exactly match the subnet's CIDR block
- for information to be returned for the subnet.
- Constraints: Must contain the slash followed by one or two
- digits (e.g., /28)
- d. - The Availability Zone the subnet is in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSubnetsRequest.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- A subnet ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSubnetsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- The filter to apply on the results of DescribeSubnets. Filters can be:
- a. state - The state of the subnet. (pending, available).
- b. vpcId - The ID of the VPC the subnet is in.
- c. cidrBlock - The CIDR block of the subnet. The
- CIDR block you specify must exactly match the subnet's CIDR block
- for information to be returned for the subnet.
- Constraints: Must contain the slash followed by one or two
- digits (e.g., /28)
- d. - The Availability Zone the subnet is in.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotInstanceRequestsResponse">
- <summary>
- The Response for the DescribeSpotInstanceRequests
- operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsResponse.IsSetDescribeSpotInstanceRequestsResult">
- <summary>
- Checks if DescribeSpotInstanceRequestsResult property is set
- </summary>
- <returns>true if DescribeSpotInstanceRequestsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotInstanceRequestsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotInstanceRequestsResponse.DescribeSpotInstanceRequestsResult">
- <summary>
- Gets and sets the DescribeSpotInstanceRequestsResult property.
- The Result of the Describe Spot Instances
- operation.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeReservedInstancesResponse">
- <summary>
- Describe Reserved Instances Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesResponse.IsSetDescribeReservedInstancesResult">
- <summary>
- Checks if DescribeReservedInstancesResult property is set
- </summary>
- <returns>true if DescribeReservedInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesResponse.DescribeReservedInstancesResult">
- <summary>
- Gets and sets the DescribeReservedInstancesResult property.
- Describe Reserved Instances Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResult">
- <summary>
- Describe Reserved Instances Offerings Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResult.IsSetReservedInstancesOffering">
- <summary>
- Checks if ReservedInstancesOffering property is set
- </summary>
- <returns>true if ReservedInstancesOffering property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResult.ReservedInstancesOffering">
- <summary>
- Gets and sets the ReservedInstancesOffering property.
- list of reserved instances offering
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeRegionsResult">
- <summary>
- Describe Regions Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsResult.IsSetRegion">
- <summary>
- Checks if Region property is set
- </summary>
- <returns>true if Region property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRegionsResult.Region">
- <summary>
- Gets and sets the Region property.
- List of regions
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInternetGatewaysResult">
- <summary>
- DescribeInternetGateways Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysResult.IsSetInternetGateways">
- <summary>
- Checks if InternetGateways property is set
- </summary>
- <returns>true if InternetGateways property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInternetGatewaysResult.InternetGateways">
- <summary>
- Gets and sets the InternetGateways property.
- A list of Internet Gateways.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResponse">
- <summary>
- The Response for the
- CreateSpotDatafeedSubscription operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResponse.IsSetCreateSpotDatafeedSubscriptionResult">
- <summary>
- Checks if CreateSpotDatafeedSubscriptionResult property is set
- </summary>
- <returns>true if CreateSpotDatafeedSubscriptionResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResponse.CreateSpotDatafeedSubscriptionResult">
- <summary>
- Gets and sets the CreateSpotDatafeedSubscriptionResult property.
- Create Spot Datafeed Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateImageRequest">
- <summary>
- Creates an AMI that uses an Amazon EBS root device from a "running" or
- "stopped" instance. AMIs that use an Amazon EBS root device boot
- faster than AMIs that use instance stores. They can be up to 1 TiB in size,
- use storage that persists on instance failure, and can be stopped
- and started.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The name of the AMI that was provided during image
- creation. Must be 3-128 alphanumeric characters,
- parenthesis (()), commas (,), slashes (/), dashes (-), or
- underscores(_).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The description of the AMI that was provided
- during
- image creation. Can be up to 255 characters.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.WithNoReboot(System.Boolean)">
- <summary>
- Sets the NoReboot property
- </summary>
- <param name="noReboot">By default this property is set to false, which means
- Amazon EC2 attempts to cleanly shut down the
- instance before image creation and reboots the instance
- afterwards. When set to true, Amazon EC2 does not shut down the
- instance before creating the image. When this option is used,
- file system integrity on the created image cannot be guaranteed.
- Default is FALSE.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageRequest.IsSetNoReboot">
- <summary>
- Checks if NoReboot property is set
- </summary>
- <returns>true if NoReboot property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateImageRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateImageRequest.Name">
- <summary>
- Gets and sets the Name property.
- The name of the AMI that was provided during image
- creation. Must be 3-128 alphanumeric characters,
- parenthesis (()), commas (,), slashes (/), dashes (-), or
- underscores(_).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateImageRequest.Description">
- <summary>
- Gets and sets the Description property.
- The description of the AMI that was provided
- during
- image creation. Can be up to 255 characters.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateImageRequest.NoReboot">
- <summary>
- Gets and sets the NoReboot property.
- By default this property is set to false, which means
- Amazon EC2 attempts to cleanly shut down the
- instance before image creation and reboots the instance
- afterwards. When set to true, Amazon EC2 does not shut down the
- instance before creating the image. When this option is used,
- file system integrity on the created image cannot be guaranteed.
- Default is FALSE.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateDhcpOptionsRequest">
- <summary>
- Creates a set of DHCP options that you can then
- associate with one or more VPCs, causing all
- existing and new instances that you launch in those
- VPCs to use the set of DHCP options. The following
- table lists the individual DHCP options you
- can specify. For more information about the options, go to
- RFC
- 2132.
-
- Options:
- 1. domain-name
- A domain name of your choice (e.g., mydomain.com).
-
- 2. domain-name-servers
- The IP address of a domain name server (e.g., 10.2.5.1).
- You can specify up to four addresses.
-
- 3. ntp-servers
- The IP address of a Network Time Protocol (NTP)
- server (e.g., 10.4.6.1). You can specify up to four addresses.
-
- 4.
- netbios-name-servers The IP address of a NetBIOS name server (e.g.,
- 10.8.9.5). You can specify up to four addresses.
-
- 5.
- netbios-node-type Value indicating the NetBIOS node type (1, 2, 4,
- or 8). For more information about the values, go to RFC 2132.
- We recommend you only use 2 at this time (broadcast and multicast
- are currently not supported)
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsRequest.WithDhcpConfiguration(Amazon.EC2.Model.DhcpConfiguration[])">
- <summary>
- Sets the DhcpConfiguration property
- </summary>
- <param name="list">DHCP Configuration</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsRequest.IsSetDhcpConfiguration">
- <summary>
- Checks if DhcpConfiguration property is set
- </summary>
- <returns>true if DhcpConfiguration property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateDhcpOptionsRequest.DhcpConfiguration">
- <summary>
- Gets and sets the DhcpConfiguration property.
- DHCP Configuration
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateCustomerGatewayResponse">
- <summary>
- Create Customer Gateway Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayResponse.IsSetCreateCustomerGatewayResult">
- <summary>
- Checks if CreateCustomerGatewayResult property is set
- </summary>
- <returns>true if CreateCustomerGatewayResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateCustomerGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateCustomerGatewayResponse.CreateCustomerGatewayResult">
- <summary>
- Gets and sets the CreateCustomerGatewayResult property.
- Create Customer Gateway Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AuthorizeSecurityGroupEgressResponse">
- <summary>
- The Response for the
- AuthorizeSecurityGroupEgress operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupEgressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupEgressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupEgressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupEgressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest">
- <summary>
- This action applies only to security groups in a VPC; it's not supported for standard (EC2) security groups.
- For information about Amazon Virtual Private Cloud and VPC security groups, go to the Amazon Virtual
- Private Cloud User Guide.
-
- The action adds one or more egress rules to a VPC security group. Specifically, this permits instances
- in a security group to send traffic to either one or more destination CIDR IP address ranges, or to one or
- more destination security groups in the same VPC.
-
- Each rule consists of the protocol (e.g., TCP), plus either a CIDR range, or a source group. For the TCP
- and UDP protocols, you must also specify the destination port or port range. For the ICMP protocol, you
- must also specify the ICMP type and code.You can use -1 as a wildcard for the ICMP type or code.
-
- Rule changes are propagated to instances within the security group as quickly as possible. However, a
- small delay might occur.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="groupId">ID of the VPC security group to modify.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest.WithIpPermissions(Amazon.EC2.Model.IpPermissionSpecification[])">
- <summary>
- Sets the IpPermissions property
- </summary>
- <param name="list">Set of IP permissions associated with the
- security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest.IsSetIpPermissions">
- <summary>
- Checks if IpPermissions property is set
- </summary>
- <returns>true if IpPermissions property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest.GroupId">
- <summary>
- Gets and sets the GroupId property.
- ID of the VPC security group to modify.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest.IpPermissions">
- <summary>
- Gets and sets the IpPermissions property.
- Set of IP permissions associated with the
- security group.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachVpnGatewayResponse">
- <summary>
- Attach Vpn Gateway Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayResponse.IsSetAttachVpnGatewayResult">
- <summary>
- Checks if AttachVpnGatewayResult property is set
- </summary>
- <returns>true if AttachVpnGatewayResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVpnGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVpnGatewayResponse.AttachVpnGatewayResult">
- <summary>
- Gets and sets the AttachVpnGatewayResult property.
- Attach VpnGateway Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachInternetGatewayRequest">
- <summary>
- Attaches an Internet gateway to a VPC, enabling connectivity between the Internet and the VPC. For
- more information about your VPC and Internet gateway, go to the Amazon Virtual Private Cloud User
- Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachInternetGatewayRequest.WithInternetGatewayId(System.String)">
- <summary>
- Sets the InternetGatewayId property
- </summary>
- <param name="internetGatewayId">The ID of the Internet gateway to attach.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachInternetGatewayRequest.IsSetInternetGatewayId">
- <summary>
- Checks if InternetGatewayId property is set
- </summary>
- <returns>true if InternetGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachInternetGatewayRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachInternetGatewayRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachInternetGatewayRequest.InternetGatewayId">
- <summary>
- Gets and sets the InternetGatewayId property.
- The ID of the Internet gateway to attach.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AttachInternetGatewayRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmsResultUnmarshaller">
- <summary>
- DescribeAlarmsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DeleteAlarmsRequestMarshaller">
- <summary>
- Delete Alarms Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.MetricAlarm">
- <summary>
- <para> The MetricAlarm data type represents an alarm. You can use
- PutMetricAlarm to create or update an alarm. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithAlarmName(System.String)">
- <summary>
- Sets the AlarmName property
- </summary>
- <param name="alarmName">The value to set for the AlarmName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithAlarmArn(System.String)">
- <summary>
- Sets the AlarmArn property
- </summary>
- <param name="alarmArn">The value to set for the AlarmArn property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithAlarmDescription(System.String)">
- <summary>
- Sets the AlarmDescription property
- </summary>
- <param name="alarmDescription">The value to set for the AlarmDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithAlarmConfigurationUpdatedTimestamp(System.DateTime)">
- <summary>
- Sets the AlarmConfigurationUpdatedTimestamp property
- </summary>
- <param name="alarmConfigurationUpdatedTimestamp">The value to set for the AlarmConfigurationUpdatedTimestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithActionsEnabled(System.Boolean)">
- <summary>
- Sets the ActionsEnabled property
- </summary>
- <param name="actionsEnabled">The value to set for the ActionsEnabled property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithOKActions(System.String[])">
- <summary>
- Adds elements to the OKActions collection
- </summary>
- <param name="oKActions">The values to add to the OKActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithOKActions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the OKActions collection
- </summary>
- <param name="oKActions">The values to add to the OKActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithAlarmActions(System.String[])">
- <summary>
- Adds elements to the AlarmActions collection
- </summary>
- <param name="alarmActions">The values to add to the AlarmActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithAlarmActions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AlarmActions collection
- </summary>
- <param name="alarmActions">The values to add to the AlarmActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithInsufficientDataActions(System.String[])">
- <summary>
- Adds elements to the InsufficientDataActions collection
- </summary>
- <param name="insufficientDataActions">The values to add to the InsufficientDataActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithInsufficientDataActions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the InsufficientDataActions collection
- </summary>
- <param name="insufficientDataActions">The values to add to the InsufficientDataActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithStateValue(System.String)">
- <summary>
- Sets the StateValue property
- </summary>
- <param name="stateValue">The value to set for the StateValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithStateReason(System.String)">
- <summary>
- Sets the StateReason property
- </summary>
- <param name="stateReason">The value to set for the StateReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithStateReasonData(System.String)">
- <summary>
- Sets the StateReasonData property
- </summary>
- <param name="stateReasonData">The value to set for the StateReasonData property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithStateUpdatedTimestamp(System.DateTime)">
- <summary>
- Sets the StateUpdatedTimestamp property
- </summary>
- <param name="stateUpdatedTimestamp">The value to set for the StateUpdatedTimestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithMetricName(System.String)">
- <summary>
- Sets the MetricName property
- </summary>
- <param name="metricName">The value to set for the MetricName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithStatistic(System.String)">
- <summary>
- Sets the Statistic property
- </summary>
- <param name="statistic">The value to set for the Statistic property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithDimensions(Amazon.CloudWatch.Model.Dimension[])">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithDimensions(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Dimension})">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithPeriod(System.Int32)">
- <summary>
- Sets the Period property
- </summary>
- <param name="period">The value to set for the Period property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithUnit(System.String)">
- <summary>
- Sets the Unit property
- </summary>
- <param name="unit">The value to set for the Unit property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithEvaluationPeriods(System.Int32)">
- <summary>
- Sets the EvaluationPeriods property
- </summary>
- <param name="evaluationPeriods">The value to set for the EvaluationPeriods property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithThreshold(System.Double)">
- <summary>
- Sets the Threshold property
- </summary>
- <param name="threshold">The value to set for the Threshold property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricAlarm.WithComparisonOperator(System.String)">
- <summary>
- Sets the ComparisonOperator property
- </summary>
- <param name="comparisonOperator">The value to set for the ComparisonOperator property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.AlarmName">
- <summary>
- The name of the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.AlarmArn">
- <summary>
- The Amazon Resource Name (ARN) of the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.AlarmDescription">
- <summary>
- The description for the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.AlarmConfigurationUpdatedTimestamp">
- <summary>
- The time stamp of the last update to the alarm configuration.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.ActionsEnabled">
- <summary>
- Indicates whether actions should be executed during any changes to the alarm's state.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.OKActions">
- <summary>
- The list of actions to execute when this alarm transitions into an <c>OK</c> state from any other state. Each action is specified as an
- Amazon Resource Number (ARN). Currently the only actions supported are publishing to an Amazon SNS topic and triggering an Auto Scaling
- policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.AlarmActions">
- <summary>
- The list of actions to execute when this alarm transitions into an <c>ALARM</c> state from any other state. Each action is specified as an
- Amazon Resource Number (ARN). Currently the only actions supported are publishing to an Amazon SNS topic and triggering an Auto Scaling
- policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.InsufficientDataActions">
- <summary>
- The list of actions to execute when this alarm transitions into an <c>INSUFFICIENT_DATA</c> state from any other state. Each action is
- specified as an Amazon Resource Number (ARN). Currently the only actions supported are publishing to an Amazon SNS topic or triggering an
- Auto Scaling policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.StateValue">
- <summary>
- The state value for the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>OK, ALARM, INSUFFICIENT_DATA</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.StateReason">
- <summary>
- A human-readable explanation for the alarm's state.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 1023</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.StateReasonData">
- <summary>
- An explanation for the alarm's state in machine-readable JSON format
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 4000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.StateUpdatedTimestamp">
- <summary>
- The time stamp of the last update to the alarm's state.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.MetricName">
- <summary>
- The name of the alarm's metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.Namespace">
- <summary>
- The namespace of alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[^:].*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.Statistic">
- <summary>
- The statistic to apply to the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>SampleCount, Average, Sum, Minimum, Maximum</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.Dimensions">
- <summary>
- The list of dimensions associated with the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.Period">
- <summary>
- The period in seconds over which the statistic is applied.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>60 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.Unit">
- <summary>
- The unit of the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, None</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.EvaluationPeriods">
- <summary>
- The number of periods over which data is compared to the specified threshold.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.Threshold">
- <summary>
- The value against which the specified statistic is compared.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricAlarm.ComparisonOperator">
- <summary>
- The arithmetic operation to use when comparing the specified <c>Statistic</c> and <c>Threshold</c>. The specified <c>Statistic</c> value is
- used as the first operand.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DisableAlarmActionsResponse">
- <summary>
- Returns information about the DisableAlarmActions response metadata.
- The DisableAlarmActions operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DisableAlarmActionsRequest">
- <summary>
- Container for the parameters to the DisableAlarmActions operation.
- <para> Disables actions for the specified alarms. When an alarm's
- actions are disabled the alarm's state may change, but none of the
- alarm's actions will execute. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.DisableAlarmActions(Amazon.CloudWatch.Model.DisableAlarmActionsRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DisableAlarmActionsRequest.WithAlarmNames(System.String[])">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DisableAlarmActionsRequest.WithAlarmNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DisableAlarmActionsRequest.AlarmNames">
- <summary>
- The names of the alarms to disable actions for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmsResult">
- <summary>
- <para> The output for the DescribeAlarms action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsResult.WithMetricAlarms(Amazon.CloudWatch.Model.MetricAlarm[])">
- <summary>
- Adds elements to the MetricAlarms collection
- </summary>
- <param name="metricAlarms">The values to add to the MetricAlarms collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsResult.WithMetricAlarms(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.MetricAlarm})">
- <summary>
- Adds elements to the MetricAlarms collection
- </summary>
- <param name="metricAlarms">The values to add to the MetricAlarms collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsResult.MetricAlarms">
- <summary>
- A list of information for the specified alarms.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.AlarmHistoryItem">
- <summary>
- <para> The <c>AlarmHistoryItem</c> data type contains descriptive
- information about the history of a specific alarm. If you call
- DescribeAlarmHistory, Amazon CloudWatch returns this data type as part
- of the DescribeAlarmHistoryResult data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.AlarmHistoryItem.WithAlarmName(System.String)">
- <summary>
- Sets the AlarmName property
- </summary>
- <param name="alarmName">The value to set for the AlarmName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.AlarmHistoryItem.WithTimestamp(System.DateTime)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The value to set for the Timestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.AlarmHistoryItem.WithHistoryItemType(System.String)">
- <summary>
- Sets the HistoryItemType property
- </summary>
- <param name="historyItemType">The value to set for the HistoryItemType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.AlarmHistoryItem.WithHistorySummary(System.String)">
- <summary>
- Sets the HistorySummary property
- </summary>
- <param name="historySummary">The value to set for the HistorySummary property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.AlarmHistoryItem.WithHistoryData(System.String)">
- <summary>
- Sets the HistoryData property
- </summary>
- <param name="historyData">The value to set for the HistoryData property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.AlarmHistoryItem.AlarmName">
- <summary>
- The descriptive name for the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.AlarmHistoryItem.Timestamp">
- <summary>
- The time stamp for the alarm history item.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.AlarmHistoryItem.HistoryItemType">
- <summary>
- The type of alarm history item.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>ConfigurationUpdate, StateUpdate, Action</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.AlarmHistoryItem.HistorySummary">
- <summary>
- A human-readable summary of the alarm history.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.AlarmHistoryItem.HistoryData">
- <summary>
- Machine-readable data about the alarm in JSON format.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 4095</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.AmazonCloudWatch">
- <summary>
- Interface for accessing AmazonCloudWatch.
-
- Amazon CloudWatch <para>Amazon CloudWatch is a web service that
- enables you to monitor and manage various metrics, as well as
- configure alarm actions based on data from metrics.</para>
- <para>Amazon CloudWatch monitoring enables you to collect, analyze,
- and view system and application metrics so that you can make
- operational and business decisions more quickly and with greater
- confidence. You can use Amazon CloudWatch to collect metrics about
- your AWS resources, such as the performance of your Amazon EC2
- instances. You can also publish your own metrics directly to Amazon
- CloudWatch.</para> <para>Amazon CloudWatch allows you to manage the
- metrics in several ways. If you are publishing your own metrics, you
- can define custom metrics for your own use. If you are registered for
- an AWS product that supports Amazon CloudWatch, the service
- automatically pushes basic metrics to CloudWatch for you. Once Amazon
- CloudWatch contains metrics from either source, you can calculate
- statistics based on that data and graphically visualize those
- statistics in the Amazon CloudWatch Console.</para> <para>Amazon
- CloudWatch alarms help you implement decisions more easily by enabling
- you to do things like send notifications or automatically make changes
- to the resources you are monitoring, based on rules that you define.
- For example, you can create alarms that initiate Auto Scaling and
- Simple Notification Service actions on your behalf. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.PutMetricAlarm(Amazon.CloudWatch.Model.PutMetricAlarmRequest)">
- <summary>
- <para> Creates or updates an alarm and associates it with the
- specified Amazon CloudWatch metric. Optionally, this operation can
- associate one or more Amazon Simple Notification Service resources
- with the alarm. </para> <para> When this operation creates an alarm,
- the alarm state is immediately set to <c>INSUFFICIENT_DATA</c> . The
- alarm is evaluated and its <c>StateValue</c> is set appropriately.
- Any actions associated with the <c>StateValue</c> is then executed.
- </para> <para><b>NOTE:</b> When updating an existing alarm, its
- StateValue is left unchanged. </para>
- </summary>
-
- <param name="putMetricAlarmRequest">Container for the necessary
- parameters to execute the PutMetricAlarm service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.PutMetricData(Amazon.CloudWatch.Model.PutMetricDataRequest)">
- <summary>
- <para> Publishes metric data points to Amazon CloudWatch. Amazon
- Cloudwatch associates the data points with the specified metric. If
- the specified metric does not exist, Amazon CloudWatch creates the
- metric. </para> <para><b>NOTE:</b> If you create a metric with the
- PutMetricData action, allow up to fifteen minutes for the metric to
- appear in calls to the ListMetrics action. </para> <para> The size of
- a PutMetricData request is limited to 8 KB for HTTP GET requests and
- 40 KB for HTTP POST requests. </para> <para><b>IMPORTANT:</b> Although
- the Value parameter accepts numbers of type Double, Amazon CloudWatch
- truncates values with very large exponents. Values with base-10
- exponents greater than 126 (1 x 10^126) are truncated. Likewise,
- values with base-10 exponents less than -130 (1 x 10^-130) are also
- truncated. </para>
- </summary>
-
- <param name="putMetricDataRequest">Container for the necessary
- parameters to execute the PutMetricData service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterValueException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InternalServiceException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterCombinationException"/>
- <exception cref="T:Amazon.CloudWatch.Model.MissingRequiredParameterException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.ListMetrics(Amazon.CloudWatch.Model.ListMetricsRequest)">
- <summary>
- <para> Returns a list of valid metrics stored for the AWS account
- owner. Returned metrics can be used with <c>GetMetricStatistics</c> to
- obtain statistical data for a given metric. </para> <para><b>NOTE:</b>
- Up to 500 results are returned for any one call. To retrieve further
- results, use returned NextToken values with subsequent ListMetrics
- operations. </para> <para><b>NOTE:</b> If you create a metric with the
- PutMetricData action, allow up to fifteen minutes for the metric to
- appear in calls to the ListMetrics action. </para>
- </summary>
-
- <param name="listMetricsRequest">Container for the necessary
- parameters to execute the ListMetrics service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the ListMetrics service method, as returned
- by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InternalServiceException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterValueException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.GetMetricStatistics(Amazon.CloudWatch.Model.GetMetricStatisticsRequest)">
- <summary>
- <para> Gets statistics for the specified metric. </para>
- <para><b>NOTE:</b> The maximum number of data points returned from a
- single GetMetricStatistics request is 1,440. If a request is made that
- generates more than 1,440 data points, Amazon CloudWatch returns an
- error. In such a case, alter the request by narrowing the specified
- time range or increasing the specified period. Alternatively, make
- multiple requests across adjacent time ranges. </para> <para> Amazon
- CloudWatch aggregates data points based on the length of the
- <c>period</c> that you specify. For example, if you request statistics
- with a one-minute granularity, Amazon CloudWatch aggregates data
- points with time stamps that fall within the same one-minute period.
- In such a case, the data points queried can greatly outnumber the data
- points returned. </para> <para><b>NOTE:</b> The maximum number of data
- points that can be queried is 50,850; whereas the maximum number of
- data points returned is 1,440. </para> <para> The following examples
- show various statistics allowed by the data point query maximum of
- 50,850 when you call <c>GetMetricStatistics</c> on Amazon EC2
- instances with detailed (one-minute) monitoring enabled: </para>
- <ul>
- <li>Statistics for up to 400 instances for a span of one hour</li>
- <li>Statistics for up to 35 instances over a span of 24 hours</li>
- <li>Statistics for up to 2 instances over a span of 2 weeks</li>
-
- </ul>
- </summary>
-
- <param name="getMetricStatisticsRequest">Container for the necessary
- parameters to execute the GetMetricStatistics service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the GetMetricStatistics service method, as
- returned by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterValueException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InternalServiceException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterCombinationException"/>
- <exception cref="T:Amazon.CloudWatch.Model.MissingRequiredParameterException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.DisableAlarmActions(Amazon.CloudWatch.Model.DisableAlarmActionsRequest)">
- <summary>
- <para> Disables actions for the specified alarms. When an alarm's
- actions are disabled the alarm's state may change, but none of the
- alarm's actions will execute. </para>
- </summary>
-
- <param name="disableAlarmActionsRequest">Container for the necessary
- parameters to execute the DisableAlarmActions service method on
- AmazonCloudWatch.</param>
-
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.DescribeAlarms(Amazon.CloudWatch.Model.DescribeAlarmsRequest)">
- <summary>
- <para> Retrieves alarms with the specified names. If no name is
- specified, all alarms for the user are returned. Alarms can be
- retrieved by using only a prefix for the alarm name, the alarm state,
- or a prefix for any action. </para>
- </summary>
-
- <param name="describeAlarmsRequest">Container for the necessary
- parameters to execute the DescribeAlarms service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the DescribeAlarms service method, as
- returned by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.DescribeAlarmsForMetric(Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest)">
- <summary>
- <para> Retrieves all alarms for a single metric. Specify a statistic,
- period, or unit to filter the set of alarms further. </para>
- </summary>
-
- <param name="describeAlarmsForMetricRequest">Container for the
- necessary parameters to execute the DescribeAlarmsForMetric service
- method on AmazonCloudWatch.</param>
-
- <returns>The response from the DescribeAlarmsForMetric service method,
- as returned by AmazonCloudWatch.</returns>
-
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.DescribeAlarmHistory(Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest)">
- <summary>
- <para> Retrieves history for the specified alarm. Filter alarms by
- date range or item type. If an alarm name is not specified, Amazon
- CloudWatch returns histories for all of the owner's alarms. </para>
- <para><b>NOTE:</b> Amazon CloudWatch retains the history of an alarm
- for two weeks, whether or not you delete the alarm. </para>
- </summary>
-
- <param name="describeAlarmHistoryRequest">Container for the necessary
- parameters to execute the DescribeAlarmHistory service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the DescribeAlarmHistory service method, as
- returned by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.EnableAlarmActions(Amazon.CloudWatch.Model.EnableAlarmActionsRequest)">
- <summary>
- <para> Enables actions for the specified alarms. </para>
- </summary>
-
- <param name="enableAlarmActionsRequest">Container for the necessary
- parameters to execute the EnableAlarmActions service method on
- AmazonCloudWatch.</param>
-
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.DeleteAlarms(Amazon.CloudWatch.Model.DeleteAlarmsRequest)">
- <summary>
- <para> Deletes all specified alarms. In the event of an error, no
- alarms are deleted. </para>
- </summary>
-
- <param name="deleteAlarmsRequest">Container for the necessary
- parameters to execute the DeleteAlarms service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.ResourceNotFoundException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatch.SetAlarmState(Amazon.CloudWatch.Model.SetAlarmStateRequest)">
- <summary>
- <para> Temporarily sets the state of an alarm. When the updated
- <c>StateValue</c> differs from the previous value, the action
- configured for the appropriate state is invoked. This is not a
- permanent change. The next periodic alarm check (in about a minute)
- will set the alarm to its actual state. </para>
- </summary>
-
- <param name="setAlarmStateRequest">Container for the necessary
- parameters to execute the SetAlarmState service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.ResourceNotFoundException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidFormatException"/>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetOriginAccessIdentityConfigRequest">
- <summary>
- The GetOriginAccessIdentityConfigRequest contains the parameters used for the GetOriginAccessIdentityConfig operation.
- <br />Required Parameters: Id
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontRequest">
- <summary>
- Base class for CloudFront operation requests.
- Provides a header collection which can is used to store the request headers.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.BaseRequest">
- <summary>
- Base class for Cloudfront operations that provides headers.
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.BaseRequest.headers">
- <summary>
- The protected member that holds the service specific headers with which
- the HTTP Request is configured.
-
- This is used by all derived Requests
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.BaseRequest.IsSetHeaders">
- <summary>
- Checks if Headers property is set
- </summary>
- <returns>true if Headers property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.BaseRequest.AddHeaders(System.Collections.Specialized.NameValueCollection)">
- <summary>
- Adds all of the key/value pairs from collection into our request header.
- </summary>
- <param name="collection">A collection of key/value headers</param>
- </member>
- <member name="P:Amazon.CloudFront.Model.BaseRequest.Headers">
- <summary>
- Gets the Headers property.
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontRequest.distId">
- <summary>
- The ID of the CloudFront distribution
- <list type="number">
- <item>Get Distribution Config</item>
- <item>Get Distribution Info</item>
- <item>Set Distribution Config</item>
- <item>Delete Distribution</item>
- </list>
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontRequest.etagHeader">
- <summary>
- The ETag for the distribution.
- </summary>
- <remarks>
- This value is returned by the CloudFront
- service when:
- <list type="number">
- <item>a distribution is created</item>
- <item>a distribution's info is requested</item>
- <item>a distribution's config is requested</item>
- <item>a distribution's config is modified</item>
- </list>
- </remarks>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontRequest.dConfig">
- <summary>
- The CloudFront Distribution Config object used by:
- <list type="number">
- <item>Set Distribution Config</item>
- <item>Create Distribution</item>
- </list>
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontRequest.sdConfig">
- <summary>
- The CloudFront Streaming Distribution Config object used by:
- <list type="number">
- <item>Set Streaming Distribution Config</item>
- <item>Create Streaming Distribution</item>
- </list>
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontRequest.reqMarker">
- <summary>
- All keys returned will be lexiographically after the marker.
- Used by ListDistributionsRequest
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontRequest.reqMaxItems">
- <summary>
- Limits the result set of keys to MaxItems.
- Used by ListDistributionsRequest
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontRequest.IsSetId">
- <summary>
- Checks if Id property is set.
- </summary>
- <returns>true if Id property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontRequest.IsSetETag">
- <summary>
- Checks if ETag property is set.
- </summary>
- <returns>true if ETag property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontRequest.IsSetDistributionConfig">
- <summary>
- Checks if DistributionConfig property is set.
- </summary>
- <returns>true if DistributionConfig property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontRequest.IsSetStreamingDistributionConfig">
- <summary>
- Checks if StreamingDistributionConfig property is set.
- </summary>
- <returns>true if StreamingDistributionConfig property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontRequest.IsSetMarker">
- <summary>
- Checks if Marker property is set
- </summary>
- <returns>true if Marker property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontRequest.IsSetMaxItems">
- <summary>
- Checks if MaxItems property is set
- </summary>
- <returns>true if MaxItems property is set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontRequest.Id">
- <summary>
- Gets and sets the Id property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontRequest.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontRequest.DistributionConfig">
- <summary>
- Gets and Sets the DistributionConfig property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontRequest.StreamingDistributionConfig">
- <summary>
- Gets and Sets the StreamingDistributionConfig property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontRequest.Marker">
- <summary>
- Gets and sets the Marker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontRequest.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetOriginAccessIdentityConfigRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The OriginAccessIdentity's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetOriginAccessIdentityConfigRequest.Id">
- <summary>
- Gets and sets the Id property for the Origin Access Identity
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.CreateStackResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateStack operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.StackResourceSummary">
- <summary>
- <para> The StackResourceSummary data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceSummary.WithLogicalResourceId(System.String)">
- <summary>
- Sets the LogicalResourceId property
- </summary>
- <param name="logicalResourceId">The value to set for the LogicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceSummary.WithPhysicalResourceId(System.String)">
- <summary>
- Sets the PhysicalResourceId property
- </summary>
- <param name="physicalResourceId">The value to set for the PhysicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceSummary.WithResourceType(System.String)">
- <summary>
- Sets the ResourceType property
- </summary>
- <param name="resourceType">The value to set for the ResourceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceSummary.WithLastUpdatedTimestamp(System.DateTime)">
- <summary>
- Sets the LastUpdatedTimestamp property
- </summary>
- <param name="lastUpdatedTimestamp">The value to set for the LastUpdatedTimestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceSummary.WithResourceStatus(System.String)">
- <summary>
- Sets the ResourceStatus property
- </summary>
- <param name="resourceStatus">The value to set for the ResourceStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceSummary.WithResourceStatusReason(System.String)">
- <summary>
- Sets the ResourceStatusReason property
- </summary>
- <param name="resourceStatusReason">The value to set for the ResourceStatusReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.LogicalResourceId">
- <summary>
- The logical name of the resource specified in the template.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.PhysicalResourceId">
- <summary>
- The name or unique identifier that corresponds to a physical instance ID of the resource.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.ResourceType">
- <summary>
- Type of the resource. (For more information, go to the <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS
- CloudFormation User Guide</a>.)
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.LastUpdatedTimestamp">
- <summary>
- Time the status was updated.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.ResourceStatus">
- <summary>
- Current status of the resource.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceSummary.ResourceStatusReason">
- <summary>
- Success/failure message associated with the resource.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackResourcesResponse">
- <summary>
- Returns information about the DescribeStackResourcesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesResponse.DescribeStackResourcesResult">
- <summary>
- Gets and sets the DescribeStackResourcesResult property.
- The output for a DescribeStackResources action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackEventsResponse">
- <summary>
- Returns information about the DescribeStackEventsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsResponse.DescribeStackEventsResult">
- <summary>
- Gets and sets the DescribeStackEventsResult property.
- The output for a DescribeStackEvents action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DeleteStackResponse">
- <summary>
- Returns information about the DeleteStack response metadata.
- The DeleteStack operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.AlreadyExistsException">
- <summary>
- AmazonCloudFormation exception
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.AlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new AlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ResumeProcessesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ResumeProcesses operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ResumeProcessesRequestMarshaller">
- <summary>
- Resume Processes Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.NotificationConfigurationUnmarshaller">
- <summary>
- NotificationConfiguration Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.MetricGranularityType">
- <summary>
- <para> The MetricGranularityType data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.MetricGranularityType.WithGranularity(System.String)">
- <summary>
- Sets the Granularity property
- </summary>
- <param name="granularity">The value to set for the Granularity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.MetricGranularityType.Granularity">
- <summary>
- The granularity of a Metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DisableMetricsCollectionRequest">
- <summary>
- Container for the parameters to the DisableMetricsCollection operation.
- <para> Disables monitoring of group metrics for the Auto Scaling group specified in AutoScalingGroupName. You can specify the list of
- affected metrics with the Metrics parameter. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DisableMetricsCollection(Amazon.AutoScaling.Model.DisableMetricsCollectionRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DisableMetricsCollectionRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DisableMetricsCollectionRequest.WithMetrics(System.String[])">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DisableMetricsCollectionRequest.WithMetrics(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DisableMetricsCollectionRequest.AutoScalingGroupName">
- <summary>
- The name or ARN of the Auto Scaling Group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DisableMetricsCollectionRequest.Metrics">
- <summary>
- The list of metrics to disable. If no metrics are specified, all metrics are disabled. The following metrics are supported: <ul>
- <li>GroupMinSize</li> <li>GroupMaxSize</li> <li>GroupDesiredCapacity</li> <li>GroupInServiceInstances</li> <li>GroupPendingInstances</li>
- <li>GroupTerminatingInstances</li> <li>GroupTotalInstances</li> </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScheduledActionsResult">
- <summary>
- <para> A scaling action that is scheduled for a future time and date. An action can be scheduled up to thirty days in advance. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsResult.WithScheduledUpdateGroupActions(Amazon.AutoScaling.Model.ScheduledUpdateGroupAction[])">
- <summary>
- Adds elements to the ScheduledUpdateGroupActions collection
- </summary>
- <param name="scheduledUpdateGroupActions">The values to add to the ScheduledUpdateGroupActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsResult.WithScheduledUpdateGroupActions(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.ScheduledUpdateGroupAction})">
- <summary>
- Adds elements to the ScheduledUpdateGroupActions collection
- </summary>
- <param name="scheduledUpdateGroupActions">The values to add to the ScheduledUpdateGroupActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsResult.ScheduledUpdateGroupActions">
- <summary>
- A list of scheduled actions designed to update an Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScalingProcessTypesResult">
- <summary>
- <para> The output of the DescribeScalingProcessTypes action. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingProcessTypesResult.WithProcesses(Amazon.AutoScaling.Model.ProcessType[])">
- <summary>
- Adds elements to the Processes collection
- </summary>
- <param name="processes">The values to add to the Processes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingProcessTypesResult.WithProcesses(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.ProcessType})">
- <summary>
- Adds elements to the Processes collection
- </summary>
- <param name="processes">The values to add to the Processes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingProcessTypesResult.Processes">
- <summary>
- A list of <a>ProcessType</a> names.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScalingActivitiesResponse">
- <summary>
- Returns information about the DescribeScalingActivitiesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingActivitiesResponse.DescribeScalingActivitiesResult">
- <summary>
- Gets and sets the DescribeScalingActivitiesResult property.
- The output for the DescribeScalingActivities action.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesResult">
- <summary>
-
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesResult.WithAutoScalingNotificationTypes(System.String[])">
- <summary>
- Adds elements to the AutoScalingNotificationTypes collection
- </summary>
- <param name="autoScalingNotificationTypes">The values to add to the AutoScalingNotificationTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesResult.WithAutoScalingNotificationTypes(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AutoScalingNotificationTypes collection
- </summary>
- <param name="autoScalingNotificationTypes">The values to add to the AutoScalingNotificationTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesResult.AutoScalingNotificationTypes">
- <summary>
- <i>Eric's doc mentions the following: autoscaling:EC2_Instance_Launch, autoscaling:EC2_Instance_Terminate, autoscaling:Error. Should we list
- them? Where can I get a complete list to add here or refer users to?</i>>
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesRequest">
- <summary>
- Container for the parameters to the DescribeAutoScalingNotificationTypes operation.
- <para> Returns a list of all notification types that are supported by Auto Scaling. </para> <para> <i>What if the input is empty?</i>
- </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAutoScalingNotificationTypes(Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesRequest)"/>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ActionIdentifier">
- <summary>
- An access control policy action identifies a specific action in a service
- that can be performed on a resource. For example, sending a message to a
- queue.
- <para>
- ActionIdentifiers allow you to limit what your access control policy statement affects.
- For example, you could create a policy statement that enables a certain group
- of users to send messages to your queue, but not allow them to perform any
- other actions on your queue.
- </para>
- <para>
- The action is B in the statement
- "A has permission to do B to C where D applies."
- </para>
- <para>Free form access control policy actions may include a wildcard (*) to match
- multiple actions.
- </para>
- <para>
- Constants for known actions can be found in the Amazon.Auth.AccessControlPolicy.ActionIdentifiers namespace.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ActionIdentifier.#ctor(System.String)">
- <summary>
- Constructs an Actionidentifer with the given action name.
- </summary>
- <param name="actionName">The name of the action</param>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.ActionIdentifier.ActionName">
- <summary>
- Gets and sets the name of this action. For example, 'sqs:SendMessage' is the
- name corresponding to the SQS action that enables users to send a message
- to an SQS queue.
- </summary>
- </member>
- <member name="M:ThirdParty.BouncyCastle.Utilities.IO.Pem.PemReader.ReadPemObject">
- <returns>
- A <see cref="T:ThirdParty.BouncyCastle.Utilities.IO.Pem.PemObject"/>
- </returns>
- <exception cref="T:System.IO.IOException"></exception>
- </member>
- <member name="T:Amazon.SQS.Model.SetQueueAttributesResponse">
- <summary>
- Returns a list of messages and metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.SetQueueAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SetQueueAttributesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SetQueueAttributesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.SetQueueAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ResponseMetadata">
- <summary>
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ResponseMetadata.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">A unique ID for tracking the request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ResponseMetadata.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ResponseMetadata.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ResponseMetadata.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ResponseMetadata.RequestId">
- <summary>
- Gets and sets the RequestId property.
- A unique ID for tracking the request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListSubscriptionsResult">
- <summary>
- Encapsulates the result of the ListSubscriptions action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResult.IsSetSubscriptions">
- <summary>
- Checks if Subscriptions property is set
- </summary>
- <returns>true if Subscriptions property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResult.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsResult.Subscriptions">
- <summary>
- Gets and sets the Subscriptions property.
- A list of subscriptions.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsResult.NextToken">
- <summary>
- Gets and sets the NextToken property.
- A token sent to an endpoint during the Subscribe operation.
- Token to pass along to the next ListSubscriptions request. This element is returned if there are more subscriptions to retrieve.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.DeleteVerifiedEmailAddressRequestMarshaller">
- <summary>
- Delete Verified Email Address Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.PutAttributesRequest">
- <summary>
- The PutAttributes operation creates or replaces attributes in an item. Attributes are uniquely identified in an
- item by their name/value combination. For example, a single item can have the attributes { "first_name",
- "first_value" } and { "first_name", second_value" }. However, it cannot have two attribute instances where both
- the attribute name and attribute value are the same.
-
- Optionally, the requestor can supply the Replace parameter for each individual attribute. Setting this value to
- true causes the new attribute value to replace the existing attribute value(s). For example, if an item has the
- attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requestor calls PutAttributes using the attributes
- { 'b', '4' } with the Replace parameter set to true, the final attributes of the item are changed to { 'a', '1' }
- and { 'b', '4' }, which replaces the previous values of the 'b' attribute with the new value.
-
- Note: Using PutAttributes to replace attribute values that do not exist will not result in an error response.
-
- You cannot specify an empty string as an attribute name. Because Amazon SimpleDB makes multiple copies of your data
- and uses an eventual consistency update model, an immediate GetAttributes or Select request (read) immediately after a
- DeleteAttributes request (write) might not return the updated data.
-
- The following limitations are enforced for this operation:
-
- * 256 total attribute name-value pairs per item
- * One billion attributes per domain
- * 10 GB of total user data storage per domain
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain in which to perform the operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.WithItemName(System.String)">
- <summary>
- Sets the ItemName property
- </summary>
- <param name="itemName">The name of the item.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.IsSetItemName">
- <summary>
- Checks if ItemName property is set
- </summary>
- <returns>true if ItemName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.WithAttribute(Amazon.SimpleDB.Model.ReplaceableAttribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.WithExpected(Amazon.SimpleDB.Model.UpdateCondition)">
- <summary>
- Sets the Expected property
- </summary>
- <param name="expected">Performs the operation if the specified attribute name and value match.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesRequest.IsSetExpected">
- <summary>
- Checks if Expected property is set
- </summary>
- <returns>true if Expected property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.PutAttributesRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain in which to perform the operation.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.PutAttributesRequest.ItemName">
- <summary>
- Gets and sets the ItemName property.
- The name of the item.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.PutAttributesRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.PutAttributesRequest.Expected">
- <summary>
- Gets and sets the Expected property.
- Performs the operation if the specified attribute name and value match.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.ListDomainsResponse">
- <summary>
- Lists all domains associated with the account. It returns domain names up to the limit set by MaxNumberOfDomains.
- A NextToken is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times
- with the NextToken returns up to MaxNumberOfDomains more domain names each time.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResponse.WithListDomainsResult(Amazon.SimpleDB.Model.ListDomainsResult)">
- <summary>
- Sets the ListDomainsResult property
- </summary>
- <param name="listDomainsResult">Lists all domains associated with the account. It returns domain names up to the limit set by MaxNumberOfDomains.
- A NextToken is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times
- with the NextToken returns up to MaxNumberOfDomains more domain names each time.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResponse.IsSetListDomainsResult">
- <summary>
- Checks if ListDomainsResult property is set
- </summary>
- <returns>true if ListDomainsResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ListDomainsResponse.ListDomainsResult">
- <summary>
- Gets and sets the ListDomainsResult property.
- Lists all domains associated with the account. It returns domain names up to the limit set by MaxNumberOfDomains.
- A NextToken is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times
- with the NextToken returns up to MaxNumberOfDomains more domain names each time.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ListDomainsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DeleteDomainResponse">
- <summary>
- Returns metadata about the response, including box usage and request ID.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteDomainResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteDomainResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteDomainResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteDomainResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DeleteAttributesRequest">
- <summary>
- Deletes one or more attributes associated with the item. If all attributes of an item are deleted, the
- item is deleted.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain in which to perform the operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.WithItemName(System.String)">
- <summary>
- Sets the ItemName property
- </summary>
- <param name="itemName">The name of the item in which to perform the operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.IsSetItemName">
- <summary>
- Checks if ItemName property is set
- </summary>
- <returns>true if ItemName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.WithAttribute(Amazon.SimpleDB.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">List of attributes to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.WithExpected(Amazon.SimpleDB.Model.UpdateCondition)">
- <summary>
- Sets the Expected property
- </summary>
- <param name="expected">Performs the operation if the specified attribute name and value match.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesRequest.IsSetExpected">
- <summary>
- Checks if Expected property is set
- </summary>
- <returns>true if Expected property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteAttributesRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain in which to perform the operation.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteAttributesRequest.ItemName">
- <summary>
- Gets and sets the ItemName property.
- The name of the item in which to perform the operation.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteAttributesRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- List of attributes to delete.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteAttributesRequest.Expected">
- <summary>
- Gets and sets the Expected property.
- Performs the operation if the specified attribute name and value match.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.UploadPartRequest">
- <summary>
- The UploadPartRequest contains the parameters used for the UploadPart method.
- <para>
- If PartSize is not specified then the rest of the content from the file
- or stream will be sent to Amazon S3.
- </para>
- <para>
- You must set either the FilePath or InputStream. If FilePath is set then the FilePosition
- property must be set.
- </para>
- <br />Required Parameters: BucketName, Key, UploadId, PartNumber
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket where the S3 Object you are
- creating gets put.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object you create.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithUploadId(System.String)">
- <summary>
- Sets the UploadId property for this request.
- This is the upload id for the multipart upload in process.
- </summary>
- <param name="uploadId">The value that UploadId is set to</param>
- <returns>the request with the UploadId set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetUploadId">
- <summary>
- Checks if UploadId property is set.
- </summary>
- <returns>true if UploadId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithPartNumber(System.Int32)">
- <summary>
- Sets the PartNumber property for this request.
- </summary>
- <param name="partNumber">The value that PartNumber is set to</param>
- <returns>the request with the PartNumber set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetPartNumber">
- <summary>
- Checks if PartNumber property is set.
- </summary>
- <returns>true if PartNumber property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithPartSize(System.Int64)">
- <summary>
- Sets the PartSize property for this request.
- </summary>
- <param name="partSize">The value that PartSize is set to</param>
- <returns>the request with the PartSize set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetPartSize">
- <summary>
- Checks if PartSize property is set.
- </summary>
- <returns>true if PartSize property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithMD5Digest(System.String)">
- <summary>
- Sets the MD5Digest property for this request.
- </summary>
- <param name="md5Digest">The value that Md5Digest is set to</param>
- <returns>the request with the Md5Digest set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetMD5Digest">
- <summary>
- Checks if Md5Digest property is set.
- </summary>
- <returns>true if Md5Digest property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithGenerateChecksum(System.Boolean)">
- <summary>
- Sets the GenerateMD5Digest property. If this property is set,
- the MD5 md5Digest of the part to be uploaded is generated
- prior to the data being sent to S3.
- </summary>
- <param name="fGenerateMD5Digest">GenerateMD5Digest property</param>
- <returns>this instance</returns>
- <remarks>This is a computationally expensive operation,
- and will add to the total time it will take to upload
- data to S3. Please use this option judicially.
- </remarks>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithFilePath(System.String)">
- <summary>
- Sets the FilePath property for this request.
- </summary>
- <param name="filePath">The value that FilePath is set to</param>
- <returns>the request with the FilePath set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetFilePath">
- <summary>
- Checks if FilePath property is set.
- </summary>
- <returns>true if FilePath property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithFilePosition(System.Int64)">
- <summary>
- Sets the FilePosition property for this request.
- </summary>
- <param name="filePosition">The value that FilePosition is set to</param>
- <returns>the request with the FilePosition set</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.IsSetFilePosition">
- <summary>
- Checks if FilePosition property is set.
- </summary>
- <returns>true if FilePosition property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the Timeout property (in milliseconds).
- Please set the timeout only if you are certain that
- the file will not be transferred within the default intervals
- for an HttpWebRequest.
- </summary>
- <param name="timeout">Timeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithReadWriteTimeout(System.Int32)">
- <summary>
- Sets the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout property of the HttpWebRequest.
- </summary>
- <param name="readwritetimeout">ReadWriteTimeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.WithSubscriber(System.EventHandler{Amazon.S3.Model.UploadPartProgressArgs})">
- <summary>
- The "handler" will be notified every time a put
- object progress event is raised.
- </summary>
- <param name="handler">A method that consumes the put object progress notification</param>
- <returns>this instance of the PutObjectRequest</returns>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartRequest.OnRaiseProgressEvent(System.Int64,System.Int64,System.Int64)">
- <summary>
- This method is called by a producer of put object progress
- notifications. When called, all the subscribers in the
- invocation list will be called sequentially.
- </summary>
- <param name="incrementTransferred">The number of bytes transferred since last event</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.UploadId">
- <summary>
- Gets and sets the UploadId property.
- This is the upload id for the multipart upload in process.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.PartNumber">
- <summary>
- Gets and sets the PartNumber property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.PartSize">
- <summary>
- Gets and sets the PartSize property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.MD5Digest">
- <summary>
- Gets and sets the MD5Digest property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.GenerateMD5Digest">
- <summary>
- Gets and Sets the property that governs whether
- a md5Digest is generated for the part being
- PUT into S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.FilePath">
- <summary>
- Gets and sets the FilePath property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.FilePosition">
- <summary>
- Gets and sets the FilePosition property. This field is required when
- a file path is specified. It is ignored when using the InputStream property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.Timeout">
- <summary>
- Gets and sets of the Timeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout and Timeout properties of the
- HTTPWebRequest object used for S3 PUT Object requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartRequest.ReadWriteTimeout">
- <summary>
- Gets and sets of the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout properties of the
- HTTPWebRequest object used for S3 PUT Object requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="E:Amazon.S3.Model.UploadPartRequest.UploadPartProgressEvent">
- <summary>
- The event for Put Object progress notifications. All
- subscribers will be notified when a new progress
- event is raised.
- </summary>
- <remarks>
- Subscribe to this event if you want to receive
- put object progress notifications. Here is how:<br />
- 1. Define a method with a signature similar to this one:
- <code>
- private void displayProgress(object sender, PutObjectProgressArgs args)
- {
- Console.WriteLine(args);
- }
- </code>
- 2. Add this method to the Put Object Progress Event delegate's invocation list
- <code>
- PutObjectRequest request = new PutObjectRequest();
- request.PutObjectProgressEvent += displayProgress;
- </code>
- </remarks>
- </member>
- <member name="T:Amazon.S3.Model.UploadPartProgressArgs">
- <summary>
- Encapsulates the information needed to provide
- transfer progress to subscribers of the Put Object
- Event.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.TransferProgressArgs.#ctor(System.Int64,System.Int64,System.Int64)">
- <summary>
- The constructor takes the number of
- currently transferred bytes and the
- total number of bytes to be transferred
- </summary>
- <param name="incrementTransferred">The number of bytes transferred since last event</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="M:Amazon.S3.Model.TransferProgressArgs.ToString">
- <summary>
- Returns a string representation of this object
- </summary>
- <returns></returns>
- </member>
- <member name="P:Amazon.S3.Model.TransferProgressArgs.PercentDone">
- <summary>
- Gets the percentage of transfer completed
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.TransferProgressArgs.IncrementTransferred">
- <summary>
- Gets the number of bytes transferred since last event
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.TransferProgressArgs.TransferredBytes">
- <summary>
- Gets the number of bytes transferred
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.TransferProgressArgs.TotalBytes">
- <summary>
- Gets the total number of bytes to be transferred
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.UploadPartProgressArgs.#ctor(System.Int64,System.Int64,System.Int64)">
- <summary>
- The constructor takes the number of
- currently transferred bytes and the
- total number of bytes to be transferred
- </summary>
- <param name="incrementTransferred">The number of bytes transferred since last event</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="T:Amazon.S3.Model.PutObjectRequest">
- <summary>
- The PutObjectRequest contains the parameters used for the PutObject operation.
- <br />Must set only 1 of ContentBody, InputStream, or FilePath
- <br />Required Parameters: BucketName, Key
- <br />Optional Parameters: CannedACL, ACL, MD5Digest, GenerateMD5Digest,
- ContentType, Metadata, Timeout
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithSubscriber(System.EventHandler{Amazon.S3.Model.PutObjectProgressArgs})">
- <summary>
- The "handler" will be notified every time a put
- object progress event is raised.
- </summary>
- <param name="handler">A method that consumes the put object progress notification</param>
- <returns>this instance of the PutObjectRequest</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket where the S3 Object you are
- creating gets put.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object you create.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithFilePath(System.String)">
- <summary>
- Sets the FilePath property for this request.
- If this is set the request will upload the
- specified file to S3. Provide FilePath as an
- absolute path.
- </summary>
- <param name="filePath">The value that FilePath is set to</param>
- <returns>the request with the FilePath set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetFilePath">
- <summary>
- Checks if FilePath property is set.
- </summary>
- <returns>true if FilePath property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithCannedACL(Amazon.S3.Model.S3CannedACL)">
- <summary>
- Sets the CannedACL property for this request.
- If set, the S3 Object will have this CannedACL
- permission. Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on S3 Canned ACLs.
- </summary>
- <param name="acl">The Canned ACL to be set on the object</param>
- <returns>The request with the CannedACL set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetCannedACL">
- <summary>
- Checks if the CannedACL property is set.
- </summary>
- <returns>true if there is the CannedACL property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.RemoveCannedACL">
- <summary>
- Resets the CannedACL
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithMD5Digest(System.String)">
- <summary>
- Sets the MD5Digest property. This is the MD5 Hash of the file.
- If supplied, after the file has been uploaded to S3,
- S3 checks to ensure that the MD5 hash of the uploaded file
- matches the hash supplied.
- </summary>
- <param name="digest">MD5Digest property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetMD5Digest">
- <summary>
- Checks if MD5Digest property is set.
- </summary>
- <returns>true if MD5Digest property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithGenerateChecksum(System.Boolean)">
- <summary>
- Sets the GenerateMD5Digest property. If this property is set,
- the MD5 md5Digest of the data to be uploaded is generated
- prior to the data being sent to S3.
- </summary>
- <param name="fGenerateMD5Digest">GenerateMD5Digest property</param>
- <returns>this instance</returns>
- <remarks>This is a computationally expensive operation,
- and will add to the total time it will take to upload
- data to S3. Please use this option judicially.
- </remarks>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithContentType(System.String)">
- <summary>
- Sets the ContentType property for this request.
- This property defaults to "binary/octet-stream",
- but if you require something else you can set this property.
- </summary>
- <param name="contentType">the value the ContentType to be set to</param>
- <returns>The request with the ContentType set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetContentType">
- <summary>
- Checks if ContentType property is set.
- </summary>
- <returns>true if ContentType property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithContentBody(System.String)">
- <summary>
- Sets the ContentBody property for this request.
- Use this property if you want to upload plaintext to
- S3. The ContentBody is the data for your S3 Object.
- </summary>
- <param name="contentBody">the value the ContentBody to be set to</param>
- <returns>The request with the ContentBody set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetContentBody">
- <summary>
- Checks if ContentBody property is set.
- </summary>
- <returns>true if ContentBody property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithMetaData(System.String,System.String)">
- <summary>
- Adds a key/value pair to the Metadata property for this request.
- The S3 Object that you create will have this metadata associated
- with it.
- </summary>
- <param name="key">The key to associate with the object</param>
- <param name="value">The value for the key</param>
- <returns>The response with Metadata set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithMetaData(System.Collections.Specialized.NameValueCollection)">
- <summary>
- Adds a set of key-value pairs to the request
- </summary>
- <param name="metaInfo">The set of key-value pairs that will eventually be
- associated with the S3 Object</param>
- <returns></returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.IsSetMetaData">
- <summary>
- Checks if Metadata property is set.
- </summary>
- <returns>true if Metadata property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.RemoveMetaData(System.String)">
- <summary>
- Removes a key from the Metadata list if it was
- added previously
- </summary>
- <param name="key">The key to remove</param>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the Timeout property (in milliseconds).
- Please set the timeout only if you are certain that
- the file will not be transferred within the default intervals
- for an HttpWebRequest.
- </summary>
- <param name="timeout">Timeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithReadWriteTimeout(System.Int32)">
- <summary>
- Sets the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout property of the HttpWebRequest.
- </summary>
- <param name="readwritetimeout">ReadWriteTimeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithStorageClass(Amazon.S3.Model.S3StorageClass)">
- <summary>
- Sets the StorageClass property for this request.
- Default: S3StorageClass.Standard. Set this property
- only if you want reduced redundancy for this object.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- <param name="sClass">The Storage Class to be set on the object</param>
- <returns>The request with the StorageClass set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.OnRaiseProgressEvent(System.Int64,System.Int64,System.Int64)">
- <summary>
- This method is called by a producer of put object progress
- notifications. When called, all the subscribers in the
- invocation list will be called sequentially.
- </summary>
- <param name="incrementTransferred">The number of bytes transferred since last event</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectRequest.WithAutoCloseStream(System.Boolean)">
- <summary>
- Sets the AutoCloseStream property for this request. If this value is set to true
- then the stream used with this request will be closed when all the content
- is read from the stream. The property is defaulted to true.
- </summary>
- <param name="autoCloseStream">the value the AutoCloseStream to be set to</param>
- <returns>The request with the AutoCloseStream set</returns>
- </member>
- <member name="E:Amazon.S3.Model.PutObjectRequest.PutObjectProgressEvent">
- <summary>
- The event for Put Object progress notifications. All
- subscribers will be notified when a new progress
- event is raised.
- </summary>
- <remarks>
- Subscribe to this event if you want to receive
- put object progress notifications. Here is how:<br />
- 1. Define a method with a signature similar to this one:
- <code>
- private void displayProgress(object sender, PutObjectProgressArgs args)
- {
- Console.WriteLine(args);
- }
- </code>
- 2. Add this method to the Put Object Progress Event delegate's invocation list
- <code>
- PutObjectRequest request = new PutObjectRequest();
- request.PutObjectProgressEvent += displayProgress;
- </code>
- </remarks>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.FilePath">
- <summary>
- Gets and sets the FilePath property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.CannedACL">
- <summary>
- Gets and sets the CannedACL property.
- If set, the S3 Object will have this CannedACL
- permission. Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on S3 Canned ACLs.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.MD5Digest">
- <summary>
- Gets and sets the MD5 Digest property.
- <remarks>
- The base64 encoded 128-bit MD5 digest of the message
- (without the headers) according to RFC 1864. This header
- can be used as a message integrity check to verify that
- the data is the same data that was originally sent.
- Although it is optional, we recommend using the
- Content-MD5 mechanism as an end-to-end integrity check.
- </remarks>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.GenerateMD5Digest">
- <summary>
- Gets and Sets the property that governs whether
- a md5Digest is generated for the object being
- PUT into S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.ContentType">
- <summary>
- Gets and sets the ContentType property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.ContentBody">
- <summary>
- Gets and sets the ContentBody property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.Timeout">
- <summary>
- Gets and sets of the Timeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout and Timeout properties of the
- HTTPWebRequest object used for S3 PUT Object requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.ReadWriteTimeout">
- <summary>
- Gets and sets of the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout properties of the
- HTTPWebRequest object used for S3 PUT Object requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.StorageClass">
- <summary>
- Gets and sets the StorageClass property.
- Default: S3StorageClass.Standard. Set this property
- only if you want reduced redundancy for this object.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectRequest.AutoCloseStream">
- <summary>
- Gets and sets the AutoCloseStream property. If this value is set to true
- then the stream used with this request will be closed when all the content
- is read from the stream. The property is defaulted to true.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PutObjectProgressArgs">
- <summary>
- Encapsulates the information needed to provide
- transfer progress to subscribers of the Put Object
- Event.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PutObjectProgressArgs.#ctor(System.Int64,System.Int64,System.Int64)">
- <summary>
- The constructor takes the number of
- currently transferred bytes and the
- total number of bytes to be transferred
- </summary>
- <param name="incrementTransferred">The number of bytes transferred since last event</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="T:Amazon.S3.Model.ListBucketsRequest">
- <summary>
- The ListBucketsRequest contains the parameters used for the ListBuckets operation.
- No parameters are needed for this request.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.Tuple`2">
- <summary>
- Creates a Key Value pair relating the key and value of type
- T and U respectively
- </summary>
- <typeparam name="T">The type of the key</typeparam>
- <typeparam name="U">The type of the value</typeparam>
- </member>
- <member name="M:Amazon.S3.Model.Tuple`2.#ctor">
- <summary>
- The default constructor
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.Tuple`2.#ctor(`0,`1)">
- <summary>
- Constructs a Tuple relating an instance
- of type T to an instance of type U
- </summary>
- <param name="first">The key</param>
- <param name="second">The value</param>
- </member>
- <member name="M:Amazon.S3.Model.Tuple`2.GetHashCode">
- <summary>
- Returns the hash code for this tuple
- </summary>
- <returns>A 32-bit signed integer hash code</returns>
- </member>
- <member name="M:Amazon.S3.Model.Tuple`2.Equals(System.Object)">
- <summary>
- Determines whether two Tuple objects have the same value.
- </summary>
- <param name="obj"></param>
- <returns>true if obj is a String and its value is the same as this instance; otherwise, false.</returns>
- </member>
- <member name="M:Amazon.S3.Model.Tuple`2.Equals(Amazon.S3.Model.Tuple{`0,`1})">
- <summary>
- Determines whether two Tuple objects have the same value.
- </summary>
- <param name="other"></param>
- <returns>true if obj is a String and its value is the same as this instance; otherwise, false.</returns>
- </member>
- <member name="P:Amazon.S3.Model.Tuple`2.First">
- <summary>
- Returns the key of this Tuple
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.Tuple`2.Second">
- <summary>
- Returns the value of this Tuple
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DeleteObjectRequest">
- <summary>
- The DeleteObjectRequest contains the parameters used for the DeleteObject operation.
- <br />Required Parameters: BucketName, Key
- <br />The MfaCodes property is required if the bucket containing this object has been
- configured with the EnableMfaDelete property. For more information, please see:
- <see cref="P:Amazon.S3.Model.S3BucketVersioningConfig.EnableMfaDelete"/>.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket that contains the S3 Object
- you want to delete.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object you want to delete.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.WithVersionId(System.String)">
- <summary>
- Sets the VersionId property for this request.
- This is the VersionId for the S3 Object you want to Delete.
- </summary>
- <param name="versionId">The value that VersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.IsSetVersionId">
- <summary>
- Checks if VersionId property is set.
- </summary>
- <returns>true if VersionId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.WithMfaCodes(System.String,System.String)">
- <summary>
- Sets the MfaCodes property.
- The MfaCodes Tuple associates the Serial Number
- and the current Token/Code displayed on the
- Multi-Factor Authentication device associated with
- your AWS Account. This is a required property for this
- request if:<br />
- 1. EnableMfaDelete was configured on the bucket
- containing this object's version.<br />
- 2. You are deleting an object's version
- </summary>
- <param name="serial">Serial number of the authentication device</param>
- <param name="token">Token displayed on the authentication device</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteObjectRequest.IsSetMfaCodes">
- <summary>
- Checks if the MfaCodes property is set.
- </summary>
- <returns>true if the MfaCodes property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.DeleteObjectRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.DeleteObjectRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.DeleteObjectRequest.VersionId">
- <summary>
- Gets and sets the VersionId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.DeleteObjectRequest.MfaCodes">
- <summary>
- Gets and Sets the MfaCodes property.
- The MfaCodes Tuple associates the Serial Number
- and the current Token/Code displayed on the
- Multi-Factor Authentication device associated with
- your AWS Account. This is a required property for this
- request if:<br />
- 1. EnableMfaDelete was configured on the bucket
- containing this object's version.<br />
- 2. You are deleting an object's version
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ListVersionsResponse">
- <summary>
- The ListVersionsResponse contains the list of Versions in the bucket and
- any headers returned by S3.
- </summary>
- <seealso cref="T:Amazon.S3.Model.ListVersionsRequest"/>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.Name">
- <summary>
- Gets and sets the Name property.
- The bucket's name.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.Prefix">
- <summary>
- Gets and sets the Prefix property.
- Keys that begin with the indicated prefix are listed.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.Versions">
- <summary>
- Gets and sets the Versions property. This is a list of
- object versions in the bucket that match your search criteria.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.MaxKeys">
- <summary>
- Gets and sets the MaxKeys property.
- This is the maximum number of keys in the S3ObjectVersions collection.
- The value is derived from the MaxKeys parameter to ListVersionsRequest.
- </summary>
- <seealso cref="P:Amazon.S3.Model.ListVersionsRequest.MaxKeys"/>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.Delimiter">
- <summary>
- Gets and sets the Delimiter property.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- </summary>
- <remarks>
- These rolled-up keys are not returned elsewhere in the response.
- </remarks>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.IsTruncated">
- <summary>
- Gets and Sets the IsTruncated property.
- This property governs whether
- this is the last set of items that match the
- specified criteria or whether you need to make
- another call to S3 to retrieve more keys.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.KeyMarker">
- <summary>
- Gets and sets the KeyMarker property.
- Marks the last Key returned in a truncated response.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.VersionIdMarker">
- <summary>
- Gets and sets the VersionIdMarker property.
- Marks the last Version-Id returned in a truncated response.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.NextKeyMarker">
- <summary>
- Gets and sets the NextKeyMarker property.
- When the number of responses exceeds the value of MaxKeys,
- NextKeyMarker specifies the first key not returned that
- satisfies the search criteria. Use this value for the
- KeyMarker request parameter in a subsequent request.
- </summary>
- <seealso cref="P:Amazon.S3.Model.ListVersionsRequest.KeyMarker"/>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsResponse.NextVersionIdMarker">
- <summary>
- Gets and sets the NextVersionIdMarker property.
- When the number of responses exceeds the value of MaxKeys,
- NextVersionIdMarker specifies the first version not returned that
- satisfies the search criteria. Use this value for the
- VersionIdMarker request parameter in a subsequent request.
- </summary>
- <seealso cref="P:Amazon.S3.Model.ListVersionsRequest.VersionIdMarker"/>
- </member>
- <member name="T:Amazon.S3.Model.ListMultipartUploadsResponse">
- <summary>
- The ListMultipartUploadsResponse contains all the information about the
- ListMultipartUploads method.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.KeyMarker">
- <summary>
- Gets and sets the KeyMarker which is the key at or after which the listing began.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.UploadIdMarker">
- <summary>
- Gets and sets the UploadIdMarker property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.NextKeyMarker">
- <summary>
- Gets and sets the NextKeyMarker property.
- <para>
- When a list is truncated, specifies the last multipart upload that should
- be skipped over to resume listing. Use this value for the KeyMarker
- request parameter in a subsequent request.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.NextUploadIdMarker">
- <summary>
- Gets and sets the NextUploadIdMarker property.
- <para>
- When a list is truncated, specifies the last multipart upload that should
- be skipped over to resume listing. Use this value for the
- UploadIdMarker request parameter in a subsequent request.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.MaxUploads">
- <summary>
- Gets and sets the MaxUploads property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.IsTruncated">
- <summary>
- Gets and sets the IsTruncated property.
- <para>
- Indicates whether the returned list of multipart uploads is truncated. A
- value true indicates the list was truncated. The list may be truncated if
- the number of multipart uploads exceeds the limit specified by
- MaxUploads.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.MultipartUploads">
- <summary>
- Gets and sets the MultipartUploads property.
- <para>
- Container for elements related to a particular multipart upload. A response
- can contain zero or more Upload elements.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.Prefix">
- <summary>
- Gets and sets the Prefix property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.Delimiter">
- <summary>
- Gets and sets the Delimiter property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsResponse.CommonPrefixes">
- <summary>
- Gets the CommonPrefixes property.
- A response can contain CommonPrefixes only if you specify a delimiter.
- When you do, CommonPrefixes contains all (if there are any) keys between
- Prefix and the next occurrence of the string specified by delimiter. In effect,
- CommonPrefixes lists keys that act like subdirectories in the directory specified
- by Prefix. For example, if prefix is notes/ and delimiter is a slash (/), in
- notes/summer/july, the common prefix is notes/summer/.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.CompleteMultipartUploadResponse">
- <summary>
- The CompleteMultipartUploadResponse contains all the information about the
- CompleteMultipartUpload method.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadResponse.Location">
- <summary>
- Gets and sets the URI that identifies the newly created object.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadResponse.BucketName">
- <summary>
- Gets and sets the name of the bucket that contains the newly created object.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadResponse.Key">
- <summary>
- Gets and sets the object key of the newly created object.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadResponse.ETag">
- <summary>
- Gets and sets Entity tag that identifies the newly created object's data. Objects with different
- object data will have different entity tags. The entity tag is an opaque string.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadResponse.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the version-id of the S3 object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.Auth.AbstractAWSSigner.ComputeHash(System.String,System.String,System.Security.SecureString,Amazon.Runtime.SigningAlgorithm)">
- <summary>
- Computes RFC 2104-compliant HMAC signature.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.Auth.QueryStringSigner.Sign``1(Amazon.Runtime.Internal.IRequest{``0},Amazon.Runtime.ClientConfig,System.String,System.String,System.Security.SecureString)">
- <summary>
- Signs the specified request with the AWS2 signing protocol by using the
- AWS account credentials given in the method parameters.
- </summary>
- <param name="awsAccessKeyId">The AWS public key</param>
- <param name="awsSecretAccessKey">The AWS secret key used to sign the request in clear text</param>
- <param name="clientConfig">The configuration that specifies which hashing algorithm to use</param>
- <param name="request">The request to have the signature compute for</param>
- <param name="secureKey">The AWS secret key stored in a secure string</param>
- <exception cref="T:Amazon.Runtime.SignatureException">If any problems are encountered while signing the request</exception>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RestoreDBInstanceToPointInTimeRequestMarshaller">
- <summary>
- Restore D B Instance To Point In Time Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.PurchaseReservedDBInstancesOfferingResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PurchaseReservedDBInstancesOffering operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeReservedDBInstancesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeReservedDBInstances operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeReservedDBInstancesOfferingsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeReservedDBInstancesOfferings operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBParameterGroupsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeDBParameterGroups operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBSnapshotResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteDBSnapshot operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DBEngineVersionUnmarshaller">
- <summary>
- DBEngineVersion Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBSnapshotResultUnmarshaller">
- <summary>
- Result Unmarshaller for CreateDBSnapshot operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotResponse">
- <summary>
- Returns information about the RestoreDBInstanceFromDBSnapshot response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotResponse.RestoreDBInstanceFromDBSnapshotResult">
-
- Gets and sets the RestoreDBInstanceFromDBSnapshotResult property.
- Contains the result of a successful invocation of the RestoreDBInstanceFromDBSnapshot
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DescribeEngineDefaultParametersResult">
- <summary>
- The results from the DescribeEngineDefaultParameters action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEngineDefaultParametersResult.EngineDefaults">
-
- Gets and sets the DescribeEngineDefaultParametersResult property.
- Contains the result of a successful invocation of the DescribeEngineDefaultParameters
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBEngineVersionsResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeDBEngineVersions action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsResult.WithDBEngineVersions(Amazon.RDS.Model.DBEngineVersion[])">
- <summary>
- Adds elements to the DBEngineVersions collection
- </summary>
- <param name="dBEngineVersions">The values to add to the DBEngineVersions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsResult.WithDBEngineVersions(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.DBEngineVersion})">
- <summary>
- Adds elements to the DBEngineVersions collection
- </summary>
- <param name="dBEngineVersions">The values to add to the DBEngineVersions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsResult.Marker">
- <summary>
- The identifier returned to allow retrieval of paginated results.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsResult.DBEngineVersions">
- <summary>
- A list of <c>DBEngineVersion</c> elements.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBEngineVersionsResponse">
- <summary>
- Returns information about the DescribeDBEngineVersionsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsResponse.DescribeDBEngineVersionsResult">
- <summary>
- Gets and sets the DescribeDBEngineVersionsResult property.
- Contains the result of a successful invocation of the DescribeDBEngineVersions action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBInstanceResponse">
- <summary>
- Returns information about the DeleteDBInstance response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBInstanceResponse.DeleteDBInstanceResult">
-
- Gets and sets the DeleteDBInstanceResult property.
- Contains the result of a successful invocation of the DeleteDBInstance
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DBSnapshot">
- <summary>
- <para> Contains the result of a successful invocation of the following actions: </para>
- <ul>
- <li> CreateDBSnapshot </li>
- <li> DeleteDBSnapshot </li>
-
- </ul>
- <para>This data type is used as a response element in the DescribeDBSnapshots action.</para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithDBSnapshotIdentifier(System.String)">
- <summary>
- Sets the DBSnapshotIdentifier property
- </summary>
- <param name="dBSnapshotIdentifier">The value to set for the DBSnapshotIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithSnapshotCreateTime(System.DateTime)">
- <summary>
- Sets the SnapshotCreateTime property
- </summary>
- <param name="snapshotCreateTime">The value to set for the SnapshotCreateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithAllocatedStorage(System.Int32)">
- <summary>
- Sets the AllocatedStorage property
- </summary>
- <param name="allocatedStorage">The value to set for the AllocatedStorage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithInstanceCreateTime(System.DateTime)">
- <summary>
- Sets the InstanceCreateTime property
- </summary>
- <param name="instanceCreateTime">The value to set for the InstanceCreateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithMasterUsername(System.String)">
- <summary>
- Sets the MasterUsername property
- </summary>
- <param name="masterUsername">The value to set for the MasterUsername property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshot.WithLicenseModel(System.String)">
- <summary>
- Sets the LicenseModel property
- </summary>
- <param name="licenseModel">The value to set for the LicenseModel property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.DBSnapshotIdentifier">
- <summary>
- Specifies the identifier for the DB Snapshot.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.DBInstanceIdentifier">
- <summary>
- Specifies the the DBInstanceIdentifier of the DB Instance this DB Snapshot was created from.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.SnapshotCreateTime">
- <summary>
- Provides the time (UTC) when the snapshot was taken.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.Engine">
- <summary>
- Specifies the name of the database engine.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.AllocatedStorage">
- <summary>
- Specifies the allocated storage size in gigabytes (GB).
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.Status">
- <summary>
- Specifies the status of this DB Snapshot.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.Port">
- <summary>
- Specifies the port that the database engine was listening on at the time of the snapshot.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.AvailabilityZone">
- <summary>
- Specifies the name of the Availability Zone the DB Instance was located in at the time of the DB Snapshot.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.InstanceCreateTime">
- <summary>
- Specifies the time (UTC) when the snapshot was taken.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.MasterUsername">
- <summary>
- Provides the master username for the DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.EngineVersion">
- <summary>
- Specifies the version of the database engine.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSnapshot.LicenseModel">
- <summary>
- License model information for the restored DB Instance.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroupNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new DBSecurityGroupNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBSecurityGroup">
- <summary>
- <para> Contains the result of a successful invocation of the following actions: </para>
- <ul>
- <li> DescribeDBSecurityGroups </li>
- <li> AuthorizeDBSecurityGroupIngress </li>
- <li> CreateDBSecurityGroup </li>
- <li> RevokeDBSecurityGroupIngress </li>
-
- </ul>
- <para>This data type is used as a response element in the DescribeDBSecurityGroups action.</para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroup.WithOwnerId(System.String)">
- <summary>
- Sets the OwnerId property
- </summary>
- <param name="ownerId">The value to set for the OwnerId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroup.WithDBSecurityGroupName(System.String)">
- <summary>
- Sets the DBSecurityGroupName property
- </summary>
- <param name="dBSecurityGroupName">The value to set for the DBSecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroup.WithDBSecurityGroupDescription(System.String)">
- <summary>
- Sets the DBSecurityGroupDescription property
- </summary>
- <param name="dBSecurityGroupDescription">The value to set for the DBSecurityGroupDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroup.WithEC2SecurityGroups(Amazon.RDS.Model.EC2SecurityGroup[])">
- <summary>
- Adds elements to the EC2SecurityGroups collection
- </summary>
- <param name="eC2SecurityGroups">The values to add to the EC2SecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroup.WithEC2SecurityGroups(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.EC2SecurityGroup})">
- <summary>
- Adds elements to the EC2SecurityGroups collection
- </summary>
- <param name="eC2SecurityGroups">The values to add to the EC2SecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroup.WithIPRanges(Amazon.RDS.Model.IPRange[])">
- <summary>
- Adds elements to the IPRanges collection
- </summary>
- <param name="iPRanges">The values to add to the IPRanges collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroup.WithIPRanges(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.IPRange})">
- <summary>
- Adds elements to the IPRanges collection
- </summary>
- <param name="iPRanges">The values to add to the IPRanges collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DBSecurityGroup.OwnerId">
- <summary>
- Provides the AWS ID of the owner of a specific DB Security Group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSecurityGroup.DBSecurityGroupName">
- <summary>
- Specifies the name of the DB Security Group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSecurityGroup.DBSecurityGroupDescription">
- <summary>
- Provides the description of the database security group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSecurityGroup.EC2SecurityGroups">
- <summary>
- Contains a list of <a>EC2SecurityGroup</a> elements.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSecurityGroup.IPRanges">
- <summary>
- Contains a list of <a>IPRange</a> elements.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.GetStatusRequestMarshaller">
- <summary>
- Get Status Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.CreateJobRequestMarshaller">
- <summary>
- Create Job Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.MissingCustomsException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.MissingCustomsException.#ctor(System.String)">
- <summary>
- Constructs a new MissingCustomsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.MalformedManifestException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.MalformedManifestException.#ctor(System.String)">
- <summary>
- Constructs a new MalformedManifestException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.GetStatusRequest">
- <summary>
- Container for the parameters to the GetStatus operation.
- <para> This operation returns information about a job, including where
- the job is in the processing pipeline, the status of the results, and
- the signature value associated with the job. You can only return
- information about jobs you own. </para>
- </summary>
- <seealso cref="M:Amazon.ImportExport.AmazonImportExport.GetStatus(Amazon.ImportExport.Model.GetStatusRequest)"/>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusRequest.WithJobId(System.String)">
- <summary>
- Sets the JobId property
- </summary>
- <param name="jobId">The value to set for the JobId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusRequest.JobId">
- <summary>
- A unique identifier which refers to a particular job.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.CreateJobResponse">
- <summary>
- Returns information about the CreateJobResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobResponse.CreateJobResult">
- <summary>
- Gets and sets the CreateJobResult property.
- Output structure for the CreateJob operation.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.User">
- <summary>
- <para>The User data type contains information about a User.</para>
- <para> This data type is used as a response element in the following
- actions:</para>
- <ul>
- <li> <para> CreateUser </para> </li>
- <li> <para> GetUser </para> </li>
- <li> <para> ListUsers </para> </li>
-
- </ul>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.User.WithPath(System.String)">
- <summary>
- Sets the Path property
- </summary>
- <param name="path">The value to set for the Path property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.User.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.User.WithUserId(System.String)">
- <summary>
- Sets the UserId property
- </summary>
- <param name="userId">The value to set for the UserId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.User.WithArn(System.String)">
- <summary>
- Sets the Arn property
- </summary>
- <param name="arn">The value to set for the Arn property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.User.WithCreateDate(System.DateTime)">
- <summary>
- Sets the CreateDate property
- </summary>
- <param name="createDate">The value to set for the CreateDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.User.Path">
- <summary>
- Path to the User name. For more information about paths, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.User.UserName">
- <summary>
- The name identifying the User.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.User.UserId">
- <summary>
- The stable and unique string identifying the User. For more information about IDs, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>16 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.User.Arn">
- <summary>
- The Amazon Resource Name (ARN) specifying the User. For more information about ARNs and how to use them in policies, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>20 - 2048</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.User.CreateDate">
- <summary>
- The date when the User was created.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateServerCertificateRequestMarshaller">
- <summary>
- Update Server Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ResyncMFADeviceRequestMarshaller">
- <summary>
- Resync M F A Device Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListUserPoliciesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListUserPolicies operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListSigningCertificatesResultUnmarshaller">
- <summary>
- ListSigningCertificatesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupPoliciesRequestMarshaller">
- <summary>
- List Group Policies Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetUserPolicyRequestMarshaller">
- <summary>
- Get User Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetServerCertificateRequestMarshaller">
- <summary>
- Get Server Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetAccountSummaryRequestMarshaller">
- <summary>
- Get Account Summary Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.EnableMFADeviceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for EnableMFADevice operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.RemoveUserFromGroupResponse">
- <summary>
- Returns information about the RemoveUserFromGroup response metadata.
- The RemoveUserFromGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.LoginProfile">
- <summary>
- <para>The LoginProfile data type contains information about a login
- profile for a User.</para> <para> This data type is used as a response
- element in the actions CreateLoginProfile and GetLoginProfile. </para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.LoginProfile.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.LoginProfile.WithCreateDate(System.DateTime)">
- <summary>
- Sets the CreateDate property
- </summary>
- <param name="createDate">The value to set for the CreateDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.LoginProfile.UserName">
- <summary>
- The name of the User, which can be used for logins.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.LoginProfile.CreateDate">
- <summary>
- The date when the login profile for the User was created.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupsForUserResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListGroupsForUser action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsForUserResult.WithGroups(Amazon.IdentityManagement.Model.Group[])">
- <summary>
- Adds elements to the Groups collection
- </summary>
- <param name="groups">The values to add to the Groups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsForUserResult.WithGroups(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.Group})">
- <summary>
- Adds elements to the Groups collection
- </summary>
- <param name="groups">The values to add to the Groups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsForUserResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsForUserResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsForUserResult.Groups">
- <summary>
- A list of groups.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsForUserResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more groups to list. If your results were truncated, you can make a subsequent pagination request
- using the <c>Marker</c> request parameter to retrieve more groups in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsForUserResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetServerCertificateResponse">
- <summary>
- Returns information about the GetServerCertificateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetServerCertificateResponse.GetServerCertificateResult">
- <summary>
- Gets and sets the GetServerCertificateResult property.
- Contains the result of a successful invocation of the GetServerCertificate action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteGroupResponse">
- <summary>
- Returns information about the DeleteGroup response metadata.
- The DeleteGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.DescribeJobFlowsResultUnmarshaller">
- <summary>
- DescribeJobFlowsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.StepDetail">
- <summary>
- <para>Combines the execution state and configuration of a step.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepDetail.WithStepConfig(Amazon.ElasticMapReduce.Model.StepConfig)">
- <summary>
- Sets the StepConfig property
- </summary>
- <param name="stepConfig">The value to set for the StepConfig property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepDetail.WithExecutionStatusDetail(Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail)">
- <summary>
- Sets the ExecutionStatusDetail property
- </summary>
- <param name="executionStatusDetail">The value to set for the ExecutionStatusDetail property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepDetail.StepConfig">
- <summary>
- The step configuration.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepDetail.ExecutionStatusDetail">
- <summary>
- The description of the step status.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.PlacementType">
- <summary>
- <para>Specifies the Amazon EC2 location for the job flow.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.PlacementType.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.PlacementType.AvailabilityZone">
- <summary>
- The Amazon EC2 Availability Zone for the job flow.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig">
- <summary>
- <para>A description of the Amazon EC2 instance running the job flow.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithMasterInstanceType(System.String)">
- <summary>
- Sets the MasterInstanceType property
- </summary>
- <param name="masterInstanceType">The value to set for the MasterInstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithSlaveInstanceType(System.String)">
- <summary>
- Sets the SlaveInstanceType property
- </summary>
- <param name="slaveInstanceType">The value to set for the SlaveInstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithInstanceCount(System.Int32)">
- <summary>
- Sets the InstanceCount property
- </summary>
- <param name="instanceCount">The value to set for the InstanceCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithInstanceGroups(Amazon.ElasticMapReduce.Model.InstanceGroupConfig[])">
- <summary>
- Adds elements to the InstanceGroups collection
- </summary>
- <param name="instanceGroups">The values to add to the InstanceGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithEc2KeyName(System.String)">
- <summary>
- Sets the Ec2KeyName property
- </summary>
- <param name="ec2KeyName">The value to set for the Ec2KeyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithPlacement(Amazon.ElasticMapReduce.Model.PlacementType)">
- <summary>
- Sets the Placement property
- </summary>
- <param name="placement">The value to set for the Placement property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithKeepJobFlowAliveWhenNoSteps(System.Boolean)">
- <summary>
- Sets the KeepJobFlowAliveWhenNoSteps property
- </summary>
- <param name="keepJobFlowAliveWhenNoSteps">The value to set for the KeepJobFlowAliveWhenNoSteps property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.WithHadoopVersion(System.String)">
- <summary>
- Sets the HadoopVersion property
- </summary>
- <param name="hadoopVersion">The value to set for the HadoopVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.MasterInstanceType">
- <summary>
- The EC2 instance type of the master node.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.SlaveInstanceType">
- <summary>
- The EC2 instance type of the slave nodes.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.InstanceCount">
- <summary>
- The number of Amazon EC2 instances used to execute the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.InstanceGroups">
- <summary>
- Configuration for the job flow's instance groups.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.Ec2KeyName">
- <summary>
- Specifies the name of the Amazon EC2 key pair that can be used to ssh
- to the master node as the user called "hadoop."
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.Placement">
- <summary>
- Specifies the Availability Zone the job flow will run in.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.KeepJobFlowAliveWhenNoSteps">
- <summary>
- Specifies whether the job flow should terminate after completing all
- steps.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig.HadoopVersion">
- <summary>
- Specifies the Hadoop version for the job flow. Valid inputs are "0.18"
- or "0.20".
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.JobFlowDetail">
- <summary>
- <para> A description of a job flow.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowDetail.WithJobFlowId(System.String)">
- <summary>
- Sets the JobFlowId property
- </summary>
- <param name="jobFlowId">The value to set for the JobFlowId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowDetail.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowDetail.WithLogUri(System.String)">
- <summary>
- Sets the LogUri property
- </summary>
- <param name="logUri">The value to set for the LogUri property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowDetail.WithExecutionStatusDetail(Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail)">
- <summary>
- Sets the ExecutionStatusDetail property
- </summary>
- <param name="executionStatusDetail">The value to set for the ExecutionStatusDetail property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowDetail.WithInstances(Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail)">
- <summary>
- Sets the Instances property
- </summary>
- <param name="instances">The value to set for the Instances property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowDetail.WithSteps(Amazon.ElasticMapReduce.Model.StepDetail[])">
- <summary>
- Adds elements to the Steps collection
- </summary>
- <param name="steps">The values to add to the Steps collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowDetail.WithBootstrapActions(Amazon.ElasticMapReduce.Model.BootstrapActionDetail[])">
- <summary>
- Adds elements to the BootstrapActions collection
- </summary>
- <param name="bootstrapActions">The values to add to the BootstrapActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowDetail.JobFlowId">
- <summary>
- The job flow identifier.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowDetail.Name">
- <summary>
- The name of the job flow.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowDetail.LogUri">
- <summary>
- The location in Amazon S3 where log files for the job are stored.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowDetail.ExecutionStatusDetail">
- <summary>
- Describes the execution status of the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowDetail.Instances">
- <summary>
- Describes the Amazon EC2 instances of the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowDetail.Steps">
- <summary>
- A list of steps run by the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowDetail.BootstrapActions">
- <summary>
- A list of the bootstrap actions run by the job flow.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.SetLoadBalancerListenerSSLCertificateRequestMarshaller">
- <summary>
- Set Load Balancer Listener S S L Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DescribeLoadBalancersRequestMarshaller">
- <summary>
- Describe Load Balancers Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest">
- <summary>
- Container for the parameters to the SetLoadBalancerPoliciesOfListener operation.
- <para> Associates, updates, or disables a policy with a listener on the load balancer. Currently only zero (0) or one (1) policy can be
- associated with a listener. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.SetLoadBalancerPoliciesOfListener(Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.#ctor">
- <summary>
- Default constructor for a new SetLoadBalancerPoliciesOfListenerRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.#ctor(System.String,System.Int32,System.Collections.Generic.List{System.String})">
- <summary>
- Constructs a new SetLoadBalancerPoliciesOfListenerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- <param name="loadBalancerPort"> The external port of the LoadBalancer with which this policy has to be associated. </param>
- <param name="policyNames"> List of policies to be associated with the listener. Currently this list can have at most one policy. If the list
- is empty, the current policy is removed from the listener. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.WithLoadBalancerPort(System.Int32)">
- <summary>
- Sets the LoadBalancerPort property
- </summary>
- <param name="loadBalancerPort">The value to set for the LoadBalancerPort property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.WithPolicyNames(System.String[])">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.WithPolicyNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.LoadBalancerPort">
- <summary>
- The external port of the LoadBalancer with which this policy has to be associated.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest.PolicyNames">
- <summary>
- List of policies to be associated with the listener. Currently this list can have at most one policy. If the list is empty, the current
- policy is removed from the listener.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidInstanceException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerResponse">
- <summary>
- Returns information about the CreateLoadBalancerResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerResponse.CreateLoadBalancerResult">
- <summary>
- Gets and sets the CreateLoadBalancerResult property.
- The output for the CreateLoadBalancer action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest">
- <summary>
- Container for the parameters to the UpdateEnvironment operation.
- <para> Updates the environment description, deploys a new application version, updates the configuration settings to an entirely new
- configuration template, or updates select configuration option values in the running environment. </para> <para> Attempting to update both
- the release and configuration is not allowed and AWS Elastic Beanstalk returns an <c>InvalidParameterCombination</c> error. </para> <para>
- When updating the configuration settings to a new template or individual settings, a draft configuration is created and
- DescribeConfigurationSettings for this environment returns two setting descriptions with different <c>DeploymentStatus</c> values. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateEnvironment(Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithOptionsToRemove(Amazon.ElasticBeanstalk.Model.OptionSpecification[])">
- <summary>
- Adds elements to the OptionsToRemove collection
- </summary>
- <param name="optionsToRemove">The values to add to the OptionsToRemove collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.WithOptionsToRemove(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.OptionSpecification})">
- <summary>
- Adds elements to the OptionsToRemove collection
- </summary>
- <param name="optionsToRemove">The values to add to the OptionsToRemove collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.EnvironmentId">
- <summary>
- The ID of the environment to update. If no environment with this ID exists, AWS Elastic Beanstalk returns an <c>InvalidParameterValue</c>
- error.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.EnvironmentName">
- <summary>
- The name of the environment to update. If no environment with this name exists, AWS Elastic Beanstalk returns an
- <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.VersionLabel">
- <summary>
- If this parameter is specified, AWS Elastic Beanstalk deploys the named application version to the environment. If no such application
- version is found, returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.TemplateName">
- <summary>
- If this parameter is specified, AWS Elastic Beanstalk deploys this configuration template to the environment. If no such configuration
- template is found, AWS Elastic Beanstalk returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.Description">
- <summary>
- If this parameter is specified, AWS Elastic Beanstalk updates the description of this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.OptionSettings">
- <summary>
- If specified, AWS Elastic Beanstalk updates the configuration set associated with the running environment and sets the specified
- configuration options to the requested value.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentRequest.OptionsToRemove">
- <summary>
- A list of custom user-defined configuration options to remove from the configuration set for this environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.S3LocationUnmarshaller">
- <summary>
- S3Location Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeApplicationsResultUnmarshaller">
- <summary>
- DescribeApplicationsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteEnvironmentConfigurationRequestMarshaller">
- <summary>
- Delete Environment Configuration Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.SolutionStackDescription">
- <summary>
- <para> Describes the solution stack. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SolutionStackDescription.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SolutionStackDescription.WithPermittedFileTypes(System.String[])">
- <summary>
- Adds elements to the PermittedFileTypes collection
- </summary>
- <param name="permittedFileTypes">The values to add to the PermittedFileTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SolutionStackDescription.WithPermittedFileTypes(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the PermittedFileTypes collection
- </summary>
- <param name="permittedFileTypes">The values to add to the PermittedFileTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.SolutionStackDescription.SolutionStackName">
- <summary>
- The name of the solution stack.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.SolutionStackDescription.PermittedFileTypes">
- <summary>
- The permitted file types allowed for a solution stack.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest">
- <summary>
- Container for the parameters to the DeleteApplicationVersion operation.
- <para> Deletes the specified version from the specified application. </para> <para><b>NOTE:</b>You cannot delete an application version that
- is associated with a running environment.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteApplicationVersion(Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest.WithDeleteSourceBundle(System.Boolean)">
- <summary>
- Sets the DeleteSourceBundle property
- </summary>
- <param name="deleteSourceBundle">The value to set for the DeleteSourceBundle property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest.ApplicationName">
- <summary>
- The name of the application to delete releases from.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest.VersionLabel">
- <summary>
- The label of the version to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionRequest.DeleteSourceBundle">
- <summary>
- Indicates whether to delete the associated source bundle from Amazon S3: <ul> <li> <c>true</c>: An attempt is made to delete the associated
- Amazon S3 source bundle specified at time of creation. </li> <li> <c>false</c>: No action is taken on the Amazon S3 source bundle specified
- at time of creation. </li> </ul> Valid Values: <c>true</c> | <c>false</c>
-
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.VpnGateway">
- <summary>
- VPN Gateway
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.WithVpnGatewayId(System.String)">
- <summary>
- Sets the VpnGatewayId property
- </summary>
- <param name="vpnGatewayId">The ID of the VPN gateway</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.IsSetVpnGatewayId">
- <summary>
- Checks if VpnGatewayId property is set
- </summary>
- <returns>true if VpnGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.WithVpnGatewayState(System.String)">
- <summary>
- Sets the VpnGatewayState property
- </summary>
- <param name="vpnGatewayState">The current state of the VPN gateway (pending,
- available, deleting, deleted)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.IsSetVpnGatewayState">
- <summary>
- Checks if VpnGatewayState property is set
- </summary>
- <returns>true if VpnGatewayState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The type of VPN connection the VPN gateway supports (ipsec.1)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone where the VPN gateway was created</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.WithVpcAttachment(Amazon.EC2.Model.VpcAttachment[])">
- <summary>
- Sets the VpcAttachment property
- </summary>
- <param name="list">list of VPC attachments</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.IsSetVpcAttachment">
- <summary>
- Checks if VpcAttachment property is set
- </summary>
- <returns>true if VpcAttachment property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the VpnGateway.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnGateway.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.VpnGateway.VpnGatewayId">
- <summary>
- Gets and sets the VpnGatewayId property.
- The ID of the VPN gateway
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnGateway.VpnGatewayState">
- <summary>
- Gets and sets the VpnGatewayState property.
- The current state of the VPN gateway (pending,
- available, deleting, deleted)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnGateway.Type">
- <summary>
- Gets and sets the Type property.
- The type of VPN connection the VPN gateway supports (ipsec.1)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnGateway.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone where the VPN gateway was created
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnGateway.VpcAttachment">
- <summary>
- Gets and sets the VpcAttachment property.
- list of VPC attachments
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnGateway.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the VpnGateway.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The route table's ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC the route table is in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.WithRoutes(Amazon.EC2.Model.Route[])">
- <summary>
- Sets the Routes property
- </summary>
- <param name="list">A list of routes in the route table.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.IsSetRoutes">
- <summary>
- Checks if Routes property is set
- </summary>
- <returns>true if Routes property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.WithAssociations(Amazon.EC2.Model.RouteTableAssociation[])">
- <summary>
- Sets the Associations property
- </summary>
- <param name="list">A list of associations between the route table and one or more
- subnets.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.IsSetAssociations">
- <summary>
- Checks if Associations property is set
- </summary>
- <returns>true if Associations property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the RouteTable.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTable.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTable.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The route table's ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTable.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC the route table is in.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTable.Routes">
- <summary>
- Gets and sets the Routes property.
- A list of routes in the route table.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTable.Associations">
- <summary>
- Gets and sets the Associations property.
- A list of associations between the route table and one or more
- subnets.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTable.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the RouteTable.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.WithResourceId(System.String)">
- <summary>
- Sets the ResourceId property
- </summary>
- <param name="resourceId">The resource ID for the Tag.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.IsSetResourceId">
- <summary>
- Checks if ResourceId property is set
- </summary>
- <returns>true if ResourceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.WithResourceType(System.String)">
- <summary>
- Sets the ResourceType property
- </summary>
- <param name="resourceType">The type of resource identified by the associated resource ID
- (ex: instance, AMI, EBS volume, etc).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.IsSetResourceType">
- <summary>
- Checks if ResourceType property is set
- </summary>
- <returns>true if ResourceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.WithKey(System.String)">
- <summary>
- Sets the Key property
- </summary>
- <param name="key">The tag's key.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.IsSetKey">
- <summary>
- Checks if Key property is set
- </summary>
- <returns>true if Key property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The tag's value.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResourceTag.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResourceTag.ResourceId">
- <summary>
- Gets and sets the ResourceId property.
- The resource ID for the Tag.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ResourceTag.ResourceType">
- <summary>
- Gets and sets the ResourceType property.
- The type of resource identified by the associated resource ID
- (ex: instance, AMI, EBS volume, etc).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ResourceTag.Key">
- <summary>
- Gets and sets the Key property.
- The tag's key.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ResourceTag.Value">
- <summary>
- Gets and sets the Value property.
- The tag's value.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.PasswordData">
- <summary>
- Password Data
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.PasswordData.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PasswordData.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PasswordData.WithTimestamp(System.String)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The time the data was last updated.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PasswordData.IsSetTimestamp">
- <summary>
- Checks if Timestamp property is set
- </summary>
- <returns>true if Timestamp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PasswordData.WithData(System.String)">
- <summary>
- Sets the Data property
- </summary>
- <param name="data">The password of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PasswordData.IsSetData">
- <summary>
- Checks if Data property is set
- </summary>
- <returns>true if Data property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.PasswordData.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.PasswordData.Timestamp">
- <summary>
- Gets and sets the Timestamp property.
- The time the data was last updated.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.PasswordData.Data">
- <summary>
- Gets and sets the Data property.
- The password of the instance.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceLicenseSpecification">
- <summary>
- Part of a request to launch Amazon EC2 instances,
- specifying which license pool to use if a license should be
- attached to the new Amazon EC2 instance.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceLicenseSpecification.WithPool(System.String)">
- <summary>
- Sets the Pool property
- </summary>
- <param name="pool">The license pool from which to take a license when starting
- Amazon EC2 instances in the associated RunInstances request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceLicenseSpecification.IsSetPool">
- <summary>
- Checks if Pool property is set
- </summary>
- <returns>true if Pool property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceLicenseSpecification.Pool">
- <summary>
- Gets and sets the Pool property.
- The license pool from which to take a license when starting
- Amazon EC2 instances in the associated RunInstances request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.WithVolumes(Amazon.EC2.Model.ImportInstanceVolumeDetailItemType[])">
- <summary>
- Sets the Volumes property
- </summary>
- <param name="list">A list of instance volumes for import. Each volume's information is wrapped in an item element.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.IsSetVolumes">
- <summary>
- Checks if Volumes property is set
- </summary>
- <returns>true if Volumes property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the resulting instance in Amazon EC2.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.WithPlatform(System.String)">
- <summary>
- Sets the Platform property
- </summary>
- <param name="platform">Instance operating system.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.IsSetPlatform">
- <summary>
- Checks if Platform property is set
- </summary>
- <returns>true if Platform property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Optional description of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceTaskDetailsType.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceTaskDetailsType.Volumes">
- <summary>
- Gets and sets the Volumes property.
- A list of instance volumes for import. Each volume's information is wrapped in an item element.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceTaskDetailsType.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the resulting instance in Amazon EC2.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceTaskDetailsType.Platform">
- <summary>
- Gets and sets the Platform property.
- Instance operating system.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceTaskDetailsType.Description">
- <summary>
- Gets and sets the Description property.
- Optional description of the instance.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeTagsResponse">
- <summary>
- The Response for the
- DescribeTags operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsResponse.IsSetDescribeTagsResult">
- <summary>
- Checks if DescribeTagsResult property is set
- </summary>
- <returns>true if DescribeTagsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeTagsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeTagsResponse.DescribeTagsResult">
- <summary>
- Gets and sets the DescribeTagsResult property.
- DescribeTags Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSnapshotsResult">
- <summary>
- Describe Snapshots Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsResult.IsSetSnapshot">
- <summary>
- Checks if Snapshot property is set
- </summary>
- <returns>true if Snapshot property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotsResult.Snapshot">
- <summary>
- Gets and sets the Snapshot property.
- List of snapshots
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSnapshotAttributeRequest">
- <summary>
- Returns information about an attribute of a
- snapshot. Only one attribute
- can be specified
- per call.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeRequest.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The ID of the Amazon EBS snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeRequest.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Describes the create volume permissions of the
- snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotAttributeRequest.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the Amazon EBS snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Describes the create volume permissions of the
- snapshot.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSecurityGroupsResult">
- <summary>
- Describe Security Groups Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsResult.IsSetSecurityGroup">
- <summary>
- Checks if SecurityGroup property is set
- </summary>
- <returns>true if SecurityGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSecurityGroupsResult.SecurityGroup">
- <summary>
- Gets and sets the SecurityGroup property.
- List of security groups
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInstancesResult">
- <summary>
- Describe Instances Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesResult.IsSetReservation">
- <summary>
- Checks if Reservation property is set
- </summary>
- <returns>true if Reservation property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstancesResult.Reservation">
- <summary>
- Gets and sets the Reservation property.
- List of reservations
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInstancesResponse">
- <summary>
- Describe Instances Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesResponse.IsSetDescribeInstancesResult">
- <summary>
- Checks if DescribeInstancesResult property is set
- </summary>
- <returns>true if DescribeInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstancesResponse.DescribeInstancesResult">
- <summary>
- Gets and sets the DescribeInstancesResult property.
- Describe Instances Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeCustomerGatewaysRequest">
- <summary>
- Gives you information about your customer gateways. You can filter the
- results to return information only about customer gateways that match criteria you
- specify. For example, you could ask to get information about a particular
- customer gateway (or all) only if the gateway's state is pending or
- available. You can specify multiple filters (e.g., the customer
- gateway has a particular IP address for the Internet-routable
- external interface, and the gateway's state is pending or
- available). The result includes information for a particular
- customer gateway only if the gateway matches all your
- filters. If there's no match, no special message is returned; the response
- is simply empty
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysRequest.WithCustomerGatewayId(System.String[])">
- <summary>
- Sets the CustomerGatewayId property
- </summary>
- <param name="list">A customer gateway ID. You can specify more
- than one in the
- request</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysRequest.IsSetCustomerGatewayId">
- <summary>
- Checks if CustomerGatewayId property is set
- </summary>
- <returns>true if CustomerGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">The filter to apply on the results of DescribeCustomerGateways.
- Filters can be:
- a. state - The state of the Customer Gateway. (pending,
- available, deleting, deleted).
- b. type - The type of Customer Gateway. Currently the only
- supported type is ipsec.1.
- c. ipAddress - The IP address of the customer gateway's
- Internet-routable external interface (e.g., 12.1.2.3).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeCustomerGatewaysRequest.CustomerGatewayId">
- <summary>
- Gets and sets the CustomerGatewayId property.
- A customer gateway ID. You can specify more
- than one in the
- request
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeCustomerGatewaysRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- The filter to apply on the results of DescribeCustomerGateways.
- Filters can be:
- a. state - The state of the Customer Gateway. (pending,
- available, deleting, deleted).
- b. type - The type of Customer Gateway. Currently the only
- supported type is ipsec.1.
- c. ipAddress - The IP address of the customer gateway's
- Internet-routable external interface (e.g., 12.1.2.3).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateRouteTableRequest">
- <summary>
- Creates a new route table within a VPC. After you create a new route table, you can add routes and
- associate the table with a subnet. For more information about route tables, go to Route Tables in the
- Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteTableRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.MetricUnmarshaller">
- <summary>
- Metric Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmsRequestMarshaller">
- <summary>
- Describe Alarms Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmsForMetricResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeAlarmsForMetric operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmHistoryResultUnmarshaller">
- <summary>
- DescribeAlarmHistoryResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.GetMetricStatisticsRequest">
- <summary>
- Container for the parameters to the GetMetricStatistics operation.
- <para> Gets statistics for the specified metric. </para>
- <para><b>NOTE:</b> The maximum number of data points returned from a
- single GetMetricStatistics request is 1,440. If a request is made that
- generates more than 1,440 data points, Amazon CloudWatch returns an
- error. In such a case, alter the request by narrowing the specified
- time range or increasing the specified period. Alternatively, make
- multiple requests across adjacent time ranges. </para> <para> Amazon
- CloudWatch aggregates data points based on the length of the
- <c>period</c> that you specify. For example, if you request statistics
- with a one-minute granularity, Amazon CloudWatch aggregates data
- points with time stamps that fall within the same one-minute period.
- In such a case, the data points queried can greatly outnumber the data
- points returned. </para> <para><b>NOTE:</b> The maximum number of data
- points that can be queried is 50,850; whereas the maximum number of
- data points returned is 1,440. </para> <para> The following examples
- show various statistics allowed by the data point query maximum of
- 50,850 when you call <c>GetMetricStatistics</c> on Amazon EC2
- instances with detailed (one-minute) monitoring enabled: </para>
- <ul>
- <li>Statistics for up to 400 instances for a span of one hour</li>
- <li>Statistics for up to 35 instances over a span of 24 hours</li>
- <li>Statistics for up to 2 instances over a span of 2 weeks</li>
-
- </ul>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.GetMetricStatistics(Amazon.CloudWatch.Model.GetMetricStatisticsRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithMetricName(System.String)">
- <summary>
- Sets the MetricName property
- </summary>
- <param name="metricName">The value to set for the MetricName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithDimensions(Amazon.CloudWatch.Model.Dimension[])">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithDimensions(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Dimension})">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithStartTime(System.DateTime)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The value to set for the StartTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithEndTime(System.DateTime)">
- <summary>
- Sets the EndTime property
- </summary>
- <param name="endTime">The value to set for the EndTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithPeriod(System.Int32)">
- <summary>
- Sets the Period property
- </summary>
- <param name="period">The value to set for the Period property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithStatistics(System.String[])">
- <summary>
- Adds elements to the Statistics collection
- </summary>
- <param name="statistics">The values to add to the Statistics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithStatistics(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the Statistics collection
- </summary>
- <param name="statistics">The values to add to the Statistics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.WithUnit(System.String)">
- <summary>
- Sets the Unit property
- </summary>
- <param name="unit">The value to set for the Unit property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.Namespace">
- <summary>
- The namespace of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[^:].*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.MetricName">
- <summary>
- The name of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.Dimensions">
- <summary>
- A list of dimensions describing qualities of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.StartTime">
- <summary>
- The time stamp to use for determining the first datapoint to return. The value specified is inclusive; results include datapoints with the
- time stamp specified. <note> The specified start time is rounded down to the nearest value. Datapoints are returned for start times up to
- two weeks in the past. Specified start times that are more than two weeks in the past will not return datapoints for metrics that are older
- than two weeks. </note>
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.EndTime">
- <summary>
- The time stamp to use for determining the last datapoint to return. The value specified is exclusive; results will include datapoints up to
- the time stamp specified.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.Period">
- <summary>
- The granularity, in seconds, of the returned datapoints. <c>Period</c> must be at least 60 seconds and must be a multiple of 60. The default
- value is 60.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>60 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.Statistics">
- <summary>
- The metric statistics to return.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsRequest.Unit">
- <summary>
- The unit for the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, None</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DimensionFilter">
- <summary>
- <para> The <c>DimensionFilter</c> data type is used to filter
- ListMetrics results. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DimensionFilter.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DimensionFilter.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value to set for the Value property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DimensionFilter.Name">
- <summary>
- The dimension name to be matched.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DimensionFilter.Value">
- <summary>
- The value of the dimension to be matched. <note> Specifying a <c>Name</c> without specifying a <c>Value</c> returns all values associated
- with that <c>Name</c>. </note>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DeleteAlarmsRequest">
- <summary>
- Container for the parameters to the DeleteAlarms operation.
- <para> Deletes all specified alarms. In the event of an error, no
- alarms are deleted. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.DeleteAlarms(Amazon.CloudWatch.Model.DeleteAlarmsRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DeleteAlarmsRequest.WithAlarmNames(System.String[])">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DeleteAlarmsRequest.WithAlarmNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DeleteAlarmsRequest.AlarmNames">
- <summary>
- A list of alarms to be deleted.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.AmazonCloudWatchConfig">
- <summary>
- Configuration for accessing Amazon CloudWatch service
- </summary>
- </member>
- <member name="T:Amazon.Runtime.ClientConfig">
- <summary>
- This class is the base class of all the configurations settings to connect
- to a service.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.ServiceVersion">
- <summary>
- Gets Service Version
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.SignatureMethod">
- <summary>
- Gets and sets of the signatureMethod property.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.SignatureVersion">
- <summary>
- Gets and sets of the SignatureVersion property.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.UserAgent">
- <summary>
- Gets and sets of the UserAgent property.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.ServiceURL">
- <summary>
- Gets and sets of the ServiceURL property.
- This is an optional property; change it
- only if you want to try a different service
- endpoint or want to switch between https and http.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.ProxyHost">
- <summary>
- Gets and sets of the ProxyHost property.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.ProxyPort">
- <summary>
- Gets and sets of the ProxyPort property.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.MaxErrorRetry">
- <summary>
- Gets and sets of the MaxErrorRetry property.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.UseSecureStringForAwsSecretKey">
- <summary>
- Gets and Sets the UseSecureStringForAwsSecretKey property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.ProxyUsername">
- <summary>
- Gets and sets the ProxyUsername property.
- Used in conjunction with the ProxyPassword
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.ClientConfig.ProxyPassword">
- <summary>
- Gets and sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.AmazonCloudWatchConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetOriginAccessIdentityInfoResponse">
- <summary>
- The GetOriginAccessIdentityInfoResponse contains all the information about the
- GetOriginAccessIdentityInfo operation and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontResponse">
- <summary>
- Base class for all CloudFront operation responses.
- Provides a header collection which is used to store the response headers.
- Also exposes the RequestId and AmazonId2 from CloudFront responses.
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontResponse.etagHeader">
- <summary>
- The ETag Header returned by CloudFront that uniquely
- identifies the configuration or information returned
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.CloudFrontResponse.webHeaders">
- <summary>
- web headers for all requests.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontResponse.ToString">
- <summary>
- Returns the string representation of the response.
- </summary>
- <returns>
- A string representing the response.
- </returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontResponse.RequestId">
- <summary>
- Gets and sets the RequestId property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontResponse.XML">
- <summary>
- Gets and sets the XML property. This is the
- original XML response received from CloudFront
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetOriginAccessIdentityInfoResponse.OriginAccessIdentity">
- <summary>
- Gets and sets the OriginAccessIdentity property.
- This contains all the information (including the configuration) for a
- CloudFront Origin Access Identity.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetOriginAccessIdentityInfoResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Origin Access Identity's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetOriginAccessIdentityInfoRequest">
- <summary>
- The GetOriginAccessIdentityInfoRequest contains the parameters used for the GetOriginAccessIdentityInfo operation.
- <br />Required Parameter: Id
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetOriginAccessIdentityInfoRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The OriginAccessIdentity's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetOriginAccessIdentityInfoRequest.Id">
- <summary>
- Gets and sets the Id property for the Origin Access Identity
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CreateStreamingDistributionRequest">
- <summary>
- The CreateStreamingDistributionRequest contains the parameters used for the CreateStreamingDistribution operation.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CreateStreamingDistributionRequest.WithStreamingDistributionConfig(Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig)">
- <summary>
- Sets the StreamingDistributionConfig property for this request.
- </summary>
- <param name="distributionConfig">The value that StreamingDistributionConfig is set to</param>
- <returns>the request with the Id set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateStreamingDistributionRequest.StreamingDistributionConfig">
- <summary>
- Gets and Sets the StreamingDistributionConfig property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.AmazonCloudFrontClient">
- <summary>
- AmazonCloudFrontClient is an implementation of AmazonCloudFront; the client allows you to manage your CloudFront
- distributions and origin access identities.<br />
- If you want to use the AmazonCloudFrontClient from a Medium Trust hosting environment, please create the
- client with an AmazonCloudFrontConfig object whose UseSecureStringForAwsSecretKey property is false.
- </summary>
- <remarks>
- Amazon CloudFront provides a simple web services interface that can be used to store and retrieve any amount of data,
- at any time, from anywhere on the web. It gives any developer access to the same highly scalable, reliable,
- fast, inexpensive data storage infrastructure that Amazon uses to run its own global network of web sites.
- The service aims to maximize benefits of scale and to pass those benefits on to developers.
- </remarks>
- <seealso cref="P:Amazon.CloudFront.AmazonCloudFrontConfig.UseSecureStringForAwsSecretKey"/>
- </member>
- <member name="T:Amazon.CloudFront.AmazonCloudFront">
- <summary>
- Interface for Amazon CloudFront Clients.
- For more information about Amazon CloudFront, <see href="http://aws.amazon.com/cloudfront"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.ListDistributions">
- <summary>
- List Distributions
- </summary>
- <returns>List Distributions Response from the service</returns>
- <remarks>
- The ListDistributions operation lists all of the distributions associated with
- your account.
- </remarks>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.ListDistributions(Amazon.CloudFront.Model.ListDistributionsRequest)">
- <summary>
- List Distributions
- </summary>
- <param name="request">The ListDistributionsRequest with values for
- the Marker and MaxItems properties set</param>
- <returns>List Distributions Response from the service</returns>
- <remarks>
- The ListDistributions operation lists all of the distributions associated with
- your account.
- </remarks>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetDistributionConfig(Amazon.CloudFront.Model.GetDistributionConfigRequest)">
- <summary>
- The GetDistributionConfig gets the Configuration for the CloudFront distribution.
- For more information on the format of the CloudFront Distribution Configuration object,
- please refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionConfigDatatype.html"/>
- </summary>
- <param name="request">The GetDistributionConfigRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetDistributionInfo(Amazon.CloudFront.Model.GetDistributionInfoRequest)">
- <summary>
- The GetDistributionInfo operation gets the complete information asociated with a distribution.
- For more information on what information is returned by CloudFront, please refer:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/AboutCreatingDistributions.html"/><br />
- and <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIRe/DistributionDatatype.html"/>
- </summary>
- <param name="request">
- The GetDistributionInfoRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetDistributionInfoResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.SetDistributionConfig(Amazon.CloudFront.Model.SetDistributionConfigRequest)">
- <summary>
- The SetDistributionConfig operation sets the configuration for a CloudFront distribution.
- The returned response contains only the headers from CloudFront.
- </summary>
- <param name="request">
- The SetDistributionConfigRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a SetDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.CreateDistribution(Amazon.CloudFront.Model.CreateDistributionRequest)">
- <summary>
- The CreateDistribution operation creates a new CloudFront Distribution.
- </summary>
- <param name="request">
- The CreateDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a CreateDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.DeleteDistribution(Amazon.CloudFront.Model.DeleteDistributionRequest)">
- <summary>
- The DeleteDistribution operation deletes the distribution specified in the request.
- </summary>
- <param name="request">
- The DeleteDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a DeleteDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.CreateOriginAccessIdentity(Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest)">
- <summary>
- The CreateOriginAccessIdentity operation creates a new CloudFront Access Identity.
- You can create up to 100 per AWS account.
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html" />
- </summary>
- <param name="request">
- The CreateOriginAccessIdentityRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a CreateOriginAccessIdentityResponse from CloudFront.</returns>
- <seealso cref="T:Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest"/>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.DeleteOriginAccessIdentity(Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest)">
- <summary>
- The DeleteOriginAccessIdentity operation deletes the origin access identity specified in the request.
- </summary>
- <param name="request">
- The DeleteOriginAccessIdentityRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a DeleteOriginAccessIdentityResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.ListOriginAccessIdentities">
- <summary>
- The ListOriginAccessIdentities operation returns a list of all of the Origin Access Identities
- owned by the authenticated sender of the request.
- </summary>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a ListOriginAccessIdentitiesResponse with the response from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.ListOriginAccessIdentities(Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest)">
- <summary>
- The ListOriginAccessIdentities operation returns a list of all of the Origin Access Identities
- owned by the authenticated sender of the request.
- </summary>
- <param name="request">The ListOriginAccessIdentitiesRequest with values for
- the Marker and MaxItems properties set</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a ListOriginAccessIdentitiesResponse with the response from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetOriginAccessIdentityInfo(Amazon.CloudFront.Model.GetOriginAccessIdentityInfoRequest)">
- <summary>
- The GetOriginAccessIdentityInfo operation gets the complete information asociated with an Origin Access Identity.
- For more information on what information is returned by CloudFront, please refer:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/GetOAI.html"/><br />
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/OAIDatatype.html"/>
- </summary>
- <param name="request">
- The GetOriginAccessIdentityInfoRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetOriginAccessIdentityInfoResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetOriginAccessIdentityConfig(Amazon.CloudFront.Model.GetOriginAccessIdentityConfigRequest)">
- <summary>
- The GetOriginAccessIdentityConfig gets the Configuration for the CloudFront Origin Access Identity.
- For more information on the format of the CloudFront Origin Access Identity Configuration object,
- please refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/OAIConfigDatatype.html"/>
- </summary>
- <param name="request">The GetOriginAccessIdentityConfigRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetOriginAccessIdentityConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.SetOriginAccessIdentityConfig(Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest)">
- <summary>
- The SetOriginAccessIdentityConfig operation sets the configuration for a CloudFront Origin Access Identity.
- The returned response contains only the headers from CloudFront.
- </summary>
- <param name="request">
- The SetOriginAccessIdentityConfigRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a SetOriginAccessIdentityConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.ListStreamingDistributions">
- <summary>
- List CloudFront Streaming Distributions
- </summary>
- <returns>List Streaming Distributions Response from the service</returns>
- <remarks>
- The ListStreamingDistributions operation lists all of the streaming distributions
- associated with your account.
- </remarks>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.ListStreamingDistributions(Amazon.CloudFront.Model.ListStreamingDistributionsRequest)">
- <summary>
- List CloudFront Streaming Distributions
- </summary>
- <param name="request">The ListStreamingDistributionsRequest with values for
- the Marker and MaxItems properties set</param>
- <returns>List Streaming Distributions Response from the service</returns>
- <remarks>
- The ListStreamingDistributions operation lists all of the distributions associated with
- your account.
- </remarks>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetStreamingDistributionConfig(Amazon.CloudFront.Model.GetStreamingDistributionConfigRequest)">
- <summary>
- The GetStreamingDistributionConfig gets the Configuration for the streaming distribution.
- For more information on the format of the CloudFront StreamingDistribution Configuration object,
- please refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionConfigDatatype.html"/>
- </summary>
- <param name="request">The GetStreamingDistributionConfigRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetStreamingDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetStreamingDistributionInfo(Amazon.CloudFront.Model.GetStreamingDistributionInfoRequest)">
- <summary>
- The GetStreamingDistributionInfo operation gets the complete information asociated with a streaming distribution.
- For more information on what information is returned by CloudFront, please refer:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/AboutCreatingStreamingDistributions.html"/><br />
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionDatatype.html"/>
- </summary>
- <param name="request">
- The GetStreamingDistributionInfoRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetStreamingDistributionInfoResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.SetStreamingDistributionConfig(Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest)">
- <summary>
- The SetStreamingDistributionConfig operation sets the configuration for a CloudFront
- streaming distribution. The returned response contains only the headers from CloudFront.
- </summary>
- <param name="request">
- The SetStreamingDistributionConfigRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a SetStreamingDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.CreateStreamingDistribution(Amazon.CloudFront.Model.CreateStreamingDistributionRequest)">
- <summary>
- The CreateStreamingDistribution operation creates a new CloudFront StreamingDistribution.
- </summary>
- <param name="request">
- The CreateStreamingDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a CreateStreamingDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.DeleteStreamingDistribution(Amazon.CloudFront.Model.DeleteStreamingDistributionRequest)">
- <summary>
- The DeleteStreamingDistribution operation deletes the streaming distribution specified in the request.
- </summary>
- <param name="request">
- The DeleteStreamingDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a DeleteStreamingDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.PostInvalidation(Amazon.CloudFront.Model.PostInvalidationRequest)">
- <summary>
- The PostInvalidation operation invalidates objects specified in the PostInvalidationRequest which will
- cause Cloudfront to go back to the origin to get a new copy.
-
- <code>
- PostInvalidationRequest request = new PostInvalidationRequest();
- request.DistributionId = distributionId;
- request.InvalidationBatch.CallerReference = callerReference;
- request.InvalidationBatch.WithPaths("/image1.jpg", "/image2.jpg");
- PostInvalidationResponse response = cfcClient.PostInvalidation(request);
- </code>
- </summary>
- <param name="request">The PostInvalidationRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a PostInvalidationResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetInvalidationList(Amazon.CloudFront.Model.GetInvalidationListRequest)">
- <summary>
- The GetInvalidationList operation will return back a list of all the invalidations done for a distribution for the
- current and previous billing period. If the list is long, you can paginate it using the MaxItems
- and Marker parameters
-
- <code>
- GetInvalidationListRequest request = new GetInvalidationListRequest();
- request.DistributionId = distributionId;
- GetInvalidationListResponse response = cfcClient.GetInvalidationList(request);
- </code>
- </summary>
- <param name="request">The GetInvalidationListRequest that defines the parameters of the operation. Distribution id is a required parameter.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetInvalidationListResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFront.GetInvalidation(Amazon.CloudFront.Model.GetInvalidationRequest)">
- <summary>
- The GetInvalidation operation returns back the details for a specific invalidation.
-
- <code>
- GetInvalidationRequest request = new GetInvalidationRequest()
- .WithDistribtionId(distributionId)
- .WithInvalidationId(invalidationId);
- GetInvalidationResponse response = cfcClient.GetInvalidation(request);
- </code>
- </summary>
- <param name="request">The GetInvalidationRequest that defines the parameters of the operation. Distribution id and Invalidation id are required parameters.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetInvalidationResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.Dispose(System.Boolean)">
- <summary>
- Implements the Dispose pattern for the AmazonS3Client
- </summary>
- <param name="fDisposing">Whether this object is being disposed via a call to Dispose
- or garbage collected.</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.Finalize">
- <summary>
- The destructor for the client class.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonCloudFrontClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.#ctor(System.String,System.String,Amazon.CloudFront.AmazonCloudFrontConfig)">
- <summary>
- Constructs AmazonCloudFrontClient with AWS Access Key ID, AWS Secret Key and an
- AmazonCloudFront Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="config">The CloudFront Configuration Object</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.#ctor(System.String,System.Security.SecureString,Amazon.CloudFront.AmazonCloudFrontConfig)">
- <summary>
- Constructs an AmazonCloudFrontClient with AWS Access Key ID, AWS Secret Key and an
- Amazon CloudFront Configuration object
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key as a SecureString</param>
- <param name="config">The CloudFront Configuration Object</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.PostInvalidation(Amazon.CloudFront.Model.PostInvalidationRequest)">
- <summary>
- The PostInvalidation operation invalidates objects specified in the PostInvalidationRequest which will
- cause Cloudfront to go back to the origin to get a new copy.
-
- <code>
- PostInvalidationRequest request = new PostInvalidationRequest();
- request.DistributionId = distributionId;
- request.InvalidationBatch.CallerReference = callerReference;
- request.InvalidationBatch.WithPaths("/image1.jpg", "/image2.jpg");
- PostInvalidationResponse response = cfcClient.PostInvalidation(request);
- </code>
- </summary>
- <param name="request">The PostInvalidationRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a PostInvalidationResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetInvalidationList(Amazon.CloudFront.Model.GetInvalidationListRequest)">
- <summary>
- The GetInvalidationList operation will return back a list of all the invalidations done for a distribution for the
- current and previous billing period. If the list is long, you can paginate it using the MaxItems
- and Marker parameters
-
- <code>
- GetInvalidationListRequest request = new GetInvalidationListRequest();
- request.DistributionId = distributionId;
- GetInvalidationListResponse response = cfcClient.GetInvalidationList(request);
- </code>
- </summary>
- <param name="request">The GetInvalidationListRequest that defines the parameters of the operation. Distribution id is a required parameter.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetInvalidationListResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetInvalidation(Amazon.CloudFront.Model.GetInvalidationRequest)">
- <summary>
- The GetInvalidation operation returns back the details for a specific invalidation.
-
- <code>
- GetInvalidationRequest request = new GetInvalidationRequest()
- .WithDistribtionId(distributionId)
- .WithInvalidationId(invalidationId);
- GetInvalidationResponse response = cfcClient.GetInvalidation(request);
- </code>
- </summary>
- <param name="request">The GetInvalidationRequest that defines the parameters of the operation. Distribution id and Invalidation id are required parameters.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetInvalidationResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ListDistributions">
- <summary>
- The ListDistributions operation returns a list of all of the distributions
- owned by the authenticated sender of the request.
- </summary>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a ListDistributionsResponse with the response from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ListDistributions(Amazon.CloudFront.Model.ListDistributionsRequest)">
- <summary>
- The ListDistributions operation returns a list of all of the distributions
- owned by the authenticated sender of the request.
- </summary>
- <param name="request">The ListDistributionsRequest with values for
- the Marker and MaxItems properties set</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a ListDistributionsResponse with the response from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetDistributionConfig(Amazon.CloudFront.Model.GetDistributionConfigRequest)">
- <summary>
- The GetDistributionConfig gets the Configuration for the CloudFront distribution.
- For more information on the format of the CloudFront Distribution Configuration object,
- please refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionConfigDatatype.html"/>
- </summary>
- <param name="request">The GetDistributionConfigRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetDistributionInfo(Amazon.CloudFront.Model.GetDistributionInfoRequest)">
- <summary>
- The GetDistributionInfo operation gets the complete information asociated with a distribution.
- For more information on what information is returned by CloudFront, please refer:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/AboutCreatingDistributions.html"/><br />
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionDatatype.html"/>
- </summary>
- <param name="request">
- The GetDistributionInfoRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetDistributionInfoResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.SetDistributionConfig(Amazon.CloudFront.Model.SetDistributionConfigRequest)">
- <summary>
- The SetDistributionConfig operation sets the configuration for a CloudFront distribution.
- </summary>
- <param name="request">
- The SetDistributionConfigRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a SetDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.CreateDistribution(Amazon.CloudFront.Model.CreateDistributionRequest)">
- <summary>
- The CreateDistribution operation creates a new CloudFront Distribution.
- </summary>
- <seealso href="http://docs.amazonwebservices.com/AmazonCloudFront/2010-11-01/APIReference/CreateDistribution.html">
- POST Distribution API Reference</seealso>
- <param name="request">
- The CreateDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a CreateDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.DeleteDistribution(Amazon.CloudFront.Model.DeleteDistributionRequest)">
- <summary>
- The DeleteDistribution operation deletes the distribution specified in the request.
- </summary>
- <seealso href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/HowToDeleteDistribution.html">
- Deleting a Distribution Developer Guide</seealso>
- <param name="request">
- The DeleteDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a DeleteDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.CreateOriginAccessIdentity(Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest)">
- <summary>
- The CreateOriginAccessIdentity operation creates a new CloudFront Access Identity.
- You can create up to 100 per AWS account.
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html" />
- </summary>
- <param name="request">
- The CreateOriginAccessIdentityRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a CreateOriginAccessIdentityResponse from CloudFront.</returns>
- <seealso cref="T:Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest"/>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.DeleteOriginAccessIdentity(Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest)">
- <summary>
- The DeleteOriginAccessIdentity operation deletes the origin access identity specified in the request.
- </summary>
- <param name="request">
- The DeleteOriginAccessIdentityRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a DeleteOriginAccessIdentityResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ListOriginAccessIdentities">
- <summary>
- The ListOriginAccessIdentities operation returns a list of all of the Origin Access Identities
- owned by the authenticated sender of the request.
- </summary>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a ListOriginAccessIdentitiesResponse with the response from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ListOriginAccessIdentities(Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest)">
- <summary>
- The ListOriginAccessIdentities operation returns a list of all of the Origin Access Identities
- owned by the authenticated sender of the request.
- </summary>
- <param name="request">The ListOriginAccessIdentitiesRequest with values for
- the Marker and MaxItems properties set</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a ListOriginAccessIdentitiesResponse with the response from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetOriginAccessIdentityInfo(Amazon.CloudFront.Model.GetOriginAccessIdentityInfoRequest)">
- <summary>
- The GetOriginAccessIdentityInfo operation gets the complete information asociated with an Origin Access Identity.
- For more information on what information is returned by CloudFront, please refer:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/GetOAI.html"/><br />
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/OAIDatatype.html"/>
- </summary>
- <param name="request">
- The GetOriginAccessIdentityInfoRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetOriginAccessIdentityInfoResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetOriginAccessIdentityConfig(Amazon.CloudFront.Model.GetOriginAccessIdentityConfigRequest)">
- <summary>
- The GetOriginAccessIdentityConfig gets the Configuration for the CloudFront Origin Access Identity.
- For more information on the format of the CloudFront Origin Access Identity Configuration object,
- please refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/OAIConfigDatatype.html"/>
- </summary>
- <param name="request">The GetOriginAccessIdentityConfigRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetOriginAccessIdentityConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.SetOriginAccessIdentityConfig(Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest)">
- <summary>
- The SetOriginAccessIdentityConfig operation sets the configuration for a CloudFront Origin Access Identity.
- </summary>
- <param name="request">
- The SetOriginAccessIdentityConfigRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a SetOriginAccessIdentityConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ListStreamingDistributions">
- <summary>
- List CloudFront Streaming Distributions
- </summary>
- <returns>List Streaming Distributions Response from the service</returns>
- <remarks>
- The ListStreamingDistributions operation lists all of the streaming distributions
- associated with your account.
- </remarks>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ListStreamingDistributions(Amazon.CloudFront.Model.ListStreamingDistributionsRequest)">
- <summary>
- List CloudFront Streaming Distributions
- </summary>
- <param name="request">The ListStreamingDistributionsRequest with values for
- the Marker and MaxItems properties set</param>
- <returns>List Streaming Distributions Response from the service</returns>
- <remarks>
- The ListStreamingDistributions operation lists all of the distributions associated with
- your account.
- </remarks>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetStreamingDistributionConfig(Amazon.CloudFront.Model.GetStreamingDistributionConfigRequest)">
- <summary>
- The GetStreamingDistributionConfig gets the Configuration for the streaming distribution.
- For more information on the format of the CloudFront StreamingDistribution Configuration object,
- please refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionConfigDatatype.html"/>
- </summary>
- <param name="request">The GetStreamingDistributionConfigRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetStreamingDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetStreamingDistributionInfo(Amazon.CloudFront.Model.GetStreamingDistributionInfoRequest)">
- <summary>
- The GetStreamingDistributionInfo operation gets the complete information asociated with a streaming distribution.
- For more information on what information is returned by CloudFront, please refer:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/AboutCreatingStreamingDistributions.html"/><br />
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionDatatype.html"/>
- </summary>
- <param name="request">
- The GetStreamingDistributionInfoRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a GetStreamingDistributionInfoResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.SetStreamingDistributionConfig(Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest)">
- <summary>
- The SetStreamingDistributionConfig operation sets the configuration for a CloudFront distribution.
- </summary>
- <param name="request">
- The SetStreamingDistributionConfigRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a SetStreamingDistributionConfigResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.CreateStreamingDistribution(Amazon.CloudFront.Model.CreateStreamingDistributionRequest)">
- <summary>
- The CreateStreamingDistribution operation creates a new CloudFront StreamingDistribution.
- </summary>
- <seealso href="http://docs.amazonwebservices.com/AmazonCloudFront/2010-11-01/APIReference/CreateStreamingDistribution.html">
- POST Streaming Distribution API Reference</seealso>
- <param name="request">
- The CreateStreamingDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a CreateStreamingDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.DeleteStreamingDistribution(Amazon.CloudFront.Model.DeleteStreamingDistributionRequest)">
- <summary>
- The DeleteStreamingDistribution operation deletes the distribution specified in the request.
- </summary>
- <param name="request">
- The DeleteStreamingDistributionRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.CloudFront.AmazonCloudFrontException"></exception>
- <returns>Returns a DeleteStreamingDistributionResponse from CloudFront.</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertListDistributions(Amazon.CloudFront.Model.ListDistributionsRequest)">
- Convert ListDistributionsRequest to key/value pairs
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertGetDistributionInfo(Amazon.CloudFront.Model.GetDistributionInfoRequest)">
- Convert GetDistributionInfoRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertGetDistributionConfig(Amazon.CloudFront.Model.GetDistributionConfigRequest)">
- Convert GetDistributionConfigRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertSetDistributionConfig(Amazon.CloudFront.Model.SetDistributionConfigRequest)">
- Convert SetDistributionInfoRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertCreateDistribution(Amazon.CloudFront.Model.CreateDistributionRequest)">
- Convert CreateDistributionRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertDeleteDistribution(Amazon.CloudFront.Model.DeleteDistributionRequest)">
- Convert DeleteDistributionRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertCreateOriginAccessIdentity(Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest)">
- Convert CreateOriginAccessIdentityRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertDeleteOriginAccessIdentity(Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest)">
- Convert DeleteOriginAccessIdentityRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertListOriginAccessIdentities(Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest)">
- Convert ListOriginAccessIdentitiessRequest to key/value pairs
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertGetOriginAccessIdentityInfo(Amazon.CloudFront.Model.GetOriginAccessIdentityInfoRequest)">
- Convert GetOriginAccessIdentityInfoRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertGetOriginAccessIdentityConfig(Amazon.CloudFront.Model.GetOriginAccessIdentityConfigRequest)">
- Convert GetOriginAccessIdentityConfigRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertSetOriginAccessIdentityConfig(Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest)">
- Convert SetOriginAccessIdentityInfoRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertListStreamingDistributions(Amazon.CloudFront.Model.ListStreamingDistributionsRequest)">
- Convert ListStreamingDistributionsRequest to key/value pairs
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertCreateStreamingDistribution(Amazon.CloudFront.Model.CreateStreamingDistributionRequest)">
- Convert CreateStreamingDistributionRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertGetStreamingDistributionInfo(Amazon.CloudFront.Model.GetStreamingDistributionInfoRequest)">
- Convert GetStreamingDistributionInfoRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertGetStreamingDistributionConfig(Amazon.CloudFront.Model.GetStreamingDistributionConfigRequest)">
- Convert GetStreamingDistributionConfigRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertSetStreamingDistributionConfig(Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest)">
- Convert SetStreamingDistributionInfoRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConvertDeleteStreamingDistribution(Amazon.CloudFront.Model.DeleteStreamingDistributionRequest)">
- Convert DeleteStreamingDistributionRequest to key/value pairs.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.AddCloudFrontQueryParameters(System.Collections.Generic.IDictionary{Amazon.CloudFront.Model.CloudFrontQueryParameter,System.String},System.Net.WebHeaderCollection)">
- Add authentication related and version parameters
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.Invoke``1(System.Collections.Generic.IDictionary{Amazon.CloudFront.Model.CloudFrontQueryParameter,System.String},System.Net.WebHeaderCollection)">
- Invoke request and return response
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.GetServiceSpecificDataFromHeader(Amazon.CloudFront.Model.CloudFrontResponse)">
- Sets the headers we want to expose to the user from the response.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.ConfigureWebRequest(System.Collections.Generic.IDictionary{Amazon.CloudFront.Model.CloudFrontQueryParameter,System.String},System.Net.WebHeaderCollection,System.Int64)">
- Configure HttpClient with set of defaults as well as configuration
- from AmazonEC2Config instance
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.PauseOnRetry(System.Int32,System.Int32,System.Net.HttpStatusCode,System.String,System.Net.WebHeaderCollection)">
- Exponential sleep on failed request
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.BuildSigningString(System.Net.WebHeaderCollection,System.Security.SecureString)">
- Creates a string based on the parameters and encrypts it using
- key. Returns the encrypted string.
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontClient.BuildSigningString(System.Net.WebHeaderCollection,System.String)">
- Creates a string based on the parameters and encrypts it using
- key. Returns the encrypted string.
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.StackEventUnmarshaller">
- <summary>
- StackEvent Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ParameterUnmarshaller">
- <summary>
- Parameter Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStacksRequestMarshaller">
- <summary>
- Describe Stacks Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackResourcesResultUnmarshaller">
- <summary>
- DescribeStackResourcesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackResourcesRequest">
- <summary>
- Container for the parameters to the DescribeStackResources operation.
- <para> Returns AWS resource descriptions for running and deleted stacks. If <c>StackName</c> is specified, all the associated resources that
- are part of the stack are returned. If <c>PhysicalResourceId</c> is specified, all the associated resources of the stack the resource
- belongs to are returned. </para> <para>For deleted stacks, DescribeStackResources returns resource information for up to 90 days after the
- stack has been deleted. </para> <para> You must specify <c>StackName</c> or <c>PhysicalResourceId.</c> In addition, you can specify
- <c>LogicalResourceId</c> to filter the returned result. For more information about resources, the <c>LogicalResourceId</c> and
- <c>PhysicalResourceId</c> , go to the AWS CloudFormation User Guide. </para> <para><b>NOTE:</b> A ValidationError is returned if you specify
- both StackName and PhysicalResourceId in the same request. </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStackResources(Amazon.CloudFormation.Model.DescribeStackResourcesRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.WithLogicalResourceId(System.String)">
- <summary>
- Sets the LogicalResourceId property
- </summary>
- <param name="logicalResourceId">The value to set for the LogicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.WithPhysicalResourceId(System.String)">
- <summary>
- Sets the PhysicalResourceId property
- </summary>
- <param name="physicalResourceId">The value to set for the PhysicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.StackName">
- <summary>
- The name or the unique identifier associated with the stack. Default: There is no default value.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.LogicalResourceId">
- <summary>
- The logical name of the resource as specified in the template.<br></br> Default: There is on default value.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesRequest.PhysicalResourceId">
- <summary>
- The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation. For example, for an
- Amazon Elastic Compute Cloud (EC2) instance, <c>PhysicalResourceId</c> corresponds to the <c>InstanceId</c>. You can pass the EC2
- <c>InstanceId</c> to <c>DescribeStackResources</c> to find which stack the instance belongs to and what other resources are part of the
- stack. Default: There is no default value.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.MetricGranularityTypeUnmarshaller">
- <summary>
- MetricGranularityType Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.BlockDeviceMappingUnmarshaller">
- <summary>
- BlockDeviceMapping Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ActivityUnmarshaller">
- <summary>
- Activity Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ScalingPolicy">
- <summary>
- <para> The ScalingPolicy data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithScalingAdjustment(System.Int32)">
- <summary>
- Sets the ScalingAdjustment property
- </summary>
- <param name="scalingAdjustment">The value to set for the ScalingAdjustment property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithAdjustmentType(System.String)">
- <summary>
- Sets the AdjustmentType property
- </summary>
- <param name="adjustmentType">The value to set for the AdjustmentType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithCooldown(System.Int32)">
- <summary>
- Sets the Cooldown property
- </summary>
- <param name="cooldown">The value to set for the Cooldown property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithPolicyARN(System.String)">
- <summary>
- Sets the PolicyARN property
- </summary>
- <param name="policyARN">The value to set for the PolicyARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithAlarms(Amazon.AutoScaling.Model.Alarm[])">
- <summary>
- Adds elements to the Alarms collection
- </summary>
- <param name="alarms">The values to add to the Alarms collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingPolicy.WithAlarms(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.Alarm})">
- <summary>
- Adds elements to the Alarms collection
- </summary>
- <param name="alarms">The values to add to the Alarms collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScalingPolicy.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group associated with this scaling policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScalingPolicy.PolicyName">
- <summary>
- The name of the scaling policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScalingPolicy.ScalingAdjustment">
- <summary>
- The number associated with the specified AdjustmentType. A positive value adds to the current capacity and a negative value removes from the
- current capacity.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScalingPolicy.AdjustmentType">
- <summary>
- Specifies whether the ScalingAdjustment is an absolute number or a percentage of the current capacity. Valid values are
- <c>ChangeInCapacity</c>, <c>ExactCapacity</c>, and <c>PercentOfCapacity</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScalingPolicy.Cooldown">
- <summary>
- The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScalingPolicy.PolicyARN">
- <summary>
- The Amazon Resource Name (ARN) of the policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScalingPolicy.Alarms">
- <summary>
- A list of CloudWatch Alarms related to the policy.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.InstanceMonitoring">
- <summary>
- <para> The InstanceMonitoring Data Type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.InstanceMonitoring.WithEnabled(System.Boolean)">
- <summary>
- Sets the Enabled property
- </summary>
- <param name="enabled">The value to set for the Enabled property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.InstanceMonitoring.Enabled">
- <summary>
- If true, instance monitoring is enabled.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScheduledActionsResponse">
- <summary>
- Returns information about the DescribeScheduledActionsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsResponse.DescribeScheduledActionsResult">
- <summary>
- Gets and sets the DescribeScheduledActionsResult property.
- A scaling action that is scheduled for a future time and date. An action can be scheduled up to thirty days in advance.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResponse">
- <summary>
- Returns information about the DescribeAutoScalingInstancesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResponse.DescribeAutoScalingInstancesResult">
- <summary>
- Gets and sets the DescribeAutoScalingInstancesResult property.
- The AutoScalingInstancesType data type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.AdjustmentType">
- <summary>
- <para> Specifies whether the PutScalingPolicy <c>ScalingAdjustment</c> parameter is an absolute number or a percentage of the current
- capacity. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AdjustmentType.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AdjustmentType.Name">
- <summary>
- A policy adjustment type. Valid values are <c>ChangeInCapacity</c>, <c>ExactCapacity</c>, and <c>PercentChangeInCapacity</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Policy">
- <summary>
- An AWS access control policy is a object that acts as a container for one or
- more statements, which specify fine grained rules for allowing or denying
- various types of actions from being performed on your AWS resources.
- <para>
- By default, all requests to use your resource coming from anyone but you are
- denied. Access control polices can override that by allowing different types
- of access to your resources, or by explicitly denying different types of
- access.
- </para>
- <para>
- Each statement in an AWS access control policy takes the form:
- "A has permission to do B to C where D applies".
- <list type="definition">
- <item>
- <term>A is the prinicpal</term>
- <description>The AWS account that is making a request to
- access or modify one of your AWS resources.
- </description>
- </item>
- <item>
- <term>B is the action</term>
- <description>the way in which your AWS resource is being accessed or modified, such
- as sending a message to an Amazon SQS queue, or storing an object in an Amazon S3 bucket.
- </description>
- </item>
- <item>
- <term>C is the resource</term>
- <description>your AWS entity that the principal wants to access, such
- as an Amazon SQS queue, or an object stored in Amazon S3.
- </description>
- </item>
- <item>
- <term>D is the set of conditions</term>
- <description>optional constraints that specify when to allow or deny
- access for the principal to access your resource. Many expressive conditions are available,
- some specific to each service. For example you can use date conditions to allow access to
- your resources only after or before a specific time.
- </description>
- </item>
- </list>
- </para>
- <para>
- Note that an AWS access control policy should not be confused with the
- similarly named "POST form policy" concept used in Amazon S3.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.Policy.DEFAULT_POLICY_VERSION">
- <summary>
- The default policy version
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Policy.#ctor">
- <summary>
- Constructs an empty AWS access control policy ready to be populated with
- statements.
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Policy.#ctor(System.String)">
- <summary>
- Constructs a new AWS access control policy with the specified policy ID.
- The policy ID is a user specified string that serves to help developers
- keep track of multiple polices. Policy IDs are often used as a human
- readable name for a policy.
- </summary>
- <param name="id">The policy ID for the new policy object. Policy IDs serve to
- help developers keep track of multiple policies, and are often
- used to give the policy a meaningful, human readable name.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Policy.#ctor(System.String,System.Collections.Generic.IList{Amazon.Auth.AccessControlPolicy.Statement})">
- <summary>
- Constructs a new AWS access control policy with the specified policy ID
- and collection of statements. The policy ID is a user specified string
- that serves to help developers keep track of multiple polices. Policy IDs
- are often used as a human readable name for a policy.
- </summary>
- <param name="id">The policy ID for the new policy object. Policy IDs serve to
- help developers keep track of multiple policies, and are often
- used to give the policy a meaningful, human readable name.</param>
- <param name="statements">The statements to include in the new policy.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Policy.WithId(System.String)">
- <summary>
- Sets the policy ID for this policy and returns the updated policy so that
- multiple calls can be chained together.
- <para>
- Policy IDs serve to help developers keep track of multiple policies, and
- are often used as human readable name for a policy.
- </para>
- </summary>
- <paraparam name="id">The polich ID for this policy</paraparam>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Policy.WithStatements(Amazon.Auth.AccessControlPolicy.Statement[])">
- <summary>
- Sets the collection of statements contained by this policy and returns
- this policy object so that additional method calls can be chained
- together.
- <para>
- Individual statements in a policy are what specify the rules that enable
- or disable access to your AWS resources.
- </para>
- </summary>
- <param name="statements">The collection of statements included in this policy.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Policy.ToJson">
- <summary>
- Returns a JSON string representation of this AWS access control policy,
- suitable to be sent to an AWS service as part of a request to set an
- access control policy.
- </summary>
- <returns>A JSON string representation of this AWS access control policy.</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Policy.FromJson(System.String)">
- <summary>
- Parses a JSON document of a policy and creates a Policy object.
- </summary>
- <param name="json">JSON document of a policy.</param>
- <returns></returns>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Policy.Id">
- <summary>
- Gets and Sets the policy ID for this policy. Policy IDs serve to help
- developers keep track of multiple policies, and are often used as human
- readable name for a policy.
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Policy.Version">
- <summary>
- Gets the version of this AWS policy.
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Policy.Statements">
- <summary>
- Gets and Sets the collection of statements contained by this policy. Individual
- statements in a policy are what specify the rules that enable or disable
- access to your AWS resources.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.SetQueueAttributesRequest">
- <summary>
- Sets an attribute of a queue. Currently, you can set only one attribute per request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.SetQueueAttributesRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SetQueueAttributesRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SetQueueAttributesRequest.WithAttribute(Amazon.SQS.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Name and value pair of an attribute associated with the queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SetQueueAttributesRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.SetQueueAttributesRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.SetQueueAttributesRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ReceiveMessageResult">
- <summary>
- A list of messages associated with the ReceiveMessageRequest.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageResult.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ReceiveMessageResult.Message">
- <summary>
- Gets and sets the Message property.
- An element containing the information about the message.
- </summary>
- </member>
- <member name="T:Amazon.SQS.AmazonSQS">
- <summary>
- Amazon Simple Queue Service (Amazon SQS) offers a reliable, highly scalable hosted queue for storing
- messages as they travel between computers. By using Amazon SQS, developers can simply move data between
- distributed application components performing different tasks, without losing messages or requiring each
- component to be always available. Amazon SQS works by exposing Amazon's web-scale messaging infrastructure
- as a web service. Any computer on the Internet can add or read messages without any installed software or
- special firewall configurations. Components of applications using Amazon SQS can run independently, and do
- not need to be on the same network, developed with the same technologies, or running at the same time.
- </summary>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.CreateQueue(Amazon.SQS.Model.CreateQueueRequest)">
- <summary>
- Create Queue
- </summary>
- <param name="request">Create Queue request</param>
- <returns>Create Queue Response from the service</returns>
- <remarks>
- The CreateQueue action creates a new queue, or returns the URL of an existing one.
- When you request CreateQueue, you provide a name for the queue. To successfully create
- a new queue, you must provide a name that is unique within the scope of your own queues.
- If you provide the name of an existing queue, a new queue isn't created and an error
- isn't returned. Instead, the request succeeds and the queue URL for the existing queue is
- returned. Exception: if you provide a value for DefaultVisibilityTimeout that is different
- from the value for the existing queue, you receive an error.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.ListQueues(Amazon.SQS.Model.ListQueuesRequest)">
- <summary>
- List Queues
- </summary>
- <param name="request">List Queues request</param>
- <returns>List Queues Response from the service</returns>
- <remarks>
- The ListQueues action returns a list of your queues.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.AddPermission(Amazon.SQS.Model.AddPermissionRequest)">
- <summary>
- Add Permission
- </summary>
- <param name="request">Add Permission request</param>
- <returns>Add Permission Response from the service</returns>
- <remarks>
- Adds the specified permission(s) to a queue for the specified principal(s). This allows for sharing access to the queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.ChangeMessageVisibility(Amazon.SQS.Model.ChangeMessageVisibilityRequest)">
- <summary>
- Change Message Visibility
- </summary>
- <param name="request">Change Message Visibility request</param>
- <returns>Change Message Visibility Response from the service</returns>
- <remarks>
- The ChangeMessageVisibility action extends the read lock timeout of the specified message from the specified queue to the specified value.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.DeleteMessage(Amazon.SQS.Model.DeleteMessageRequest)">
- <summary>
- Delete Message
- </summary>
- <param name="request">Delete Message request</param>
- <returns>Delete Message Response from the service</returns>
- <remarks>
- The DeleteMessage action unconditionally removes the specified message from the specified queue. Even if the message is locked by another reader due to the visibility timeout setting, it is still deleted from the queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.DeleteQueue(Amazon.SQS.Model.DeleteQueueRequest)">
- <summary>
- Delete Queue
- </summary>
- <param name="request">Delete Queue request</param>
- <returns>Delete Queue Response from the service</returns>
- <remarks>
- This action unconditionally deletes the queue specified by the queue URL. Use this operation WITH CARE! The queue is deleted even if it is NOT empty.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.GetQueueAttributes(Amazon.SQS.Model.GetQueueAttributesRequest)">
- <summary>
- Get Queue Attributes
- </summary>
- <param name="request">Get Queue Attributes request</param>
- <returns>Get Queue Attributes Response from the service</returns>
- <remarks>
- Gets one or all attributes of a queue. Queues currently have two attributes you can get: ApproximateNumberOfMessages and VisibilityTimeout.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.RemovePermission(Amazon.SQS.Model.RemovePermissionRequest)">
- <summary>
- Remove Permission
- </summary>
- <param name="request">Remove Permission request</param>
- <returns>Remove Permission Response from the service</returns>
- <remarks>
- Removes the permission with the specified statement id from the queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.ReceiveMessage(Amazon.SQS.Model.ReceiveMessageRequest)">
- <summary>
- Receive Message
- </summary>
- <param name="request">Receive Message request</param>
- <returns>Receive Message Response from the service</returns>
- <remarks>
- Retrieves one or more messages from the specified queue. For each message returned, the response includes
- the message body; MD5 digest of the message body; receipt handle, which is the identifier you must provide
- when deleting the message; and message ID of each message. Messages returned by this action stay in the queue
- until you delete them. However, once a message is returned to a ReceiveMessage request, it is not returned
- on subsequent ReceiveMessage requests for the duration of the VisibilityTimeout. If you do not specify a
- VisibilityTimeout in the request, the overall visibility timeout for the queue is used for the returned messages.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.SendMessage(Amazon.SQS.Model.SendMessageRequest)">
- <summary>
- Send Message
- </summary>
- <param name="request">Send Message request</param>
- <returns>Send Message Response from the service</returns>
- <remarks>
- The SendMessage action delivers a message to the specified queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQS.SetQueueAttributes(Amazon.SQS.Model.SetQueueAttributesRequest)">
- <summary>
- Set Queue Attributes
- </summary>
- <param name="request">Set Queue Attributes request</param>
- <returns>Set Queue Attributes Response from the service</returns>
- <remarks>
- Sets an attribute of a queue. Currently, you can set only the VisibilityTimeout attribute for a queue.
- </remarks>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.RemovePermissionRequest">
- <summary>
- Removes a statement from a topic's access control policy.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.RemovePermissionRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The Amazon Reference Name (ARN) of the topic whose access control policy the
- client wishes to modify.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.RemovePermissionRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.RemovePermissionRequest.WithLabel(System.String)">
- <summary>
- Sets the Label property
- </summary>
- <param name="label">The unique label of the statement the client wishes to remove.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.RemovePermissionRequest.IsSetLabel">
- <summary>
- Checks if Label property is set
- </summary>
- <returns>true if Label property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.RemovePermissionRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The Amazon Reference Name (ARN) of the topic whose access control policy the
- client wishes to modify.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.RemovePermissionRequest.Label">
- <summary>
- Gets and sets the Label property.
- The unique label of the statement the client wishes to remove.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListTopicsResult">
- <summary>
- Encapsulates the result of the ListTopics action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResult.IsSetTopics">
- <summary>
- Checks if Topics property is set
- </summary>
- <returns>true if Topics property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResult.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListTopicsResult.Topics">
- <summary>
- Gets and sets the Topics property.
- A list of topic ARNs.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListTopicsResult.NextToken">
- <summary>
- Gets and sets the NextToken property.
- Token to pass along to the next ListTopics request. This element is returned if there are additional topics to retrieve.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListTopicsResponse">
- <summary>
- Encapsulates the metadata and result of the ListTopics action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResponse.IsSetListTopicsResult">
- <summary>
- Checks if ListTopicsResult property is set
- </summary>
- <returns>true if ListTopicsResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListTopicsResponse.ListTopicsResult">
- <summary>
- Gets and sets the ListTopicsResult property.
- Encapsulates the result of the ListTopics action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListTopicsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest">
- <summary>
- The ConfirmSubscription action verifies an endpoint owner's intent to
- receive messages by validating the token sent to the endpoint by an
- earlier Subscribe action. If the token is valid, the action creates
- a new subscription and returns its Amazon Resource Name (ARN). This
- call requires an AWS signature only when the AuthenticateOnUnsubscribe
- flag is set to "true".
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The ARN of the topic for which you wish to confirm a subscription.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.WithToken(System.String)">
- <summary>
- Sets the Token property
- </summary>
- <param name="token">Short-lived token sent to an endpoint during the Subscribe action.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.IsSetToken">
- <summary>
- Checks if Token property is set
- </summary>
- <returns>true if Token property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.WithAuthenticateOnUnsubscribe(System.String)">
- <summary>
- Sets the AuthenticateOnUnsubscribe property
- </summary>
- <param name="authenticateOnUnsubscribe">Indicates that you want to disable unauthenticated unsubsciption of the subscription.
- If parameter is present in the request, the request has an AWS signature, and the value
- of this parameter is true, only the topic owner and the subscription owner will be
- permitted to unsubscribe the endopint, and the Unsubscribe action will require AWS
- authentication.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.IsSetAuthenticateOnUnsubscribe">
- <summary>
- Checks if AuthenticateOnUnsubscribe property is set
- </summary>
- <returns>true if AuthenticateOnUnsubscribe property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The ARN of the topic for which you wish to confirm a subscription.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.Token">
- <summary>
- Gets and sets the Token property.
- Short-lived token sent to an endpoint during the Subscribe action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest.AuthenticateOnUnsubscribe">
- <summary>
- Gets and sets the AuthenticateOnUnsubscribe property.
- Indicates that you want to disable unauthenticated unsubsciption of the subscription.
- If parameter is present in the request, the request has an AWS signature, and the value
- of this parameter is true, only the topic owner and the subscription owner will be
- permitted to unsubscribe the endopint, and the Unsubscribe action will require AWS
- authentication.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.AddPermissionResponse">
- <summary>
- Encapsulates the metadata and result of the AddPermission action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.AddPermissionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.AddPermissionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.VerifyEmailAddressResponse">
- <summary>
- Returns information about the VerifyEmailAddress response metadata.
- The VerifyEmailAddress operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.VerifyEmailAddressRequestMarshaller">
- <summary>
- Verify Email Address Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.GetSendStatisticsRequest">
- <summary>
- Container for the parameters to the GetSendStatistics operation.
- <para>Returns the user's sending statistics. The result is a list of
- data points, representing the last two weeks of sending
- activity.</para> <para>Each data point in the list contains statistics
- for a 15-minute interval.</para>
- </summary>
- <seealso cref="M:Amazon.SimpleEmail.AmazonSimpleEmailService.GetSendStatistics(Amazon.SimpleEmail.Model.GetSendStatisticsRequest)"/>
- </member>
- <member name="T:Amazon.SimpleDB.Model.GetAttributesResult">
- <summary>
- Returns all of the attributes associated with the item. Optionally, the attributes returned can
- be limited to one or more specified attribute name parameters. If the item does not exist on the
- replica that was accessed for this operation, an empty set is returned. The system does not return
- an error as it cannot guarantee the item does not exist on other replicas.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesResult.WithAttribute(Amazon.SimpleDB.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Attribute associated with an Item.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesResult.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.GetAttributesResult.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Attribute associated with an Item.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DomainMetadataResult">
- <summary>
- Returns information about the domain, including when the domain was created, the number of items and
- attributes, and the size of attribute names and values.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.WithItemCount(System.String)">
- <summary>
- Sets the ItemCount property
- </summary>
- <param name="itemCount">The number of all items in the domain.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.IsSetItemCount">
- <summary>
- Checks if ItemCount property is set
- </summary>
- <returns>true if ItemCount property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.WithItemNamesSizeBytes(System.String)">
- <summary>
- Sets the ItemNamesSizeBytes property
- </summary>
- <param name="itemNamesSizeBytes">The total size of all item names in the domain, in bytes.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.IsSetItemNamesSizeBytes">
- <summary>
- Checks if ItemNamesSizeBytes property is set
- </summary>
- <returns>true if ItemNamesSizeBytes property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.WithAttributeNameCount(System.String)">
- <summary>
- Sets the AttributeNameCount property
- </summary>
- <param name="attributeNameCount">The number of unique attribute names in the domain.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.IsSetAttributeNameCount">
- <summary>
- Checks if AttributeNameCount property is set
- </summary>
- <returns>true if AttributeNameCount property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.WithAttributeNamesSizeBytes(System.String)">
- <summary>
- Sets the AttributeNamesSizeBytes property
- </summary>
- <param name="attributeNamesSizeBytes">The total size of all unique attribute names, in bytes.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.IsSetAttributeNamesSizeBytes">
- <summary>
- Checks if AttributeNamesSizeBytes property is set
- </summary>
- <returns>true if AttributeNamesSizeBytes property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.WithAttributeValueCount(System.String)">
- <summary>
- Sets the AttributeValueCount property
- </summary>
- <param name="attributeValueCount">The number of all attribute name/value pairs in the domain.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.IsSetAttributeValueCount">
- <summary>
- Checks if AttributeValueCount property is set
- </summary>
- <returns>true if AttributeValueCount property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.WithAttributeValuesSizeBytes(System.String)">
- <summary>
- Sets the AttributeValuesSizeBytes property
- </summary>
- <param name="attributeValuesSizeBytes">The total size of all attribute values, in bytes.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.IsSetAttributeValuesSizeBytes">
- <summary>
- Checks if AttributeValuesSizeBytes property is set
- </summary>
- <returns>true if AttributeValuesSizeBytes property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.WithTimestamp(System.String)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The data and time when metadata was calculated in Epoch (UNIX) time.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResult.IsSetTimestamp">
- <summary>
- Checks if Timestamp property is set
- </summary>
- <returns>true if Timestamp property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResult.ItemCount">
- <summary>
- Gets and sets the ItemCount property.
- The number of all items in the domain.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResult.ItemNamesSizeBytes">
- <summary>
- Gets and sets the ItemNamesSizeBytes property.
- The total size of all item names in the domain, in bytes.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResult.AttributeNameCount">
- <summary>
- Gets and sets the AttributeNameCount property.
- The number of unique attribute names in the domain.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResult.AttributeNamesSizeBytes">
- <summary>
- Gets and sets the AttributeNamesSizeBytes property.
- The total size of all unique attribute names, in bytes.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResult.AttributeValueCount">
- <summary>
- Gets and sets the AttributeValueCount property.
- The number of all attribute name/value pairs in the domain.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResult.AttributeValuesSizeBytes">
- <summary>
- Gets and sets the AttributeValuesSizeBytes property.
- The total size of all attribute values, in bytes.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResult.Timestamp">
- <summary>
- Gets and sets the Timestamp property.
- The data and time when metadata was calculated in Epoch (UNIX) time.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.TopicConfiguration">
- <summary>
- Represents a topic configuration for notification configuration. A topic configuration contains
- an event and a topic arn.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.TopicConfiguration.WithEvent(System.String)">
- <summary>
- Sets the Event property.
- </summary>
- <param name="evnt">Event property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.TopicConfiguration.WithTopic(System.String)">
- <summary>
- Sets the Topic property.
- </summary>
- <param name="topic">Topic property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.TopicConfiguration.ToString">
- <summary>
- Creates a string representation of a topic configuration.
- </summary>
- <returns>The string representation of the topic configuration.</returns>
- </member>
- <member name="M:Amazon.S3.Model.TopicConfiguration.ToXML">
- <summary>
- Creates a xml representation of a topic configuration.
- </summary>
- <returns>The xml representation of the topic configuration.</returns>
- </member>
- <member name="P:Amazon.S3.Model.TopicConfiguration.Event">
- <summary>
- Gets and sets the Event property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.TopicConfiguration.Topic">
- <summary>
- Gets and sets the Topic property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.EnableBucketLoggingRequest">
- <summary>
- The EnableBucketLoggingRequest contains the parameters used for the EnableBucketLogging operation.
- <br />Required Parameters: BucketName, LoggingConfig
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.EnableBucketLoggingRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket that you want to enable logging.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.EnableBucketLoggingRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.EnableBucketLoggingRequest.WithLoggingConfig(Amazon.S3.Model.S3BucketLoggingConfig)">
- <summary>
- Sets the LoggingConfig property for this request.
- This config declares all of the logging configuration properties.
- </summary>
- <param name="loggingConfig">The value that LoggingConfig is set to</param>
- <returns>the request with the LoggingConfig set</returns>
- </member>
- <member name="M:Amazon.S3.Model.EnableBucketLoggingRequest.IsSetLoggingConfig">
- <summary>
- Checks if LoggingConfig property is set.
- </summary>
- <returns>true if LoggingConfig property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.EnableBucketLoggingRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.EnableBucketLoggingRequest.LoggingConfig">
- <summary>
- Gets and sets the LoggingConfig property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DeleteBucketWebsiteResponse">
- <summary>
- The DeleteBucketWebsiteResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DeleteBucketPolicyResponse">
- <summary>
- The DeleteBucketPolicyResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RevokeDBSecurityGroupIngressRequestMarshaller">
- <summary>
- Revoke D B Security Group Ingress Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBEngineVersionsRequestMarshaller">
- <summary>
- Describe D B Engine Versions Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DBParameterGroupStatusUnmarshaller">
- <summary>
- DBParameterGroupStatus Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBSecurityGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateDBSecurityGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotResult">
- <summary>
- The results from the RestoreDBInstanceFromDBSnapshot action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotResult.DBInstance">
-
- Gets and sets the RestoreDBInstanceFromDBSnapshotResult property.
- Contains the result of a successful invocation of the RestoreDBInstanceFromDBSnapshot
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.PointInTimeRestoreNotEnabledException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.PointInTimeRestoreNotEnabledException.#ctor(System.String)">
- <summary>
- Constructs a new PointInTimeRestoreNotEnabledException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.ModifyDBInstanceResult">
- <summary>
- The results from the ModifyDBInstance action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceResult.DBInstance">
-
- Gets and sets the ModifyDBInstanceResult property.
- Contains the result of a successful invocation of the ModifyDBInstance
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBParametersRequest">
- <summary>
- Container for the parameters to the DescribeDBParameters operation.
- <para> Returns the detailed parameter list for a particular DBParameterGroup. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeDBParameters(Amazon.RDS.Model.DescribeDBParametersRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParametersRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParametersRequest.WithSource(System.String)">
- <summary>
- Sets the Source property
- </summary>
- <param name="source">The value to set for the Source property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParametersRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParametersRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParametersRequest.DBParameterGroupName">
- <summary>
- The name of a specific database parameter group to return details for. Constraints: <ul> <li>Must be 1 to 255 alphanumeric characters</li>
- <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParametersRequest.Source">
- <summary>
- The parameter types to return. Default: All parameter types returned Valid Values: <c>user | system | engine-default</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParametersRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParametersRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeDBInstances request. If this parameter is specified, the response includes only records
- beyond the marker, up to the value specified by <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBParameterGroupAlreadyExistsException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroupAlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new DBParameterGroupAlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBSnapshotResponse">
- <summary>
- Returns information about the CreateDBSnapshot response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSnapshotResponse.CreateDBSnapshotResult">
-
- Gets and sets the CreateDBSnapshotResult property.
- Contains the result of a successful invocation of the CreateDBSnapshot
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBInstanceReadReplicaResult">
- <summary>
- The results from the CreateDBInstanceReadReplica action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaResult.DBInstance">
-
- Gets and sets the CreateDBInstanceReadReplicaResult property.
- Contains the result of a successful invocation of the CreateDBInstanceReadReplica
- action.
-
- </member>
- <member name="T:Amazon.ImportExport.AmazonImportExport">
- <summary>
- Interface for accessing AmazonImportExport.
-
- AWS Import/Export Service <para> AWS Import/Export accelerates
- transferring large amounts of data between the AWS cloud and portable
- storage devices that you mail to us. AWS Import/Export transfers data
- directly onto and off of your storage devices using Amazon's
- high-speed internal network and bypassing the Internet. For large data
- sets, AWS Import/Export is often faster than Internet transfer and
- more cost effective than upgrading your connectivity. </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExport.CreateJob(Amazon.ImportExport.Model.CreateJobRequest)">
- <summary>
- <para> This operation initiates the process of scheduling an upload or
- download of your data. You include in the request a manifest that
- describes the data transfer specifics. The response to the request
- includes a job ID, which you can use in other operations, a signature
- that you use to identify your storage device, and the address where
- you should ship your storage device. </para>
- </summary>
-
- <param name="createJobRequest">Container for the necessary parameters
- to execute the CreateJob service method on AmazonImportExport.</param>
-
- <returns>The response from the CreateJob service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.MalformedManifestException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAddressException"/>
- <exception cref="T:Amazon.ImportExport.Model.BucketPermissionException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.MultipleRegionsException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidFileSystemException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.NoSuchBucketException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.CreateJobQuotaExceededException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExport.CancelJob(Amazon.ImportExport.Model.CancelJobRequest)">
- <summary>
- <para> This operation cancels a specified job. Only the job owner can
- cancel it. The operation fails if the job has already started or is
- complete. </para>
- </summary>
-
- <param name="cancelJobRequest">Container for the necessary parameters
- to execute the CancelJob service method on AmazonImportExport.</param>
-
- <returns>The response from the CancelJob service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.CanceledJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.ExpiredJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.UnableToCancelJobIdException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExport.GetStatus(Amazon.ImportExport.Model.GetStatusRequest)">
- <summary>
- <para> This operation returns information about a job, including where
- the job is in the processing pipeline, the status of the results, and
- the signature value associated with the job. You can only return
- information about jobs you own. </para>
- </summary>
-
- <param name="getStatusRequest">Container for the necessary parameters
- to execute the GetStatus service method on AmazonImportExport.</param>
-
- <returns>The response from the GetStatus service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.CanceledJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.ExpiredJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidJobIdException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExport.ListJobs(Amazon.ImportExport.Model.ListJobsRequest)">
- <summary>
- <para> This operation returns the jobs associated with the requester.
- AWS Import/Export lists the jobs in reverse chronological order based
- on the date of creation. For example if Job Test1 was created
- 2009Dec30 and Test2 was created 2010Feb05, the ListJobs operation
- would return Test2 followed by Test1. </para>
- </summary>
-
- <param name="listJobsRequest">Container for the necessary parameters
- to execute the ListJobs service method on AmazonImportExport.</param>
-
- <returns>The response from the ListJobs service method, as returned by
- AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.InvalidParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExport.UpdateJob(Amazon.ImportExport.Model.UpdateJobRequest)">
- <summary>
- <para> You use this operation to change the parameters specified in
- the original manifest file by supplying a new manifest file. The
- manifest file attached to this request replaces the original manifest
- file. You can only use the operation after a CreateJob request but
- before the data transfer starts and you can only use it on jobs you
- own. </para>
- </summary>
-
- <param name="updateJobRequest">Container for the necessary parameters
- to execute the UpdateJob service method on AmazonImportExport.</param>
-
- <returns>The response from the UpdateJob service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.MalformedManifestException"/>
- <exception cref="T:Amazon.ImportExport.Model.BucketPermissionException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAddressException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.UnableToUpdateJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.MultipleRegionsException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidFileSystemException"/>
- <exception cref="T:Amazon.ImportExport.Model.CanceledJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.NoSuchBucketException"/>
- <exception cref="T:Amazon.ImportExport.Model.ExpiredJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidJobIdException"/>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateServerCertificateRequest">
- <summary>
- Container for the parameters to the UpdateServerCertificate operation.
- <para>Updates the name and/or the path of the specified server
- certificate.</para> <para><b>IMPORTANT:</b> You should understand the
- implications of changing a server certificate's path or name. For more
- information, see Managing Server Certificates in Using AWS Identity
- and Access Management. </para> <para><b>NOTE:</b>To change a server
- certificate name the requester must have appropriate permissions on
- both the source object and the target object. For example, to change
- the name from ProductionCert to ProdCert, the entity making the
- request must have permission on ProductionCert and ProdCert, or must
- have permission on all (*). For more information about permissions,
- see Permissions and Policies. </para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateServerCertificate(Amazon.IdentityManagement.Model.UpdateServerCertificateRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateServerCertificateRequest.WithServerCertificateName(System.String)">
- <summary>
- Sets the ServerCertificateName property
- </summary>
- <param name="serverCertificateName">The value to set for the ServerCertificateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateServerCertificateRequest.WithNewPath(System.String)">
- <summary>
- Sets the NewPath property
- </summary>
- <param name="newPath">The value to set for the NewPath property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateServerCertificateRequest.WithNewServerCertificateName(System.String)">
- <summary>
- Sets the NewServerCertificateName property
- </summary>
- <param name="newServerCertificateName">The value to set for the NewServerCertificateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateServerCertificateRequest.ServerCertificateName">
- <summary>
- The name of the server certificate that you want to update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateServerCertificateRequest.NewPath">
- <summary>
- The new path for the server certificate. Include this only if you are updating the server certificate's path.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateServerCertificateRequest.NewServerCertificateName">
- <summary>
- The new name for the server certificate. Include this only if you are updating the server certificate's name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.RemoveUserFromGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RemoveUserFromGroup operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GroupUnmarshaller">
- <summary>
- Group Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetServerCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetServerCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetGroupRequestMarshaller">
- <summary>
- Get Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteSigningCertificateRequestMarshaller">
- <summary>
- Delete Signing Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeactivateMFADeviceRequestMarshaller">
- <summary>
- Deactivate M F A Device Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateLoginProfileResultUnmarshaller">
- <summary>
- CreateLoginProfileResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateAccessKeyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateAccessKey operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.SigningCertificate">
- <summary>
- <para>The SigningCertificate data type contains information about an
- X.509 signing certificate.</para> <para> This data type is used as a
- response element in the actions UploadSigningCertificate and
- ListSigningCertificates. </para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.SigningCertificate.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.SigningCertificate.WithCertificateId(System.String)">
- <summary>
- Sets the CertificateId property
- </summary>
- <param name="certificateId">The value to set for the CertificateId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.SigningCertificate.WithCertificateBody(System.String)">
- <summary>
- Sets the CertificateBody property
- </summary>
- <param name="certificateBody">The value to set for the CertificateBody property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.SigningCertificate.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.SigningCertificate.WithUploadDate(System.DateTime)">
- <summary>
- Sets the UploadDate property
- </summary>
- <param name="uploadDate">The value to set for the UploadDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.SigningCertificate.UserName">
- <summary>
- Name of the User the signing certificate is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.SigningCertificate.CertificateId">
- <summary>
- The ID for the signing certificate.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>24 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.SigningCertificate.CertificateBody">
- <summary>
- The contents of the signing certificate.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16384</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.SigningCertificate.Status">
- <summary>
- The status of the signing certificate. <c>Active</c> means the key is valid for API calls, while <c>Inactive</c> means it is not.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Active, Inactive</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.SigningCertificate.UploadDate">
- <summary>
- The date when the signing certificate was uploaded.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListUserPoliciesResponse">
- <summary>
- Returns information about the ListUserPoliciesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUserPoliciesResponse.ListUserPoliciesResult">
- <summary>
- Gets and sets the ListUserPoliciesResult property.
- Contains the result of a successful invocation of the ListUserPolicies action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.KeyPairMismatchException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.KeyPairMismatchException.#ctor(System.String)">
- <summary>
- Constructs a new KeyPairMismatchException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetServerCertificateResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- GetServerCertificate action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetServerCertificateResult.WithServerCertificate(Amazon.IdentityManagement.Model.ServerCertificate)">
- <summary>
- Sets the ServerCertificate property
- </summary>
- <param name="serverCertificate">The value to set for the ServerCertificate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetServerCertificateResult.ServerCertificate">
- <summary>
- Information about the server certificate.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteAccessKeyRequest">
- <summary>
- Container for the parameters to the DeleteAccessKey operation.
- <para>Deletes the access key associated with the specified
- User.</para> <para>If you do not specify a User name, IAM determines
- the User name implicitly based on the AWS Access Key ID signing the
- request. Because this action works for access keys under the AWS
- Account, you can use this API to manage root credentials even if the
- AWS Account has no associated Users.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteAccessKey(Amazon.IdentityManagement.Model.DeleteAccessKeyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteAccessKeyRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteAccessKeyRequest.WithAccessKeyId(System.String)">
- <summary>
- Sets the AccessKeyId property
- </summary>
- <param name="accessKeyId">The value to set for the AccessKeyId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteAccessKeyRequest.UserName">
- <summary>
- Name of the User whose key you want to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteAccessKeyRequest.AccessKeyId">
- <summary>
- The Access Key ID for the Access Key ID and Secret Access Key you want to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>16 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateLoginProfileResponse">
- <summary>
- Returns information about the CreateLoginProfileResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateLoginProfileResponse.CreateLoginProfileResult">
- <summary>
- Gets and sets the CreateLoginProfileResult property.
- Contains the result of a successful invocation of the CreateLoginProfile action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.PoliciesUnmarshaller">
- <summary>
- Policies Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeregisterInstancesFromLoadBalancerRequestMarshaller">
- <summary>
- Deregister Instances From Load Balancer Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteLoadBalancer operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerPolicyResultUnmarshaller">
- <summary>
- DeleteLoadBalancerPolicyResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteLoadBalancerPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerListenersResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteLoadBalancerListeners operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerResponse">
- <summary>
- Returns information about the DisableAvailabilityZonesForLoadBalancerResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerResponse.DisableAvailabilityZonesForLoadBalancerResult">
- <summary>
- Gets and sets the DisableAvailabilityZonesForLoadBalancerResult property.
- The output for the DisableAvailabilityZonesForLoadBalancer action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest">
- <summary>
- Container for the parameters to the DisableAvailabilityZonesForLoadBalancer operation.
- <para> Removes the specified EC2 Availability Zones from the set of configured Availability Zones for the LoadBalancer. </para> <para> There
- must be at least one Availability Zone registered with a LoadBalancer at all times. A client cannot remove all the Availability Zones from a
- LoadBalancer. Once an Availability Zone is removed, all the instances registered with the LoadBalancer that are in the removed Availability
- Zone go into the OutOfService state. Upon Availability Zone removal, the LoadBalancer attempts to equally balance the traffic among its
- remaining usable Availability Zones. Trying to remove an Availability Zone that was not associated with the LoadBalancer does nothing.
- </para> <para><b>NOTE:</b> In order for this call to be successful, the client must have created the LoadBalancer. The client must provide
- the same account credentials as those that were used to create the LoadBalancer. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DisableAvailabilityZonesForLoadBalancer(Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest.#ctor">
- <summary>
- Default constructor for a new DisableAvailabilityZonesForLoadBalancerRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest.#ctor(System.String,System.Collections.Generic.List{System.String})">
- <summary>
- Constructs a new DisableAvailabilityZonesForLoadBalancerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- <param name="availabilityZones"> A list of Availability Zones to be removed from the LoadBalancer. <note> There must be at least one
- Availability Zone registered with a LoadBalancer at all times. The client cannot remove all the Availability Zones from a LoadBalancer.
- Specified Availability Zones must be in the same Region. </note> </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest.AvailabilityZones">
- <summary>
- A list of Availability Zones to be removed from the LoadBalancer. <note> There must be at least one Availability Zone registered with a
- LoadBalancer at all times. The client cannot remove all the Availability Zones from a LoadBalancer. Specified Availability Zones must be in
- the same Region. </note>
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateEnvironmentRequestMarshaller">
- <summary>
- Update Environment Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ListenerUnmarshaller">
- <summary>
- Listener Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateEnvironmentResultUnmarshaller">
- <summary>
- CreateEnvironmentResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateApplicationVersionResultUnmarshaller">
- <summary>
- CreateApplicationVersionResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TooManyEnvironmentsException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TooManyEnvironmentsException.#ctor(System.String)">
- <summary>
- Constructs a new TooManyEnvironmentsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TooManyBucketsException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TooManyBucketsException.#ctor(System.String)">
- <summary>
- Constructs a new TooManyBucketsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.S3Location">
- <summary>
- <para>A specification of a location in Amazon S3.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.S3Location.WithS3Bucket(System.String)">
- <summary>
- Sets the S3Bucket property
- </summary>
- <param name="s3Bucket">The value to set for the S3Bucket property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.S3Location.WithS3Key(System.String)">
- <summary>
- Sets the S3Key property
- </summary>
- <param name="s3Key">The value to set for the S3Key property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.S3Location.S3Bucket">
- <summary>
- The Amazon S3 bucket where the data is located.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.S3Location.S3Key">
- <summary>
- The Amazon S3 key where the data is located.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.LaunchConfiguration">
- <summary>
- <para>Describes an Auto Scaling launch configuration.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.LaunchConfiguration.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.LaunchConfiguration.Name">
- <summary>
- The name of the launch configuration.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.EnvironmentResourcesDescription">
- <summary>
- <para>Describes the AWS resources in use by this environment. This data is not live data.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourcesDescription.WithLoadBalancer(Amazon.ElasticBeanstalk.Model.LoadBalancerDescription)">
- <summary>
- Sets the LoadBalancer property
- </summary>
- <param name="loadBalancer">The value to set for the LoadBalancer property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentResourcesDescription.LoadBalancer">
- <summary>
- Describes the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResult">
- <summary>
- <para>Describes the settings for a specified configuration set.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResult.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResult.WithOptions(Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription[])">
- <summary>
- Adds elements to the Options collection
- </summary>
- <param name="options">The values to add to the Options collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResult.WithOptions(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription})">
- <summary>
- Adds elements to the Options collection
- </summary>
- <param name="options">The values to add to the Options collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResult.SolutionStackName">
- <summary>
- The name of the solution stack these configuration options belong to.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResult.Options">
- <summary>
- A list of <a>ConfigurationOptionDescription</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateStorageLocationResponse">
- <summary>
- Returns information about the CreateStorageLocationResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateStorageLocationResponse.CreateStorageLocationResult">
- <summary>
- Gets and sets the CreateStorageLocationResult property.
- Results of a CreateStorageLocationResult call.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Util.S3UploadPolicy">
- <summary>
- This class represents S3 upload policy. Policy string
- representaion and signature to be used within EC2 bundling API.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Util.S3UploadPolicy.#ctor(System.String,System.Security.SecureString,System.String,System.String,System.Int32)">
- <summary>
- S3 Upload policy to be used by EC2 API.
- </summary>
- <param name="awsAccessKeyId">Access Key Id of the signer of the policy</param>
- <param name="awsSecretAccessKey">Secret Key of the signer of the policy</param>
- <param name="bucketName">Bucket name to upload</param>
- <param name="prefix">Prefix for the object keys</param>
- <param name="expireInMinutes">Expire, minutes from now</param>
- </member>
- <member name="M:Amazon.EC2.Util.S3UploadPolicy.#ctor(System.String,System.String,System.String,System.Int32)">
- <summary>
- S3 Upload policy to be used by EC2 API.
- </summary>
- <param name="awsSecretAccessKey">Secret Key of the signer of the policy</param>
- <param name="bucketName">Bucket name to upload</param>
- <param name="prefix">Prefix for the object keys</param>
- <param name="expireInMinutes">Expire, minutes from now</param>
- </member>
- <member name="P:Amazon.EC2.Util.S3UploadPolicy.PolicyString">
- <summary>
- Base64 representation of the serialized policy.
- Use policy generated by this method
- for passing to EC2 bunding calls.
- </summary>
- <returns>Base64 policy</returns>
- </member>
- <member name="P:Amazon.EC2.Util.S3UploadPolicy.PolicySignature">
- <summary>
- Policy signature in base64 format
- Use signature generated by this method
- for passing to EC2 bunding calls along with policy.
- </summary>
- <returns>Base64 signature</returns>
- </member>
- <member name="T:Amazon.EC2.Model.UnmonitorInstancesResult">
- <summary>
- Unmonitor Instances Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesResult.IsSetInstanceMonitoring">
- <summary>
- Checks if InstanceMonitoring property is set
- </summary>
- <returns>true if InstanceMonitoring property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.UnmonitorInstancesResult.InstanceMonitoring">
- <summary>
- Gets and sets the InstanceMonitoring property.
- Instance monitoring information
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.TerminateInstancesRequest">
- <summary>
- Shuts down one or more instances. This operation
- is idempotent; if you
- terminate an instance more than once, each
- call will succeed.
-
- Terminated instances will remain visible after
- termination (approximately one hour).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesRequest.WithInstanceId(System.String[])">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="list">Instance ID to terminate.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.TerminateInstancesRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance ID to terminate.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Storage">
- <summary>
- Storage
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Storage.WithS3(Amazon.EC2.Model.S3Storage)">
- <summary>
- Sets the S3 property
- </summary>
- <param name="s3">S3 Storage</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Storage.IsSetS3">
- <summary>
- Checks if S3 property is set
- </summary>
- <returns>true if S3 property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Storage.S3">
- <summary>
- Gets and sets the S3 property.
- S3 Storage
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ModifySnapshotAttributeResponse">
- <summary>
- Modify Snapshot Attribute Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ModifySnapshotAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.LicenseCapacity">
- <summary>
- Represents the capacity that a license is able to support.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.WithCapacity(System.Decimal)">
- <summary>
- Sets the Capacity property
- </summary>
- <param name="capacity">The number of licenses available.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.IsSetCapacity">
- <summary>
- Checks if Capacity property is set
- </summary>
- <returns>true if Capacity property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.WithInstanceCapacity(System.Decimal)">
- <summary>
- Sets the InstanceCapacity property
- </summary>
- <param name="instanceCapacity">The number of Amazon EC2 instances that can be
- supported with the
- license's capacity.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.IsSetInstanceCapacity">
- <summary>
- Checks if InstanceCapacity property is set
- </summary>
- <returns>true if InstanceCapacity property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The state of this license capacity,
- indicating
- whether the license is actively being used or not.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.WithEarliestAllowedDeactivationTime(System.String)">
- <summary>
- Sets the EarliestAllowedDeactivationTime property
- </summary>
- <param name="earliestAllowedDeactivationTime">The earliest allowed time at which a license
- can be deactivated.
- Some licenses have time restrictions on when
- they can be activated and reactivated.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LicenseCapacity.IsSetEarliestAllowedDeactivationTime">
- <summary>
- Checks if EarliestAllowedDeactivationTime property is set
- </summary>
- <returns>true if EarliestAllowedDeactivationTime property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.LicenseCapacity.Capacity">
- <summary>
- Gets and sets the Capacity property.
- The number of licenses available.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LicenseCapacity.InstanceCapacity">
- <summary>
- Gets and sets the InstanceCapacity property.
- The number of Amazon EC2 instances that can be
- supported with the
- license's capacity.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LicenseCapacity.State">
- <summary>
- Gets and sets the State property.
- The state of this license capacity,
- indicating
- whether the license is actively being used or not.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LicenseCapacity.EarliestAllowedDeactivationTime">
- <summary>
- Gets and sets the EarliestAllowedDeactivationTime property.
- The earliest allowed time at which a license
- can be deactivated.
- Some licenses have time restrictions on when
- they can be activated and reactivated.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.GetPasswordDataResponse">
- <summary>
- Get Password Data Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResponse.IsSetGetPasswordDataResult">
- <summary>
- Checks if GetPasswordDataResult property is set
- </summary>
- <returns>true if GetPasswordDataResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.GetPasswordDataResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.GetPasswordDataResponse.GetPasswordDataResult">
- <summary>
- Gets and sets the GetPasswordDataResult property.
- Get Password Data Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Error">
- <summary>
- Error
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Error.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">Type of error</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Error.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Error.WithCode(System.String)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">Error code</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Error.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Error.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">Error message</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Error.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Error.WithDetail(System.Object)">
- <summary>
- Sets the Detail property
- </summary>
- <param name="detail">Details</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Error.IsSetDetail">
- <summary>
- Checks if Detail property is set
- </summary>
- <returns>true if Detail property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Error.Type">
- <summary>
- Gets and sets the Type property.
- Type of error
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Error.Code">
- <summary>
- Gets and sets the Code property.
- Error code
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Error.Message">
- <summary>
- Gets and sets the Message property.
- Error message
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Error.Detail">
- <summary>
- Gets and sets the Detail property.
- Details
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpnConnectionsResult">
- <summary>
- Describe Vpn Connections Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsResult.IsSetVpnConnection">
- <summary>
- Checks if VpnConnection property is set
- </summary>
- <returns>true if VpnConnection property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnConnectionsResult.VpnConnection">
- <summary>
- Gets and sets the VpnConnection property.
- List of vpn connections
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotInstanceRequestsResult">
- <summary>
- The Result of the Describe Spot Instances
- operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsResult.IsSetSpotInstanceRequest">
- <summary>
- Checks if SpotInstanceRequest property is set
- </summary>
- <returns>true if SpotInstanceRequest property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotInstanceRequestsResult.SpotInstanceRequest">
- <summary>
- Gets and sets the SpotInstanceRequest property.
- A list of the SpotInstanceRequest objects
- returned by the service.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest">
- <summary>
- Describes Reserved Instance offerings that are
- available for purchase. With Amazon EC2
- Reserved Instances, you
- purchase the right to launch Amazon EC2 instances
- for a period of time (without getting
- insufficient capacity errors) and pay a
- lower usage rate for the
- actual time used. For more information
- about Reserved Instances, go to the Amazon
- Elastic Compute Cloud Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.WithReservedInstancesId(System.String[])">
- <summary>
- Sets the ReservedInstancesId property
- </summary>
- <param name="list">ID of the Reserved Instances to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.IsSetReservedInstancesId">
- <summary>
- Checks if ReservedInstancesId property is set
- </summary>
- <returns>true if ReservedInstancesId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The instance type on which the Reserved
- Instance can be used.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone in which the Reserved
- Instance can be used.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The Reserved Instance description.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.IsSetProductDescription">
- <summary>
- Checks if ProductDescription property is set
- </summary>
- <returns>true if ProductDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags
- associated with the specified ReservedInstances.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.ReservedInstancesId">
- <summary>
- Gets and sets the ReservedInstancesId property.
- ID of the Reserved Instances to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- The instance type on which the Reserved
- Instance can be used.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone in which the Reserved
- Instance can be used.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.ProductDescription">
- <summary>
- Gets and sets the ProductDescription property.
- The Reserved Instance description.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags
- associated with the specified ReservedInstances.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeNetworkAclsResponse">
- <summary>
- The Response for the
- DescribeNetworkAcls operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsResponse.IsSetDescribeNetworkAclsResult">
- <summary>
- Checks if DescribeNetworkAclsResult property is set
- </summary>
- <returns>true if DescribeNetworkAclsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeNetworkAclsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeNetworkAclsResponse.DescribeNetworkAclsResult">
- <summary>
- Gets and sets the DescribeNetworkAclsResult property.
- DescribeNetworkAcls Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeKeyPairsResult">
- <summary>
- Describe Key Pairs Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsResult.IsSetKeyPair">
- <summary>
- Checks if KeyPair property is set
- </summary>
- <returns>true if KeyPair property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeKeyPairsResult.KeyPair">
- <summary>
- Gets and sets the KeyPair property.
- List of key pairs
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeDhcpOptionsResponse">
- <summary>
- Describe Dhcp Options Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsResponse.IsSetDescribeDhcpOptionsResult">
- <summary>
- Checks if DescribeDhcpOptionsResult property is set
- </summary>
- <returns>true if DescribeDhcpOptionsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeDhcpOptionsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeDhcpOptionsResponse.DescribeDhcpOptionsResult">
- <summary>
- Gets and sets the DescribeDhcpOptionsResult property.
- Describe Dhcp Options Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVolumeResponse">
- <summary>
- Delete Volume Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVolumeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVolumeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVolumeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVolumeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteNetworkAclEntryRequest">
- <summary>
- Deletes an ingress or egress entry (i.e., rule) from a network ACL. For more information about network
- ACLs, go to Network ACLs in the Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.WithNetworkAclId(System.String)">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="networkAclId">ID of the network ACL.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.WithRuleNumber(System.Decimal)">
- <summary>
- Sets the RuleNumber property
- </summary>
- <param name="ruleNumber">Rule number for the entry to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.IsSetRuleNumber">
- <summary>
- Checks if RuleNumber property is set
- </summary>
- <returns>true if RuleNumber property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.WithEgress(System.Boolean)">
- <summary>
- Sets the Egress property
- </summary>
- <param name="egress">Whether the rule to delete is an egress rule (true) or
- ingress rule (false).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.IsSetEgress">
- <summary>
- Checks if Egress property is set
- </summary>
- <returns>true if Egress property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- ID of the network ACL.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.RuleNumber">
- <summary>
- Gets and sets the RuleNumber property.
- Rule number for the entry to delete.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteNetworkAclEntryRequest.Egress">
- <summary>
- Gets and sets the Egress property.
- Whether the rule to delete is an egress rule (true) or
- ingress rule (false).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVolumePermission">
- <summary>
- Creat Volume Permission
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumePermission.WithUserId(System.String)">
- <summary>
- Sets the UserId property
- </summary>
- <param name="userId">User ID of a user that can create volumes from
- the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumePermission.IsSetUserId">
- <summary>
- Checks if UserId property is set
- </summary>
- <returns>true if UserId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumePermission.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Group that is allowed to create volumes from
- the snapshot (currently supports "all").</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumePermission.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumePermission.UserId">
- <summary>
- Gets and sets the UserId property.
- User ID of a user that can create volumes from
- the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumePermission.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Group that is allowed to create volumes from
- the snapshot (currently supports "all").
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateTagsResponse">
- <summary>
- The Response for the
- CreateTagsResponse operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateTagsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateTagsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateTagsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateTagsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSecurityGroupRequest">
- <summary>
- Creates a new security group. Group names must be
- unique per account.
-
- Every instance is launched in a security group.
- If no security group is specified during launch,
- the instances are launched in the default security group.
- Instances within the same security group have unrestricted network
- access to each other. Instances will reject network access attempts from
- other instances in a different security group. As the owner of instances you
- can grant or revoke specific permissions using the
- AuthorizeSecurityGroupIngress and RevokeSecurityGroupIngress
- operations
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="groupId">Id of the standard (EC2) or VPC security group to modify. Conditional
- The group must belong to your account.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Name of the security group.
-
- Constraints:
- Accepts alphanumeric characters, spaces, dashes, and
- underscores.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.WithGroupDescription(System.String)">
- <summary>
- Sets the GroupDescription property
- </summary>
- <param name="groupDescription">Description of the group.
-
- Constraints: Accepts
- alphanumeric characters, spaces, dashes, and
- underscores.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.IsSetGroupDescription">
- <summary>
- Checks if GroupDescription property is set
- </summary>
- <returns>true if GroupDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">ID of the VPC.
-
- Condition: Required for VPC security groups</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSecurityGroupRequest.GroupId">
- <summary>
- Gets and sets the GroupId property.
- Id of the standard (EC2) or VPC security group to modify. Conditional
- The group must belong to your account.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSecurityGroupRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the security group.
-
- Constraints:
- Accepts alphanumeric characters, spaces, dashes, and
- underscores.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSecurityGroupRequest.GroupDescription">
- <summary>
- Gets and sets the GroupDescription property.
- Description of the group.
-
- Constraints: Accepts
- alphanumeric characters, spaces, dashes, and
- underscores.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSecurityGroupRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- ID of the VPC.
-
- Condition: Required for VPC security groups
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreatePlacementGroupRequest">
- <summary>
- Creates a PlacementGroup into which multiple Amazon EC2
- instances can be launched. Users must give the group a
- name unique within the scope of the user account.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreatePlacementGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The name of the PlacementGroup.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreatePlacementGroupRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreatePlacementGroupRequest.WithStrategy(System.String)">
- <summary>
- Sets the Strategy property
- </summary>
- <param name="strategy">The PlacementGroup strategy.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreatePlacementGroupRequest.IsSetStrategy">
- <summary>
- Checks if Strategy property is set
- </summary>
- <returns>true if Strategy property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreatePlacementGroupRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- The name of the PlacementGroup.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreatePlacementGroupRequest.Strategy">
- <summary>
- Gets and sets the Strategy property.
- The PlacementGroup strategy.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateInternetGatewayResult">
- <summary>
- CreateInternetGateway Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateInternetGatewayResult.IsSetInternetGateway">
- <summary>
- Checks if InternetGateway property is set
- </summary>
- <returns>true if InternetGateway property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateInternetGatewayResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateInternetGatewayResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateInternetGatewayResult.InternetGateway">
- <summary>
- Gets and sets the InternetGateway property.
- Information about the Internet gateway
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateCustomerGatewayResult">
- <summary>
- Create Customer Gateway Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayResult.IsSetCustomerGateway">
- <summary>
- Checks if CustomerGateway property is set
- </summary>
- <returns>true if CustomerGateway property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateCustomerGatewayResult.CustomerGateway">
- <summary>
- Gets and sets the CustomerGateway property.
- Customer gateway
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.BundleTask">
- <summary>
- Bundle Task
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">Instance associated with this bundle task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithBundleId(System.String)">
- <summary>
- Sets the BundleId property
- </summary>
- <param name="bundleId">Identifier for this task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetBundleId">
- <summary>
- Checks if BundleId property is set
- </summary>
- <returns>true if BundleId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithBundleState(System.String)">
- <summary>
- Sets the BundleState property
- </summary>
- <param name="bundleState">The state of the task.
-
- Valid Values: pending |
- waiting-for-shutdown | storing | canceling |
- complete | failed</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetBundleState">
- <summary>
- Checks if BundleState property is set
- </summary>
- <returns>true if BundleState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithStartTime(System.String)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The time this task started.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetStartTime">
- <summary>
- Checks if StartTime property is set
- </summary>
- <returns>true if StartTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithUpdateTime(System.String)">
- <summary>
- Sets the UpdateTime property
- </summary>
- <param name="updateTime">The time of the most recent update for the
- task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetUpdateTime">
- <summary>
- Checks if UpdateTime property is set
- </summary>
- <returns>true if UpdateTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithStorage(Amazon.EC2.Model.Storage)">
- <summary>
- Sets the Storage property
- </summary>
- <param name="storage">Amazon S3 storage locations.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetStorage">
- <summary>
- Checks if Storage property is set
- </summary>
- <returns>true if Storage property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithProgress(System.String)">
- <summary>
- Sets the Progress property
- </summary>
- <param name="progress">The level of task completion, in percent
- (e.g., 20%).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetProgress">
- <summary>
- Checks if Progress property is set
- </summary>
- <returns>true if Progress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.WithBundleTaskError(Amazon.EC2.Model.BundleTaskError)">
- <summary>
- Sets the BundleTaskError property
- </summary>
- <param name="bundleTaskError">If the task fails, a description of the error.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTask.IsSetBundleTaskError">
- <summary>
- Checks if BundleTaskError property is set
- </summary>
- <returns>true if BundleTaskError property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance associated with this bundle task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.BundleId">
- <summary>
- Gets and sets the BundleId property.
- Identifier for this task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.BundleState">
- <summary>
- Gets and sets the BundleState property.
- The state of the task.
-
- Valid Values: pending |
- waiting-for-shutdown | storing | canceling |
- complete | failed
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.StartTime">
- <summary>
- Gets and sets the StartTime property.
- The time this task started.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.UpdateTime">
- <summary>
- Gets and sets the UpdateTime property.
- The time of the most recent update for the
- task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.Storage">
- <summary>
- Gets and sets the Storage property.
- Amazon S3 storage locations.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.Progress">
- <summary>
- Gets and sets the Progress property.
- The level of task completion, in percent
- (e.g., 20%).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTask.BundleTaskError">
- <summary>
- Gets and sets the BundleTaskError property.
- If the task fails, a description of the error.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachVpnGatewayResult">
- <summary>
- Attach VpnGateway Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayResult.IsSetVpcAttachment">
- <summary>
- Checks if VpcAttachment property is set
- </summary>
- <returns>true if VpcAttachment property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVpnGatewayResult.VpcAttachment">
- <summary>
- Gets and sets the VpcAttachment property.
- VPC Attachment
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AllocateAddressRequest">
- <summary>
- Acquires an elastic IP address for use with your account.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressRequest.WithDomain(System.String)">
- <summary>
- Sets the Domain property
- </summary>
- <param name="domain">Set to vpc to allocate the address to your VPC.
-
- Default: Address is standard (allocated to EC2)
- Valid Values: vpc | standard
- Condition: Required when allocating an address to a VPC</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressRequest.IsSetDomain">
- <summary>
- Checks if Domain property is set
- </summary>
- <returns>true if Domain property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AllocateAddressRequest.Domain">
- <summary>
- Gets and sets the Domain property.
- Set to vpc to allocate the address to your VPC.
-
- Default: Address is standard (allocated to EC2)
- Valid Values: vpc | standard
- Condition: Required when allocating an address to a VPC
- </summary>
- </member>
- <member name="T:Amazon.EC2.AmazonEC2Exception">
- <summary>
- Amazon EC2 Exception provides details of errors
- returned by Amazon EC2 service
- </summary>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.#ctor">
- <summary>
- Initializes a new AmazonEC2Exception with default values.
- </summary>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.#ctor(System.String)">
- <summary>
- Initializes a new AmazonEC2Exception with a specified
- error message
- </summary>
- <param name="message">A message that describes the error</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.#ctor(System.String,System.Net.HttpStatusCode)">
- <summary>
- Initializes a new AmazonEC2Exception with a specified error message
- and HTTP status code
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.#ctor(System.Exception)">
- <summary>
- Initializes a new AmazonEC2Exception from the inner exception that is
- the cause of this exception.
- </summary>
- <param name="innerException">The nested exception that caused the AmazonEC2Exception</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new AmazonEC2Exception with serialized data.
- </summary>
- <param name="info">The object that holds the serialized object data.
- </param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Serializes this instance of AmazonEC2Exception.
- </summary>
- <param name="info">The object that holds the serialized object data.</param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.#ctor(System.String,System.Exception)">
- <summary>
- Constructs AmazonEC2Exception with message and wrapped exception
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="innerException">The nested exception that caused the AmazonS3Exception</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Exception.#ctor(System.String,System.Net.HttpStatusCode,System.String,System.String,System.String,System.String)">
- <summary>
- Initializes an AmazonEC2Exception with error information provided in an
- AmazonEC2 response.
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="errorCode">Error Code returned by the service</param>
- <param name="errorType">Error type. Possible types: Sender, Receiver or Unknown</param>
- <param name="requestId">Request ID returned by the service</param>
- <param name="xml">Compete xml found in response</param>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Exception.ErrorCode">
- <summary>
- Gets and sets of the ErrorCode property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Exception.ErrorType">
- <summary>
- Gets and sets of the ErrorType property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Exception.Message">
- <summary>
- Gets error message
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Exception.StatusCode">
- <summary>
- Gets status code returned by the service if available. If status
- code is set to -1, it means that status code was unavailable at the
- time exception was thrown
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Exception.XML">
- <summary>
- Gets XML returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Exception.RequestId">
- <summary>
- Gets Request ID returned by the service if available.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.PutMetricDataRequestMarshaller">
- <summary>
- Put Metric Data Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.ListMetricsRequestMarshaller">
- <summary>
- List Metrics Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DisableAlarmActionsRequestMarshaller">
- <summary>
- Disable Alarm Actions Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.InvalidFormatException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.InvalidFormatException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidFormatException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigResponse">
- <summary>
- The SetOriginAccessIdentityConfigResponse contains the Origin Access Identity's modified
- information structure along with any other headers returned by
- CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Distribution's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetStreamingDistributionInfoResponse">
- <summary>
- The GetStreamingDistributionInfoResponse contains all the information about the
- GetStreamingDistributionInfo operation and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetStreamingDistributionInfoResponse.StreamingDistribution">
- <summary>
- Gets and sets the StreamingDistribution property.
- This contains all the information (including the configuration) for a
- cloudfront StreamingDistribution.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetStreamingDistributionInfoResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Streaming Distribution's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CreateDistributionResponse">
- <summary>
- The CreateDistributionResponse contains any headers and the Distribution Config
- for the distribution created.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateDistributionResponse.Distribution">
- <summary>
- Gets and sets the Distribution property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateDistributionResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Distribution's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CreateStreamingDistributionResponse">
- <summary>
- The CreateStreamingDistributionResponse contains any headers and the StreamingDistribution Config
- for the distribution created.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateStreamingDistributionResponse.StreamingDistribution">
- <summary>
- Gets and sets the StreamingDistribution property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateStreamingDistributionResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Streaming Distribution's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontStreamingDistribution">
- <summary>
- Describes a CloudFront Streaming Distribution.
- It is used as a response element when Creating a Distribution and Getting a Distribution's Information.
- <para>A distribution consists of the following items:
- <list type="number">
- <item>Id</item>
- <item>Status</item>
- <item>Last Modified Timestamp</item>
- <item>Domain Name</item>
- <item>The Configuration for the Distribution</item>
- </list></para>
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionDatatype.html"/>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontDistributionBase">
- <summary>
- The DistributionBase contains the common elements of a CloudFront distribution.
- <para>The shared elements are:
- <list type="number">
- <item>Id</item>
- <item>Status</item>
- <item>Last Modified Timestamp</item>
- <item>Domain Name</item>
- <item>The Configuration for the Distribution</item>
- </list>
- </para>
- For more information, please visit:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionDatatype.html"/><br />
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionBase.IsSetId">
- <summary>
- Checks if Id property is set.
- </summary>
- <returns>true if Id property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionBase.IsSetStatus">
- <summary>
- Checks if Status property is set.
- </summary>
- <returns>true if Status property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionBase.IsSetLastModifiedTime">
- <summary>
- Checks if LastModifiedTime property is set.
- </summary>
- <returns>true if LastModifiedTime property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionBase.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionBase.IsSetETag">
- <summary>
- Checks if the ETag property is set.
- </summary>
- <returns>true if ETag property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionBase.IsSetActiveTrustedSigners">
- <summary>
- Checks if ActiveTrustedSigners property is set.
- </summary>
- <returns>true if ActiveTrustedSigners property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionBase.ToString">
- <summary>
- Returns the string representation of the distribution.
- </summary>
- <returns>
- A string representing the distribution
- </returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionBase.Id">
- <summary>
- Gets and sets the Id property. This is the Id returned by CloudFront
- when the distribution is created and is unique to the Distribution.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionBase.Status">
- <summary>
- Gets and sets the Status property.
- The current status of the Distribution can either be Deployed or In Progres
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionBase.LastModifiedTime">
- <summary>
- Gets and sets the LastModifiedTime property.
- The date and time the distribution was last modified. The
- string returned is the GMT representation of DateTime.
- The date is in the format YYYY-MM-DDThh:mm:ssZ, as specified in the
- ISO 8601 standard (e.g., 2008-07-24T19:37:58Z)
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionBase.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The domain name corresponding to the distribution. For example,
- e604721fxaaqy9.cloudfront.net.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionBase.ETag">
- <summary>
- Gets and sets the ETag property of this
- Distribution's information.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionBase.ActiveTrustedSigners">
- <summary>
- Gets and sets the ActiveTrustedSigners property.
- This specifies any AWS accounts you want to permit to create signed URLs for private content.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistribution.IsSetConfig">
- <summary>
- Checks if StreamingDistributionConfig property is set
- </summary>
- <returns>true if StreamingDistributionConfig property is set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontStreamingDistribution.StreamingDistributionConfig">
- <summary>
- Gets and sets the Streaming Distribution's Configuration.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.GetTemplateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetTemplate operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.CreateStackRequestMarshaller">
- <summary>
- Create Stack Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ListStackResourcesResponse">
- <summary>
- Returns information about the ListStackResourcesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ListStackResourcesResponse.ListStackResourcesResult">
- <summary>
- Gets and sets the ListStackResourcesResult property.
- The output for a ListStackResources action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackResourcesResult">
- <summary>
- <para> The output for a DescribeStackResources action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourcesResult.WithStackResources(Amazon.CloudFormation.Model.StackResource[])">
- <summary>
- Adds elements to the StackResources collection
- </summary>
- <param name="stackResources">The values to add to the StackResources collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourcesResult.WithStackResources(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.StackResource})">
- <summary>
- Adds elements to the StackResources collection
- </summary>
- <param name="stackResources">The values to add to the StackResources collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourcesResult.StackResources">
- <summary>
- A list of <c>StackResource</c> structures.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.SuspendedProcessUnmarshaller">
- <summary>
- SuspendedProcess Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ScalingPolicyUnmarshaller">
- <summary>
- ScalingPolicy Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScalingActivitiesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeScalingActivities operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScalingActivitiesRequestMarshaller">
- <summary>
- Describe Scaling Activities Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeLaunchConfigurationsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeLaunchConfigurations operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteLaunchConfigurationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteLaunchConfiguration operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.AutoScalingGroupUnmarshaller">
- <summary>
- AutoScalingGroup Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.AlarmUnmarshaller">
- <summary>
- Alarm Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ResumeProcessesRequest">
- <summary>
- Container for the parameters to the ResumeProcesses operation.
- <para> Resumes Auto Scaling processes for an Auto Scaling group. For more information, see SuspendProcesses and ProcessType. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.ResumeProcesses(Amazon.AutoScaling.Model.ResumeProcessesRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ResumeProcessesRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ResumeProcessesRequest.WithScalingProcesses(System.String[])">
- <summary>
- Adds elements to the ScalingProcesses collection
- </summary>
- <param name="scalingProcesses">The values to add to the ScalingProcesses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ResumeProcessesRequest.WithScalingProcesses(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ScalingProcesses collection
- </summary>
- <param name="scalingProcesses">The values to add to the ScalingProcesses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ResumeProcessesRequest.AutoScalingGroupName">
- <summary>
- The name or Amazon Resource Name (ARN) of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ResumeProcessesRequest.ScalingProcesses">
- <summary>
- The processes that you want to suspend or resume, which can include one or more of the following: <ul> <li>Launch</li> <li>Terminate</li>
- <li>HealthCheck</li> <li>ReplaceUnhealthy</li> <li>AZRebalance</li> <li>AlarmNotifications</li> <li>ScheduledActions</li> </ul> To suspend
- all process types, omit this parameter.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.LaunchConfiguration">
- <summary>
- <para> The LaunchConfiguration data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithLaunchConfigurationARN(System.String)">
- <summary>
- Sets the LaunchConfigurationARN property
- </summary>
- <param name="launchConfigurationARN">The value to set for the LaunchConfigurationARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">The value to set for the ImageId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">The value to set for the KeyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithSecurityGroups(System.String[])">
- <summary>
- Adds elements to the SecurityGroups collection
- </summary>
- <param name="securityGroups">The values to add to the SecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithSecurityGroups(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the SecurityGroups collection
- </summary>
- <param name="securityGroups">The values to add to the SecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithUserData(System.String)">
- <summary>
- Sets the UserData property
- </summary>
- <param name="userData">The value to set for the UserData property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The value to set for the InstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">The value to set for the KernelId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">The value to set for the RamdiskId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithBlockDeviceMappings(Amazon.AutoScaling.Model.BlockDeviceMapping[])">
- <summary>
- Adds elements to the BlockDeviceMappings collection
- </summary>
- <param name="blockDeviceMappings">The values to add to the BlockDeviceMappings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithBlockDeviceMappings(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.BlockDeviceMapping})">
- <summary>
- Adds elements to the BlockDeviceMappings collection
- </summary>
- <param name="blockDeviceMappings">The values to add to the BlockDeviceMappings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithInstanceMonitoring(Amazon.AutoScaling.Model.InstanceMonitoring)">
- <summary>
- Sets the InstanceMonitoring property
- </summary>
- <param name="instanceMonitoring">The value to set for the InstanceMonitoring property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LaunchConfiguration.WithCreatedTime(System.DateTime)">
- <summary>
- Sets the CreatedTime property
- </summary>
- <param name="createdTime">The value to set for the CreatedTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.LaunchConfigurationName">
- <summary>
- Specifies the name of the launch configuration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.LaunchConfigurationARN">
- <summary>
- The launch configuration's Amazon Resource Name (ARN).
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.ImageId">
- <summary>
- Provides the unique ID of the <i>Amazon Machine Image</i> (AMI) that was assigned during registration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.KeyName">
- <summary>
- Provides the name of the EC2 key pair.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.SecurityGroups">
- <summary>
- A description of the security groups to associate with the EC2 instances.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.UserData">
- <summary>
- The user data available to the launched EC2 instances.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 21847</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.InstanceType">
- <summary>
- Specifies the instance type of the EC2 instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.KernelId">
- <summary>
- Provides the ID of the kernel associated with the EC2 AMI.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.RamdiskId">
- <summary>
- Provides ID of the RAM disk associated with the EC2 AMI.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.BlockDeviceMappings">
- <summary>
- Specifies how block devices are exposed to the instance. Each mapping is made up of a <i>virtualName</i> and a <i>deviceName</i>.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.InstanceMonitoring">
- <summary>
- Controls whether instances in this group are launched with detailed monitoring or not.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.LaunchConfiguration.CreatedTime">
- <summary>
- Provides the creation date and time for this launch configuration.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Instance">
- <summary>
- <para> The Instance data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Instance.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The value to set for the InstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Instance.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Instance.WithLifecycleState(System.String)">
- <summary>
- Sets the LifecycleState property
- </summary>
- <param name="lifecycleState">The value to set for the LifecycleState property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Instance.WithHealthStatus(System.String)">
- <summary>
- Sets the HealthStatus property
- </summary>
- <param name="healthStatus">The value to set for the HealthStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Instance.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Instance.InstanceId">
- <summary>
- Specifies the EC2 instance ID.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Instance.AvailabilityZone">
- <summary>
- Availability zones associated with this instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Instance.LifecycleState">
- <summary>
- Contains a description of the current <i>lifecycle</i> state.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Instance.HealthStatus">
- <summary>
- The instance's health status.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Instance.LaunchConfigurationName">
- <summary>
- The launch configuration associated with this instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.AmazonAutoScalingClient">
- <summary>
- Implemenation for accessing AmazonAutoScaling.
-
- Auto Scaling <para> Auto Scaling is a web service designed to automatically launch or terminate EC2 instances based on user-defined
- policies, schedules, and health checks. Auto Scaling responds automatically to changing conditions. All you need to do is specify how it
- should respond to those changes. </para> <para> Auto Scaling groups can work across multiple Availability Zones - distinct physical
- locations for the hosted Amazon EC2 instances - so that if an Availability Zone becomes unavailable, Auto Scaling will automatically
- redistribute applications to a different Availability Zone. </para> <para> Every API call returns a response meta data object that contains
- a request identifier. Successful requests return an HTTP 200 status code. Unsuccessful requests return an error object and an HTTP status
- code of 400 or 500. </para> <para>The current WSDL is available at:</para> <para>
- http://autoscaling.amazonaws.com/doc/2011-01-01/AutoScaling.wsdl </para> <para> <b>Endpoints</b> </para> <para>For information about this
- product's regions and endpoints, go to Regions and Endpoints in the Amazon Web Services General Reference. </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.AmazonAutoScaling">
- <summary>
- Interface for accessing AmazonAutoScaling.
-
- Auto Scaling <para> Auto Scaling is a web service designed to automatically launch or terminate EC2 instances based on user-defined
- policies, schedules, and health checks. Auto Scaling responds automatically to changing conditions. All you need to do is specify how it
- should respond to those changes. </para> <para> Auto Scaling groups can work across multiple Availability Zones - distinct physical
- locations for the hosted Amazon EC2 instances - so that if an Availability Zone becomes unavailable, Auto Scaling will automatically
- redistribute applications to a different Availability Zone. </para> <para> Every API call returns a response meta data object that contains
- a request identifier. Successful requests return an HTTP 200 status code. Unsuccessful requests return an error object and an HTTP status
- code of 400 or 500. </para> <para>The current WSDL is available at:</para> <para>
- http://autoscaling.amazonaws.com/doc/2011-01-01/AutoScaling.wsdl </para> <para> <b>Endpoints</b> </para> <para>For information about this
- product's regions and endpoints, go to Regions and Endpoints in the Amazon Web Services General Reference. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAutoScalingGroups(Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest)">
- <summary>
- <para> Returns a full description of each Auto Scaling group in the given list. This includes all Amazon EC2 instances that are members of
- the group. If a list of names is not provided, the service returns the full details of all Auto Scaling groups. </para> <para> This action
- supports pagination by returning a token if there are more pages to retrieve. To get the next page, call this action again with the returned
- token as the NextToken parameter. </para>
- </summary>
-
- <param name="describeAutoScalingGroupsRequest">Container for the necessary parameters to execute the DescribeAutoScalingGroups service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAutoScalingGroups service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.EnableMetricsCollection(Amazon.AutoScaling.Model.EnableMetricsCollectionRequest)">
- <summary>
- <para> Enables monitoring of group metrics for the Auto Scaling group specified in AutoScalingGroupName. You can specify the list of enabled
- metrics with the Metrics parameter. </para> <para> Auto scaling metrics collection can be turned on only if the
- <c>InstanceMonitoring.Enabled</c> flag, in the Auto Scaling group's launch configuration, is set to <c>true</c> .
- </para>
- </summary>
-
- <param name="enableMetricsCollectionRequest">Container for the necessary parameters to execute the EnableMetricsCollection service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.ResumeProcesses(Amazon.AutoScaling.Model.ResumeProcessesRequest)">
- <summary>
- <para> Resumes Auto Scaling processes for an Auto Scaling group. For more information, see SuspendProcesses and ProcessType. </para>
- </summary>
-
- <param name="resumeProcessesRequest">Container for the necessary parameters to execute the ResumeProcesses service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteLaunchConfiguration(Amazon.AutoScaling.Model.DeleteLaunchConfigurationRequest)">
- <summary>
- <para> Deletes the specified LaunchConfiguration. </para> <para> The specified launch configuration must not be attached to an Auto Scaling
- group. Once this call completes, the launch configuration is no longer available for use. </para>
- </summary>
-
- <param name="deleteLaunchConfigurationRequest">Container for the necessary parameters to execute the DeleteLaunchConfiguration service
- method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ResourceInUseException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribePolicies(Amazon.AutoScaling.Model.DescribePoliciesRequest)">
- <summary>
- <para> Returns descriptions of what each policy does. This action supports pagination. If the response includes a token, there are more
- records available. To get the additional records, repeat the request with the response token as the NextToken parameter. </para>
- </summary>
-
- <param name="describePoliciesRequest">Container for the necessary parameters to execute the DescribePolicies service method on
- AmazonAutoScaling.</param>
-
- <returns>The response from the DescribePolicies service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeScalingProcessTypes(Amazon.AutoScaling.Model.DescribeScalingProcessTypesRequest)">
- <summary>
- <para>Returns scaling process types for use in the ResumeProcesses and SuspendProcesses actions.</para>
- </summary>
-
- <param name="describeScalingProcessTypesRequest">Container for the necessary parameters to execute the DescribeScalingProcessTypes service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeScalingProcessTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.CreateAutoScalingGroup(Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest)">
- <summary>
- <para> Creates a new Auto Scaling group with the specified name. Once the creation request is completed, the AutoScalingGroup is ready to be
- used in other calls. </para> <para><b>NOTE:</b> The Auto Scaling group name must be unique within the scope of your AWS account, and under
- the quota of Auto Scaling groups allowed for your account. </para>
- </summary>
-
- <param name="createAutoScalingGroupRequest">Container for the necessary parameters to execute the CreateAutoScalingGroup service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- <exception cref="T:Amazon.AutoScaling.Model.AlreadyExistsException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeScalingActivities(Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest)">
- <summary>
- <para> Returns the scaling activities for the specified Auto Scaling group. </para> <para> If the specified <i>ActivityIds</i> list is
- empty, all the activities from the past six weeks are returned. Activities are sorted by completion time. Activities still in progress
- appear first on the list. </para> <para> This action supports pagination. If the response includes a token, there are more records
- available. To get the additional records, repeat the request with the response token as the NextToken parameter. </para>
- </summary>
-
- <param name="describeScalingActivitiesRequest">Container for the necessary parameters to execute the DescribeScalingActivities service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeScalingActivities service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeNotificationConfigurations(Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest)">
- <summary>
- <para> Returns a list of notification actions associated with Auto Scaling groups for specified events. </para>
- </summary>
-
- <param name="describeNotificationConfigurationsRequest">Container for the necessary parameters to execute the
- DescribeNotificationConfigurations service method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeNotificationConfigurations service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.ExecutePolicy(Amazon.AutoScaling.Model.ExecutePolicyRequest)">
- <summary>
- <para>Runs the policy you create for your Auto Scaling group in PutScalingPolicy.</para>
- </summary>
-
- <param name="executePolicyRequest">Container for the necessary parameters to execute the ExecutePolicy service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.PutScalingPolicy(Amazon.AutoScaling.Model.PutScalingPolicyRequest)">
- <summary>
- <para> Creates or updates a policy for an Auto Scaling group. To update an existing policy, use the existing policy name and set the
- parameter(s) you want to change. Any existing parameter not changed in an update to an existing policy is not changed in this update
- request. </para>
- </summary>
-
- <param name="putScalingPolicyRequest">Container for the necessary parameters to execute the PutScalingPolicy service method on
- AmazonAutoScaling.</param>
-
- <returns>The response from the PutScalingPolicy service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.PutNotificationConfiguration(Amazon.AutoScaling.Model.PutNotificationConfigurationRequest)">
- <summary>
- <para> Creates a notification action for an Auto Scaling group when a specified event takes place. </para>
- </summary>
-
- <param name="putNotificationConfigurationRequest">Container for the necessary parameters to execute the PutNotificationConfiguration service
- method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DeletePolicy(Amazon.AutoScaling.Model.DeletePolicyRequest)">
- <summary>
- <para>Deletes a policy created by PutScalingPolicy </para>
- </summary>
-
- <param name="deletePolicyRequest">Container for the necessary parameters to execute the DeletePolicy service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteNotificationConfiguration(Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest)">
- <summary>
- <para>Deletes notifications created by PutNotificationConfiguration.</para>
- </summary>
-
- <param name="deleteNotificationConfigurationRequest">Container for the necessary parameters to execute the DeleteNotificationConfiguration
- service method on AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteScheduledAction(Amazon.AutoScaling.Model.DeleteScheduledActionRequest)">
- <summary>
- <para>Deletes a scheduled action previously created using the PutScheduledUpdateGroupAction.</para>
- </summary>
-
- <param name="deleteScheduledActionRequest">Container for the necessary parameters to execute the DeleteScheduledAction service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.SetInstanceHealth(Amazon.AutoScaling.Model.SetInstanceHealthRequest)">
- <summary>
- <para> Sets the health status of an instance. </para>
- </summary>
-
- <param name="setInstanceHealthRequest">Container for the necessary parameters to execute the SetInstanceHealth service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAutoScalingNotificationTypes(Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesRequest)">
- <summary>
- <para> Returns a list of all notification types that are supported by Auto Scaling. </para> <para> <i>What if the input is empty?</i>
- </para>
- </summary>
-
- <param name="describeAutoScalingNotificationTypesRequest">Container for the necessary parameters to execute the
- DescribeAutoScalingNotificationTypes service method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAutoScalingNotificationTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.SuspendProcesses(Amazon.AutoScaling.Model.SuspendProcessesRequest)">
- <summary>
- <para> Suspends Auto Scaling processes for an Auto Scaling group. To suspend specific process types, specify them by name with the
- <c>ScalingProcesses.member.N</c> parameter. To suspend all process types, omit the <c>ScalingProcesses.member.N</c> parameter. </para>
- <para><b>IMPORTANT:</b> Suspending either of the two primary process types, Launch or Terminate, can prevent other process types from
- functioning properly. For more information about processes and their dependencies, see ProcessType. </para> <para> To resume processes that
- have been suspended, use ResumeProcesses. </para>
- </summary>
-
- <param name="suspendProcessesRequest">Container for the necessary parameters to execute the SuspendProcesses service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAutoScalingInstances(Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest)">
- <summary>
- <para> Returns a description of each Auto Scaling instance in the InstanceIds list. If a list is not provided, the service returns the full
- details of all instances up to a maximum of fifty. </para> <para> This action supports pagination by returning a token if there are more
- pages to retrieve. To get the next page, call this action again with the returned token as the NextToken parameter. </para>
- </summary>
-
- <param name="describeAutoScalingInstancesRequest">Container for the necessary parameters to execute the DescribeAutoScalingInstances service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAutoScalingInstances service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.CreateLaunchConfiguration(Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest)">
- <summary>
- <para> Creates a new launch configuration. Once created, the new launch configuration is available for immediate use. </para>
- <para><b>NOTE:</b> The launch configuration name used must be unique, within the scope of the client's AWS account, and the maximum limit of
- launch configurations must not yet have been met, or else the call will fail. </para>
- </summary>
-
- <param name="createLaunchConfigurationRequest">Container for the necessary parameters to execute the CreateLaunchConfiguration service
- method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- <exception cref="T:Amazon.AutoScaling.Model.AlreadyExistsException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteAutoScalingGroup(Amazon.AutoScaling.Model.DeleteAutoScalingGroupRequest)">
- <summary>
- <para> Deletes the specified auto scaling group if the group has no instances and no scaling activities in progress. </para>
- <para><b>NOTE:</b> To remove all instances before calling DeleteAutoScalingGroup, you can call UpdateAutoScalingGroup to set the minimum and
- maximum size of the AutoScalingGroup to zero. </para>
- </summary>
-
- <param name="deleteAutoScalingGroupRequest">Container for the necessary parameters to execute the DeleteAutoScalingGroup service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ResourceInUseException"/>
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DisableMetricsCollection(Amazon.AutoScaling.Model.DisableMetricsCollectionRequest)">
- <summary>
- <para> Disables monitoring of group metrics for the Auto Scaling group specified in AutoScalingGroupName. You can specify the list of
- affected metrics with the Metrics parameter. </para>
- </summary>
-
- <param name="disableMetricsCollectionRequest">Container for the necessary parameters to execute the DisableMetricsCollection service method
- on AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.UpdateAutoScalingGroup(Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest)">
- <summary>
- <para> Updates the configuration for the specified AutoScalingGroup. </para> <para><b>NOTE:</b> To update an Auto Scaling group with a
- launch configuration that has the InstanceMonitoring.enabled flag set to false, you must first ensure that collection of group metrics is
- disabled. Otherwise, calls to UpdateAutoScalingGroup will fail. If you have previously enabled group metrics collection, you can disable
- collection of all group metrics by calling DisableMetricsCollection. </para> <para> The new settings are registered upon the completion of
- this call. Any launch configuration settings take effect on any triggers after this call returns. Triggers that are currently in progress
- aren't affected. </para> <para><b>NOTE:</b> If the new values are specified for the MinSize or MaxSize parameters, then there will be an
- implicit call to SetDesiredCapacity to set the group to the new MaxSize. All optional parameters are left unchanged if not passed in the
- request. </para>
- </summary>
-
- <param name="updateAutoScalingGroupRequest">Container for the necessary parameters to execute the UpdateAutoScalingGroup service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeLaunchConfigurations(Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest)">
- <summary>
- <para> Returns a full description of the launch configurations given the specified names. </para> <para> If no names are specified, then the
- full details of all launch configurations are returned. </para>
- </summary>
-
- <param name="describeLaunchConfigurationsRequest">Container for the necessary parameters to execute the DescribeLaunchConfigurations service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeLaunchConfigurations service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAdjustmentTypes(Amazon.AutoScaling.Model.DescribeAdjustmentTypesRequest)">
- <summary>
- <para> Returns policy adjustment types for use in the PutScalingPolicy action. </para>
- </summary>
-
- <param name="describeAdjustmentTypesRequest">Container for the necessary parameters to execute the DescribeAdjustmentTypes service method on
- AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAdjustmentTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeScheduledActions(Amazon.AutoScaling.Model.DescribeScheduledActionsRequest)">
- <summary>
- <para> Lists all the actions scheduled for your Auto Scaling group that haven't been executed. To see a list of action already executed, see
- the activity record returned in DescribeScalingActivities. </para>
- </summary>
-
- <param name="describeScheduledActionsRequest">Container for the necessary parameters to execute the DescribeScheduledActions service method
- on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeScheduledActions service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.PutScheduledUpdateGroupAction(Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest)">
- <summary>
- <para> Creates a scheduled scaling action for a Auto Scaling group. If you leave a parameter unspecified, the corresponding value remains
- unchanged in the affected Auto Scaling group. </para>
- </summary>
-
- <param name="putScheduledUpdateGroupActionRequest">Container for the necessary parameters to execute the PutScheduledUpdateGroupAction
- service method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- <exception cref="T:Amazon.AutoScaling.Model.AlreadyExistsException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeMetricCollectionTypes(Amazon.AutoScaling.Model.DescribeMetricCollectionTypesRequest)">
- <summary>
- <para> Returns a list of metrics and a corresponding list of granularities for each metric. </para>
- </summary>
-
- <param name="describeMetricCollectionTypesRequest">Container for the necessary parameters to execute the DescribeMetricCollectionTypes
- service method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeMetricCollectionTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.SetDesiredCapacity(Amazon.AutoScaling.Model.SetDesiredCapacityRequest)">
- <summary>
- <para> Adjusts the desired size of the AutoScalingGroup by initiating scaling activities. When reducing the size of the group, it is not
- possible to define which EC2 instances will be terminated. This applies to any auto-scaling decisions that might result in terminating
- instances. </para> <para> There are two common use cases for <c>SetDesiredCapacity</c> :
- one for users of the Auto Scaling triggering system, and another for developers who write their own triggering systems. Both use
- cases relate to the concept of cooldown. </para> <para> In the first case, if you use the Auto Scaling triggering system,
- <c>SetDesiredCapacity</c> changes the size of your Auto Scaling group without regard to the cooldown period. This could be useful, for
- example, if Auto Scaling did something unexpected for some reason. If your cooldown period is 10 minutes, Auto Scaling would normally reject
- requests to change the size of the group for that entire 10 minute period. The <c>SetDesiredCapacity</c> command allows you to circumvent
- this restriction and change the size of the group before the end of the cooldown period. </para> <para> In the second case, if you write
- your own triggering system, you can use <c>SetDesiredCapacity</c> to control the size of your Auto Scaling group. If you want the same
- cooldown functionality that Auto Scaling offers, you can configure <c>SetDesiredCapacity</c> to honor cooldown by setting the
- <c>HonorCooldown</c> parameter to <c>true</c> .
- </para>
- </summary>
-
- <param name="setDesiredCapacityRequest">Container for the necessary parameters to execute the SetDesiredCapacity service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScaling.TerminateInstanceInAutoScalingGroup(Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest)">
- <summary>
- <para> Terminates the specified instance. Optionally, the desired group size can be adjusted. </para> <para><b>NOTE:</b> This call simply
- registers a termination request. The termination of the instance cannot happen immediately. </para>
- </summary>
-
- <param name="terminateInstanceInAutoScalingGroupRequest">Container for the necessary parameters to execute the
- TerminateInstanceInAutoScalingGroup service method on AmazonAutoScaling.</param>
-
- <returns>The response from the TerminateInstanceInAutoScalingGroup service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonAutoScalingClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.#ctor(System.String,System.String,Amazon.AutoScaling.AmazonAutoScalingConfig)">
- <summary>
- Constructs AmazonAutoScalingClient with AWS Access Key ID, AWS Secret Key and an
- AmazonAutoScalingClient Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonAutoScalingClient Configuration Object</param>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeAutoScalingGroups(Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest)">
- <summary>
- <para> Returns a full description of each Auto Scaling group in the given list. This includes all Amazon EC2 instances that are members of
- the group. If a list of names is not provided, the service returns the full details of all Auto Scaling groups. </para> <para> This action
- supports pagination by returning a token if there are more pages to retrieve. To get the next page, call this action again with the returned
- token as the NextToken parameter. </para>
- </summary>
-
- <param name="describeAutoScalingGroupsRequest">Container for the necessary parameters to execute the DescribeAutoScalingGroups service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAutoScalingGroups service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.EnableMetricsCollection(Amazon.AutoScaling.Model.EnableMetricsCollectionRequest)">
- <summary>
- <para> Enables monitoring of group metrics for the Auto Scaling group specified in AutoScalingGroupName. You can specify the list of enabled
- metrics with the Metrics parameter. </para> <para> Auto scaling metrics collection can be turned on only if the
- <c>InstanceMonitoring.Enabled</c> flag, in the Auto Scaling group's launch configuration, is set to <c>true</c> .
- </para>
- </summary>
-
- <param name="enableMetricsCollectionRequest">Container for the necessary parameters to execute the EnableMetricsCollection service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.ResumeProcesses(Amazon.AutoScaling.Model.ResumeProcessesRequest)">
- <summary>
- <para> Resumes Auto Scaling processes for an Auto Scaling group. For more information, see SuspendProcesses and ProcessType. </para>
- </summary>
-
- <param name="resumeProcessesRequest">Container for the necessary parameters to execute the ResumeProcesses service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DeleteLaunchConfiguration(Amazon.AutoScaling.Model.DeleteLaunchConfigurationRequest)">
- <summary>
- <para> Deletes the specified LaunchConfiguration. </para> <para> The specified launch configuration must not be attached to an Auto Scaling
- group. Once this call completes, the launch configuration is no longer available for use. </para>
- </summary>
-
- <param name="deleteLaunchConfigurationRequest">Container for the necessary parameters to execute the DeleteLaunchConfiguration service
- method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ResourceInUseException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribePolicies(Amazon.AutoScaling.Model.DescribePoliciesRequest)">
- <summary>
- <para> Returns descriptions of what each policy does. This action supports pagination. If the response includes a token, there are more
- records available. To get the additional records, repeat the request with the response token as the NextToken parameter. </para>
- </summary>
-
- <param name="describePoliciesRequest">Container for the necessary parameters to execute the DescribePolicies service method on
- AmazonAutoScaling.</param>
-
- <returns>The response from the DescribePolicies service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeScalingProcessTypes(Amazon.AutoScaling.Model.DescribeScalingProcessTypesRequest)">
- <summary>
- <para>Returns scaling process types for use in the ResumeProcesses and SuspendProcesses actions.</para>
- </summary>
-
- <param name="describeScalingProcessTypesRequest">Container for the necessary parameters to execute the DescribeScalingProcessTypes service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeScalingProcessTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.CreateAutoScalingGroup(Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest)">
- <summary>
- <para> Creates a new Auto Scaling group with the specified name. Once the creation request is completed, the AutoScalingGroup is ready to be
- used in other calls. </para> <para><b>NOTE:</b> The Auto Scaling group name must be unique within the scope of your AWS account, and under
- the quota of Auto Scaling groups allowed for your account. </para>
- </summary>
-
- <param name="createAutoScalingGroupRequest">Container for the necessary parameters to execute the CreateAutoScalingGroup service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- <exception cref="T:Amazon.AutoScaling.Model.AlreadyExistsException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeScalingActivities(Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest)">
- <summary>
- <para> Returns the scaling activities for the specified Auto Scaling group. </para> <para> If the specified <i>ActivityIds</i> list is
- empty, all the activities from the past six weeks are returned. Activities are sorted by completion time. Activities still in progress
- appear first on the list. </para> <para> This action supports pagination. If the response includes a token, there are more records
- available. To get the additional records, repeat the request with the response token as the NextToken parameter. </para>
- </summary>
-
- <param name="describeScalingActivitiesRequest">Container for the necessary parameters to execute the DescribeScalingActivities service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeScalingActivities service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeNotificationConfigurations(Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest)">
- <summary>
- <para> Returns a list of notification actions associated with Auto Scaling groups for specified events. </para>
- </summary>
-
- <param name="describeNotificationConfigurationsRequest">Container for the necessary parameters to execute the
- DescribeNotificationConfigurations service method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeNotificationConfigurations service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.ExecutePolicy(Amazon.AutoScaling.Model.ExecutePolicyRequest)">
- <summary>
- <para>Runs the policy you create for your Auto Scaling group in PutScalingPolicy.</para>
- </summary>
-
- <param name="executePolicyRequest">Container for the necessary parameters to execute the ExecutePolicy service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.PutScalingPolicy(Amazon.AutoScaling.Model.PutScalingPolicyRequest)">
- <summary>
- <para> Creates or updates a policy for an Auto Scaling group. To update an existing policy, use the existing policy name and set the
- parameter(s) you want to change. Any existing parameter not changed in an update to an existing policy is not changed in this update
- request. </para>
- </summary>
-
- <param name="putScalingPolicyRequest">Container for the necessary parameters to execute the PutScalingPolicy service method on
- AmazonAutoScaling.</param>
-
- <returns>The response from the PutScalingPolicy service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.PutNotificationConfiguration(Amazon.AutoScaling.Model.PutNotificationConfigurationRequest)">
- <summary>
- <para> Creates a notification action for an Auto Scaling group when a specified event takes place. </para>
- </summary>
-
- <param name="putNotificationConfigurationRequest">Container for the necessary parameters to execute the PutNotificationConfiguration service
- method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DeletePolicy(Amazon.AutoScaling.Model.DeletePolicyRequest)">
- <summary>
- <para>Deletes a policy created by PutScalingPolicy </para>
- </summary>
-
- <param name="deletePolicyRequest">Container for the necessary parameters to execute the DeletePolicy service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DeleteNotificationConfiguration(Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest)">
- <summary>
- <para>Deletes notifications created by PutNotificationConfiguration.</para>
- </summary>
-
- <param name="deleteNotificationConfigurationRequest">Container for the necessary parameters to execute the DeleteNotificationConfiguration
- service method on AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DeleteScheduledAction(Amazon.AutoScaling.Model.DeleteScheduledActionRequest)">
- <summary>
- <para>Deletes a scheduled action previously created using the PutScheduledUpdateGroupAction.</para>
- </summary>
-
- <param name="deleteScheduledActionRequest">Container for the necessary parameters to execute the DeleteScheduledAction service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.SetInstanceHealth(Amazon.AutoScaling.Model.SetInstanceHealthRequest)">
- <summary>
- <para> Sets the health status of an instance. </para>
- </summary>
-
- <param name="setInstanceHealthRequest">Container for the necessary parameters to execute the SetInstanceHealth service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeAutoScalingNotificationTypes(Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesRequest)">
- <summary>
- <para> Returns a list of all notification types that are supported by Auto Scaling. </para> <para> <i>What if the input is empty?</i>
- </para>
- </summary>
-
- <param name="describeAutoScalingNotificationTypesRequest">Container for the necessary parameters to execute the
- DescribeAutoScalingNotificationTypes service method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAutoScalingNotificationTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.SuspendProcesses(Amazon.AutoScaling.Model.SuspendProcessesRequest)">
- <summary>
- <para> Suspends Auto Scaling processes for an Auto Scaling group. To suspend specific process types, specify them by name with the
- <c>ScalingProcesses.member.N</c> parameter. To suspend all process types, omit the <c>ScalingProcesses.member.N</c> parameter. </para>
- <para><b>IMPORTANT:</b> Suspending either of the two primary process types, Launch or Terminate, can prevent other process types from
- functioning properly. For more information about processes and their dependencies, see ProcessType. </para> <para> To resume processes that
- have been suspended, use ResumeProcesses. </para>
- </summary>
-
- <param name="suspendProcessesRequest">Container for the necessary parameters to execute the SuspendProcesses service method on
- AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeAutoScalingInstances(Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest)">
- <summary>
- <para> Returns a description of each Auto Scaling instance in the InstanceIds list. If a list is not provided, the service returns the full
- details of all instances up to a maximum of fifty. </para> <para> This action supports pagination by returning a token if there are more
- pages to retrieve. To get the next page, call this action again with the returned token as the NextToken parameter. </para>
- </summary>
-
- <param name="describeAutoScalingInstancesRequest">Container for the necessary parameters to execute the DescribeAutoScalingInstances service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAutoScalingInstances service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.CreateLaunchConfiguration(Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest)">
- <summary>
- <para> Creates a new launch configuration. Once created, the new launch configuration is available for immediate use. </para>
- <para><b>NOTE:</b> The launch configuration name used must be unique, within the scope of the client's AWS account, and the maximum limit of
- launch configurations must not yet have been met, or else the call will fail. </para>
- </summary>
-
- <param name="createLaunchConfigurationRequest">Container for the necessary parameters to execute the CreateLaunchConfiguration service
- method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- <exception cref="T:Amazon.AutoScaling.Model.AlreadyExistsException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DeleteAutoScalingGroup(Amazon.AutoScaling.Model.DeleteAutoScalingGroupRequest)">
- <summary>
- <para> Deletes the specified auto scaling group if the group has no instances and no scaling activities in progress. </para>
- <para><b>NOTE:</b> To remove all instances before calling DeleteAutoScalingGroup, you can call UpdateAutoScalingGroup to set the minimum and
- maximum size of the AutoScalingGroup to zero. </para>
- </summary>
-
- <param name="deleteAutoScalingGroupRequest">Container for the necessary parameters to execute the DeleteAutoScalingGroup service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ResourceInUseException"/>
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DisableMetricsCollection(Amazon.AutoScaling.Model.DisableMetricsCollectionRequest)">
- <summary>
- <para> Disables monitoring of group metrics for the Auto Scaling group specified in AutoScalingGroupName. You can specify the list of
- affected metrics with the Metrics parameter. </para>
- </summary>
-
- <param name="disableMetricsCollectionRequest">Container for the necessary parameters to execute the DisableMetricsCollection service method
- on AmazonAutoScaling.</param>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.UpdateAutoScalingGroup(Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest)">
- <summary>
- <para> Updates the configuration for the specified AutoScalingGroup. </para> <para><b>NOTE:</b> To update an Auto Scaling group with a
- launch configuration that has the InstanceMonitoring.enabled flag set to false, you must first ensure that collection of group metrics is
- disabled. Otherwise, calls to UpdateAutoScalingGroup will fail. If you have previously enabled group metrics collection, you can disable
- collection of all group metrics by calling DisableMetricsCollection. </para> <para> The new settings are registered upon the completion of
- this call. Any launch configuration settings take effect on any triggers after this call returns. Triggers that are currently in progress
- aren't affected. </para> <para><b>NOTE:</b> If the new values are specified for the MinSize or MaxSize parameters, then there will be an
- implicit call to SetDesiredCapacity to set the group to the new MaxSize. All optional parameters are left unchanged if not passed in the
- request. </para>
- </summary>
-
- <param name="updateAutoScalingGroupRequest">Container for the necessary parameters to execute the UpdateAutoScalingGroup service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeLaunchConfigurations(Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest)">
- <summary>
- <para> Returns a full description of the launch configurations given the specified names. </para> <para> If no names are specified, then the
- full details of all launch configurations are returned. </para>
- </summary>
-
- <param name="describeLaunchConfigurationsRequest">Container for the necessary parameters to execute the DescribeLaunchConfigurations service
- method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeLaunchConfigurations service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeAdjustmentTypes(Amazon.AutoScaling.Model.DescribeAdjustmentTypesRequest)">
- <summary>
- <para> Returns policy adjustment types for use in the PutScalingPolicy action. </para>
- </summary>
-
- <param name="describeAdjustmentTypesRequest">Container for the necessary parameters to execute the DescribeAdjustmentTypes service method on
- AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeAdjustmentTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeScheduledActions(Amazon.AutoScaling.Model.DescribeScheduledActionsRequest)">
- <summary>
- <para> Lists all the actions scheduled for your Auto Scaling group that haven't been executed. To see a list of action already executed, see
- the activity record returned in DescribeScalingActivities. </para>
- </summary>
-
- <param name="describeScheduledActionsRequest">Container for the necessary parameters to execute the DescribeScheduledActions service method
- on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeScheduledActions service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.PutScheduledUpdateGroupAction(Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest)">
- <summary>
- <para> Creates a scheduled scaling action for a Auto Scaling group. If you leave a parameter unspecified, the corresponding value remains
- unchanged in the affected Auto Scaling group. </para>
- </summary>
-
- <param name="putScheduledUpdateGroupActionRequest">Container for the necessary parameters to execute the PutScheduledUpdateGroupAction
- service method on AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.LimitExceededException"/>
- <exception cref="T:Amazon.AutoScaling.Model.AlreadyExistsException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.DescribeMetricCollectionTypes(Amazon.AutoScaling.Model.DescribeMetricCollectionTypesRequest)">
- <summary>
- <para> Returns a list of metrics and a corresponding list of granularities for each metric. </para>
- </summary>
-
- <param name="describeMetricCollectionTypesRequest">Container for the necessary parameters to execute the DescribeMetricCollectionTypes
- service method on AmazonAutoScaling.</param>
-
- <returns>The response from the DescribeMetricCollectionTypes service method, as returned by AmazonAutoScaling.</returns>
-
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.SetDesiredCapacity(Amazon.AutoScaling.Model.SetDesiredCapacityRequest)">
- <summary>
- <para> Adjusts the desired size of the AutoScalingGroup by initiating scaling activities. When reducing the size of the group, it is not
- possible to define which EC2 instances will be terminated. This applies to any auto-scaling decisions that might result in terminating
- instances. </para> <para> There are two common use cases for <c>SetDesiredCapacity</c> :
- one for users of the Auto Scaling triggering system, and another for developers who write their own triggering systems. Both use
- cases relate to the concept of cooldown. </para> <para> In the first case, if you use the Auto Scaling triggering system,
- <c>SetDesiredCapacity</c> changes the size of your Auto Scaling group without regard to the cooldown period. This could be useful, for
- example, if Auto Scaling did something unexpected for some reason. If your cooldown period is 10 minutes, Auto Scaling would normally reject
- requests to change the size of the group for that entire 10 minute period. The <c>SetDesiredCapacity</c> command allows you to circumvent
- this restriction and change the size of the group before the end of the cooldown period. </para> <para> In the second case, if you write
- your own triggering system, you can use <c>SetDesiredCapacity</c> to control the size of your Auto Scaling group. If you want the same
- cooldown functionality that Auto Scaling offers, you can configure <c>SetDesiredCapacity</c> to honor cooldown by setting the
- <c>HonorCooldown</c> parameter to <c>true</c> .
- </para>
- </summary>
-
- <param name="setDesiredCapacityRequest">Container for the necessary parameters to execute the SetDesiredCapacity service method on
- AmazonAutoScaling.</param>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingClient.TerminateInstanceInAutoScalingGroup(Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest)">
- <summary>
- <para> Terminates the specified instance. Optionally, the desired group size can be adjusted. </para> <para><b>NOTE:</b> This call simply
- registers a termination request. The termination of the instance cannot happen immediately. </para>
- </summary>
-
- <param name="terminateInstanceInAutoScalingGroupRequest">Container for the necessary parameters to execute the
- TerminateInstanceInAutoScalingGroup service method on AmazonAutoScaling.</param>
-
- <returns>The response from the TerminateInstanceInAutoScalingGroup service method, as returned by AmazonAutoScaling.</returns>
-
- <exception cref="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException"/>
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.Asn1Object.FromByteArray(System.Byte[])">
- <summary>Create a base ASN.1 object from a byte array.</summary>
- <param name="data">The byte array to parse.</param>
- <returns>The base ASN.1 object represented by the byte array.</returns>
- <exception cref="T:System.IO.IOException">If there is a problem parsing the data.</exception>
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.Asn1Object.FromStream(System.IO.Stream)">
- <summary>Read a base ASN.1 object from a stream.</summary>
- <param name="inStr">The stream to parse.</param>
- <returns>The base ASN.1 object represented by the byte array.</returns>
- <exception cref="T:System.IO.IOException">If there is a problem parsing the data.</exception>
- </member>
- <member name="T:Amazon.SQS.Model.ReceiveMessageRequest">
- <summary>
- Retrieves one or more messages from the specified queue, including the message body and message ID of each message.
- Messages returned by this action stay in the queue until you delete them. However, once a message is returned to a
- ReceiveMessage request, it is not returned on subsequent ReceiveMessage requests for the duration of the
- VisibilityTimeout. If you do not specify a VisibilityTimeout in the request, the overall visibility timeout for the
- queue is used for the returned messages.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.WithMaxNumberOfMessages(System.Decimal)">
- <summary>
- Sets the MaxNumberOfMessages property
- </summary>
- <param name="maxNumberOfMessages">Maximum number of messages to return. SQS never returns more messages than this value but might return fewer.
- Not necessarily all the messages in the queue are returned (for more information, see the preceding note about
- machine sampling). Values can be from 1 to 10. Default is 1.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.IsSetMaxNumberOfMessages">
- <summary>
- Checks if MaxNumberOfMessages property is set
- </summary>
- <returns>true if MaxNumberOfMessages property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.WithVisibilityTimeout(System.Decimal)">
- <summary>
- Sets the VisibilityTimeout property
- </summary>
- <param name="visibilityTimeout">The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved
- by a ReceiveMessage request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.IsSetVisibilityTimeout">
- <summary>
- Checks if VisibilityTimeout property is set
- </summary>
- <returns>true if VisibilityTimeout property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.WithAttributeName(System.String[])">
- <summary>
- Sets the AttributeName property
- </summary>
- <param name="list">The attribute you want to get. Valid values: All | SenderId | SentTimestamp | ApproximateReceiveCount |
- ApproximateFirstReceiveTimestamp</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageRequest.IsSetAttributeName">
- <summary>
- Checks if AttributeName property is set
- </summary>
- <returns>true if AttributeName property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ReceiveMessageRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ReceiveMessageRequest.MaxNumberOfMessages">
- <summary>
- Gets and sets the MaxNumberOfMessages property.
- Maximum number of messages to return. SQS never returns more messages than this value but might return fewer.
- Not necessarily all the messages in the queue are returned (for more information, see the preceding note about
- machine sampling). Values can be from 1 to 10. Default is 1.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ReceiveMessageRequest.VisibilityTimeout">
- <summary>
- Gets and sets the VisibilityTimeout property.
- The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved
- by a ReceiveMessage request.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ReceiveMessageRequest.AttributeName">
- <summary>
- Gets and sets the AttributeName property.
- The attribute you want to get. Valid values: All | SenderId | SentTimestamp | ApproximateReceiveCount |
- ApproximateFirstReceiveTimestamp
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.Error">
- <summary>
- Error
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.Error.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The error type.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Error.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Error.WithCode(System.String)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">The specific error code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Error.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Error.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">A summary of the error.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Error.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Error.WithDetail(System.Object)">
- <summary>
- Sets the Detail property
- </summary>
- <param name="detail">Details associated with the error.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Error.IsSetDetail">
- <summary>
- Checks if Detail property is set
- </summary>
- <returns>true if Detail property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.Error.Type">
- <summary>
- Gets and sets the Type property.
- The error type.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Error.Code">
- <summary>
- Gets and sets the Code property.
- The specific error code.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Error.Message">
- <summary>
- Gets and sets the Message property.
- A summary of the error.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Error.Detail">
- <summary>
- Gets and sets the Detail property.
- Details associated with the error.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.DeleteMessageResponse">
- <summary>
- Returns metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.DeleteMessageResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ChangeMessageVisibilityResponse">
- <summary>
- Returns metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ChangeMessageVisibilityResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.AmazonSQSException">
- <summary>
- Amazon SQS Exception provides details of errors
- returned by Amazon SQS service
- </summary>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.#ctor">
- <summary>
- Initializes a new AmazonSQSException with default values.
- </summary>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.#ctor(System.String)">
- <summary>
- Initializes a new AmazonSQSException with a specified
- error message
- </summary>
- <param name="message">A message that describes the error</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.#ctor(System.String,System.Net.HttpStatusCode)">
- <summary>
- Initializes a new AmazonSQSException with a specified error message
- and HTTP status code
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.#ctor(System.Exception)">
- <summary>
- Initializes a new AmazonSQSException from the inner exception that is
- the cause of this exception.
- </summary>
- <param name="innerException">The nested exception that caused the AmazonSQSException</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new AmazonSQSException with serialized data.
- </summary>
- <param name="info">The object that holds the serialized object data.
- </param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Serializes this instance of AmazonSQSException.
- </summary>
- <param name="info">The object that holds the serialized object data.</param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.#ctor(System.String,System.Exception)">
- <summary>
- Constructs AmazonSQSException with message and wrapped exception
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="innerException">The nested exception that caused the AmazonS3Exception</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSException.#ctor(System.String,System.Net.HttpStatusCode,System.String,System.String,System.String,System.String)">
- <summary>
- Initializes an AmazonSQSException with error information provided in an
- AmazonSQS response.
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="errorCode">Error Code returned by the service</param>
- <param name="errorType">Error type. Possible types: Sender, Receiver or Unknown</param>
- <param name="requestId">Request ID returned by the service</param>
- <param name="xml">Compete xml found in response</param>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSException.ErrorCode">
- <summary>
- Gets and sets of the ErrorCode property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSException.ErrorType">
- <summary>
- Gets and sets of the ErrorType property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSException.Message">
- <summary>
- Gets error message
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSException.StatusCode">
- <summary>
- Gets status code returned by the service if available. If status
- code is set to -1, it means that status code was unavailable at the
- time exception was thrown
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSException.XML">
- <summary>
- Gets XML returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSException.RequestId">
- <summary>
- Gets Request ID returned by the service if available.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.TopicAttribute">
- <summary>
- A tuple associating a topic attribute's key and value.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.TopicAttribute.WithKey(System.String)">
- <summary>
- Sets the Key property
- </summary>
- <param name="key">The key in the key/value pair.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.TopicAttribute.IsSetKey">
- <summary>
- Checks if Key property is set
- </summary>
- <returns>true if Key property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.TopicAttribute.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value in the key/value pair.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.TopicAttribute.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.TopicAttribute.Key">
- <summary>
- Gets and sets the Key property.
- The key in the key/value pair.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.TopicAttribute.Value">
- <summary>
- Gets and sets the Value property.
- The value in the key/value pair.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.SendEmailResult">
- <summary>
- <para>Represents a unique message ID returned from a successful
- <c>SendEmail</c> request.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailResult.WithMessageId(System.String)">
- <summary>
- Sets the MessageId property
- </summary>
- <param name="messageId">The value to set for the MessageId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendEmailResult.MessageId">
- <summary>
- The unique message identifier returned from the <c>SendEmail</c> action.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesResponse">
- <summary>
- Returns information about the ListVerifiedEmailAddressesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesResponse.ListVerifiedEmailAddressesResult">
- <summary>
- Gets and sets the ListVerifiedEmailAddressesResult property.
- Represents a list of all the email addresses verified for the current user.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.GetSendQuotaResult">
- <summary>
- <para>Represents the user's current activity limits returned from a
- successful <c>GetSendQuota</c> request.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.GetSendQuotaResult.WithMax24HourSend(System.Double)">
- <summary>
- Sets the Max24HourSend property
- </summary>
- <param name="max24HourSend">The value to set for the Max24HourSend property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.GetSendQuotaResult.WithMaxSendRate(System.Double)">
- <summary>
- Sets the MaxSendRate property
- </summary>
- <param name="maxSendRate">The value to set for the MaxSendRate property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.GetSendQuotaResult.WithSentLast24Hours(System.Double)">
- <summary>
- Sets the SentLast24Hours property
- </summary>
- <param name="sentLast24Hours">The value to set for the SentLast24Hours property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.GetSendQuotaResult.Max24HourSend">
- <summary>
- The maximum number of emails the user is allowed to send in a 24-hour interval.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.GetSendQuotaResult.MaxSendRate">
- <summary>
- The maximum number of emails the user is allowed to send per second.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.GetSendQuotaResult.SentLast24Hours">
- <summary>
- The number of emails sent during the previous 24 hours.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.DeleteVerifiedEmailAddressRequest">
- <summary>
- Container for the parameters to the DeleteVerifiedEmailAddress operation.
- <para>Deletes the specified email address from the list of verified
- addresses.</para>
- </summary>
- <seealso cref="M:Amazon.SimpleEmail.AmazonSimpleEmailService.DeleteVerifiedEmailAddress(Amazon.SimpleEmail.Model.DeleteVerifiedEmailAddressRequest)"/>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.DeleteVerifiedEmailAddressRequest.WithEmailAddress(System.String)">
- <summary>
- Sets the EmailAddress property
- </summary>
- <param name="emailAddress">The value to set for the EmailAddress property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.DeleteVerifiedEmailAddressRequest.EmailAddress">
- <summary>
- An email address to be removed from the list of verified addreses.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.SelectResponse">
- <summary>
- The Select operation returns a set of Attributes for ItemNames that match the select expression.
- The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items
- returned per page to enforce this limit. For example, even if you ask to retrieve 2500 items, but each individual
- item is 10 kB in size, the system returns 100 items and an appropriate next token so you can get the next page of results.
- Operations that run longer than 5 seconds return a time-out error response or a partial or empty result set. Partial
- and empty result sets contains a next token which allow you to continue the operation from where it left off.
- Responses larger than one megabyte return a partial result set.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResponse.WithSelectResult(Amazon.SimpleDB.Model.SelectResult)">
- <summary>
- Sets the SelectResult property
- </summary>
- <param name="selectResult">The Select operation returns a set of Attributes for ItemNames that match the select expression.
- The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items
- returned per page to enforce this limit. For example, even if you ask to retrieve 2500 items, but each individual
- item is 10 kB in size, the system returns 100 items and an appropriate next token so you can get the next page of results.
- Operations that run longer than 5 seconds return a time-out error response or a partial or empty result set. Partial
- and empty result sets contains a next token which allow you to continue the operation from where it left off.
- Responses larger than one megabyte return a partial result set.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResponse.IsSetSelectResult">
- <summary>
- Checks if SelectResult property is set
- </summary>
- <returns>true if SelectResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.SelectResponse.SelectResult">
- <summary>
- Gets and sets the SelectResult property.
- The Select operation returns a set of Attributes for ItemNames that match the select expression.
- The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items
- returned per page to enforce this limit. For example, even if you ask to retrieve 2500 items, but each individual
- item is 10 kB in size, the system returns 100 items and an appropriate next token so you can get the next page of results.
- Operations that run longer than 5 seconds return a time-out error response or a partial or empty result set. Partial
- and empty result sets contains a next token which allow you to continue the operation from where it left off.
- Responses larger than one megabyte return a partial result set.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.SelectResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.PutAttributesResponse">
- <summary>
- Returns metadata about the response, including box usage and request ID.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.PutAttributesResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.PutAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.Dispose(System.Boolean)">
- <summary>
- Implements the Dispose pattern for the AmazonSimpleDBClient
- </summary>
- <param name="fDisposing">Whether this object is being disposed via a call to Dispose
- or garbage collected.</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.Finalize">
- <summary>
- The destructor for the client class.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonSimpleDBClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.#ctor(System.String,System.String,Amazon.SimpleDB.AmazonSimpleDBConfig)">
- <summary>
- Constructs AmazonSimpleDBClient with AWS Access Key ID, AWS Secret Key and an
- AmazonSimpleDB Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="config">The AmazonSimpleDB Configuration Object</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.#ctor(System.String,System.Security.SecureString,Amazon.SimpleDB.AmazonSimpleDBConfig)">
- <summary>
- Constructs an AmazonSimpleDBClient with AWS Access Key ID, AWS Secret Key and an
- AmazonSimpleDB Configuration object
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key as a SecureString</param>
- <param name="config">The AmazonSimpleDB Configuration Object</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginCreateDomain(Amazon.SimpleDB.Model.CreateDomainRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CreateDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.CreateDomain"/>
- </summary>
- <param name="request">The CreateDomainRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCreateDomain.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndCreateDomain(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CreateDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.CreateDomain"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCreateDomain.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a CreateDomainResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.CreateDomain(Amazon.SimpleDB.Model.CreateDomainRequest)">
- <summary>
- Create Domain
- </summary>
- <param name="request">Create Domain request</param>
- <returns>Create Domain Response from the service</returns>
- <remarks>
- The CreateDomain operation creates a new domain. The domain name must be unique
- among the domains associated with the Access Key ID provided in the request. The CreateDomain
- operation may take 10 or more seconds to complete.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertCreateDomain(Amazon.SimpleDB.Model.CreateDomainRequest)">
- Convert CreateDomainRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginListDomains(Amazon.SimpleDB.Model.ListDomainsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListDomains operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.ListDomains"/>
- </summary>
- <param name="request">The ListDomainsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListDomains.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndListDomains(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListDomains operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.ListDomains"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListDomains.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a ListDomainsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ListDomains(Amazon.SimpleDB.Model.ListDomainsRequest)">
- <summary>
- List Domains
- </summary>
- <param name="request">List Domains request</param>
- <returns>List Domains Response from the service</returns>
- <remarks>
- The ListDomains operation lists all domains associated with the Access Key ID. It returns
- domain names up to the limit set by MaxNumberOfDomains. A NextToken is returned if there are more
- than MaxNumberOfDomains domains. Calling ListDomains successive times with the
- NextToken returns up to MaxNumberOfDomains more domain names each time.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertListDomains(Amazon.SimpleDB.Model.ListDomainsRequest)">
- Convert ListDomainsRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginDomainMetadata(Amazon.SimpleDB.Model.DomainMetadataRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DomainMetadata operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DomainMetadata"/>
- </summary>
- <param name="request">The DomainMetadataRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDomainMetadata.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndDomainMetadata(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DomainMetadata operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DomainMetadata"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDomainMetadata.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a DomainMetadataResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.DomainMetadata(Amazon.SimpleDB.Model.DomainMetadataRequest)">
- <summary>
- Domain Metadata
- </summary>
- <param name="request">Domain Metadata request</param>
- <returns>Domain Metadata Response from the service</returns>
- <remarks>
- The DomainMetadata operation returns some domain metadata values, such as the
- number of items, attribute names and attribute values along with their sizes.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertDomainMetadata(Amazon.SimpleDB.Model.DomainMetadataRequest)">
- Convert DomainMetadataRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginDeleteDomain(Amazon.SimpleDB.Model.DeleteDomainRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteDomain"/>
- </summary>
- <param name="request">The DeleteDomainRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteDomain.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndDeleteDomain(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteDomain operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteDomain"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteDomain.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a DeleteDomainResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.DeleteDomain(Amazon.SimpleDB.Model.DeleteDomainRequest)">
- <summary>
- Delete Domain
- </summary>
- <param name="request">Delete Domain request</param>
- <returns>Delete Domain Response from the service</returns>
- <remarks>
- The DeleteDomain operation deletes a domain. Any items (and their attributes) in the domain
- are deleted as well. The DeleteDomain operation may take 10 or more seconds to complete.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertDeleteDomain(Amazon.SimpleDB.Model.DeleteDomainRequest)">
- Convert DeleteDomainRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginPutAttributes(Amazon.SimpleDB.Model.PutAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.PutAttributes"/>
- </summary>
- <param name="request">The PutAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndPutAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.PutAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a PutAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.PutAttributes(Amazon.SimpleDB.Model.PutAttributesRequest)">
- <summary>
- Put Attributes
- </summary>
- <param name="request">Put Attributes request</param>
- <returns>Put Attributes Response from the service</returns>
- <remarks>
- The PutAttributes operation creates or replaces attributes within an item. You specify new attributes
- using a combination of the Attribute.X.Name and Attribute.X.Value parameters. You specify
- the first attribute by the parameters Attribute.0.Name and Attribute.0.Value, the second
- attribute by the parameters Attribute.1.Name and Attribute.1.Value, and so on.
- Attributes are uniquely identified within an item by their name/value combination. For example, a single
- item can have the attributes { "first_name", "first_value" } and { "first_name",
- second_value" }. However, it cannot have two attribute instances where both the Attribute.X.Name and
- Attribute.X.Value are the same.
- Optionally, the requestor can supply the Replace parameter for each individual value. Setting this value
- to true will cause the new attribute value to replace the existing attribute value(s). For example, if an
- item has the attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requestor does a
- PutAttributes of { 'b', '4' } with the Replace parameter set to true, the final attributes of the
- item will be { 'a', '1' } and { 'b', '4' }, replacing the previous values of the 'b' attribute
- with the new value.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertPutAttributes(Amazon.SimpleDB.Model.PutAttributesRequest)">
- Convert PutAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginBatchPutAttributes(Amazon.SimpleDB.Model.BatchPutAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the BatchPutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchPutAttributes"/>
- </summary>
- <param name="request">The BatchPutAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndBatchPutAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndBatchPutAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the BatchPutAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchPutAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginBatchPutAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a BatchPutAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BatchPutAttributes(Amazon.SimpleDB.Model.BatchPutAttributesRequest)">
- <summary>
- Batch Put Attributes
- </summary>
- <param name="request">Batch Put Attributes request</param>
- <returns>Batch Put Attributes Response from the service</returns>
- <remarks>
- The BatchPutAttributes operation creates or replaces attributes within one or more items.
- You specify the item name with the Item.X.ItemName parameter.
- You specify new attributes using a combination of the Item.X.Attribute.Y.Name and Item.X.Attribute.Y.Value parameters.
- You specify the first attribute for the first item by the parameters Item.0.Attribute.0.Name and Item.0.Attribute.0.Value,
- the second attribute for the first item by the parameters Item.0.Attribute.1.Name and Item.0.Attribute.1.Value, and so on.
- Attributes are uniquely identified within an item by their name/value combination. For example, a single
- item can have the attributes { "first_name", "first_value" } and { "first_name",
- second_value" }. However, it cannot have two attribute instances where both the Item.X.Attribute.Y.Name and
- Item.X.Attribute.Y.Value are the same.
- Optionally, the requestor can supply the Replace parameter for each individual value. Setting this value
- to true will cause the new attribute value to replace the existing attribute value(s). For example, if an
- item 'I' has the attributes { 'a', '1' }, { 'b', '2'} and { 'b', '3' } and the requestor does a
- BacthPutAttributes of {'I', 'b', '4' } with the Replace parameter set to true, the final attributes of the
- item will be { 'a', '1' } and { 'b', '4' }, replacing the previous values of the 'b' attribute
- with the new value.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertBatchPutAttributes(Amazon.SimpleDB.Model.BatchPutAttributesRequest)">
- Convert BatchPutAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginGetAttributes(Amazon.SimpleDB.Model.GetAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.GetAttributes"/>
- </summary>
- <param name="request">The GetAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndGetAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.GetAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a GetAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.GetAttributes(Amazon.SimpleDB.Model.GetAttributesRequest)">
- <summary>
- Get Attributes
- </summary>
- <param name="request">Get Attributes request</param>
- <returns>Get Attributes Response from the service</returns>
- <remarks>
- Returns all of the attributes associated with the item. Optionally, the attributes returned can be limited to
- the specified AttributeName parameter.
- If the item does not exist on the replica that was accessed for this operation, an empty attribute is
- returned. The system does not return an error as it cannot guarantee the item does not exist on other
- replicas.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertGetAttributes(Amazon.SimpleDB.Model.GetAttributesRequest)">
- Convert GetAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginDeleteAttributes(Amazon.SimpleDB.Model.DeleteAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteAttributes"/>
- </summary>
- <param name="request">The DeleteAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndDeleteAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.DeleteAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a DeleteAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.DeleteAttributes(Amazon.SimpleDB.Model.DeleteAttributesRequest)">
- <summary>
- Delete Attributes
- </summary>
- <param name="request">Delete Attributes request</param>
- <returns>Delete Attributes Response from the service</returns>
- <remarks>
- Deletes one or more attributes associated with the item. If all attributes of an item are deleted, the item is
- deleted.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertDeleteAttributes(Amazon.SimpleDB.Model.DeleteAttributesRequest)">
- Convert DeleteAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginBatchDeleteAttributes(Amazon.SimpleDB.Model.BatchDeleteAttributesRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the BatchDeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchDeleteAttributes"/>
- </summary>
- <param name="request">The BatchDeleteAttributesRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndBatchDeleteAttributes.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndBatchDeleteAttributes(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the BatchDeleteAttributes operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.BatchDeleteAttributes"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginBatchDeleteAttributes.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a BatchDeleteAttributesResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BatchDeleteAttributes(Amazon.SimpleDB.Model.BatchDeleteAttributesRequest)">
- <summary>
- Batch Delete Attributes
- </summary>
- <param name="request">Batch Delete Attributes request</param>
- <returns>BatchDeleteAttributesResponse from the service</returns>
- <remarks>
- The BatchDeleteAttributes operation deletes attributes within one or more items.
- An item name and a collection of <see cref="T:Amazon.SimpleDB.Model.Attribute"/> is specified for each
- item to have attributes deleted for. If no attributes are specified then the entire item will be deleted.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.BeginSelect(Amazon.SimpleDB.Model.SelectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Select operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.Select"/>
- </summary>
- <param name="request">The SelectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSelect.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.EndSelect(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the Select operation.
- <seealso cref="M:Amazon.SimpleDB.AmazonSimpleDB.Select"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSelect.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.SimpleDB.AmazonSimpleDBException"></exception>
- <returns>Returns a SelectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.Select(Amazon.SimpleDB.Model.SelectRequest)">
- <summary>
- Select
- </summary>
- <param name="request">Select request</param>
- <returns>Select Response from the service</returns>
- <remarks>
- The Select operation returns a set of item names and associate attributes that match the
- query expression. Select operations that run longer than 5 seconds will likely time-out
- and return a time-out error response.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.ConvertSelect(Amazon.SimpleDB.Model.SelectRequest)">
- Convert SelectRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.configureWebRequest(System.Int32,Amazon.SimpleDB.AmazonSimpleDBConfig)">
- Configure HttpClient with set of defaults as well as configuration
- from AmazonSimpleDBConfig instance
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.reportAnyErrors(System.String,System.Net.HttpStatusCode)">
- Look for additional error strings in the response and return formatted exception
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.pauseOnRetry(System.Int32,System.Int32,System.Net.HttpStatusCode)">
- Exponential sleep on failed request
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBClient.addRequiredParameters(System.Collections.Generic.IDictionary{System.String,System.String})">
- Add authentication related and version parameters
- </member>
- <member name="T:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest">
- <summary>
- Contains all the parameters
- that can be set when making a this request with the
- <c>TransferUtility</c> method.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithDirectory(System.String)">
- <summary>
- Sets the Directory property for this request.
- This is the location where files are uploaded from.
- </summary>
- <param name="directory">The value that Directory is set to</param>
- <returns>The request with the Directory set</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.IsSetDirectory">
- <summary>
- Checks if Directory property is set.
- </summary>
- <returns>true if Directory property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithKeyPrefix(System.String)">
- <summary>
- Sets the KeyPrefix property for this request.
- This value prefixed the generated object keys.
- </summary>
- <param name="keyPrefix">The value that KeyPrefix is set to</param>
- <returns>The request with the KeyPrefix set</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.IsSetKeyPrefix">
- <summary>
- Checks if KeyPrefix property is set.
- </summary>
- <returns>true if KeyPrefix property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithSearchPattern(System.String)">
- <summary>
- Sets the search pattern used to determine which
- files in the directory are uploaded
- and returns this object instance,
- enabling additional method calls to be chained together.
- The SearchPattern is used for searching files in the directory.
- The default is "*" which returns back all files.
- </summary>
- <param name="searchPattern">
- The search pattern used to deterimine which
- files in the directory are uploaded.
- The default value is "*", specifying that all files
- in the directory will be uploaded.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.IsSetSearchPattern">
- <summary>
- Checks if SearchPattern property is set.
- </summary>
- <returns>true if SearchPattern property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithSearchOption(System.IO.SearchOption)">
- <summary>
- Sets the recursive options for the directory upload.
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="searchOption">
- The recursive option for the directory upload.
- Set by default to <c>TopDirectoryOnly</c>,
- specifying that files will be uploaded from the root directory only.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithBucketName(System.String)">
- <summary>
- Sets the name of the bucket
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="bucketName">
- The name of the bucket.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithCannedACL(Amazon.S3.Model.S3CannedACL)">
- <summary>
- Sets the canned access control list (ACL)
- for the uploaded objects
- and returns this object instance,
- enabling additional method calls to be chained together.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on Amazon S3 canned ACLs.
- </summary>
- <param name="acl">
- The canned access control list (ACL)
- for the uploaded objects.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.IsSetCannedACL">
- <summary>
- Checks if the CannedACL property is set.
- </summary>
- <returns>true if there is the CannedACL property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.RemoveCannedACL">
- <summary>
- Removes the cannned access control list (ACL)
- for the uploaded object.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithMetadata(System.String,System.String)">
- <summary>
- Adds a set of key-value pairs to the request
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="key">
- The key to associate with the Amazon S3 object.
- </param>
- <param name="value">
- The value for the key.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithMetadata(System.Collections.Specialized.NameValueCollection)">
- <summary>
- Adds a set of key-value pairs to the request
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="metaInfo">
- The set of key-value pairs
- associated with the Amazon S3 object.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.IsSetMetadata">
- <summary>
- Checks if Metadata property is set.
- </summary>
- <returns>true if Metadata property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.RemoveMetadata(System.String)">
- <summary>
- Removes a key from the metadata list if it was
- added previously.
- </summary>
- <param name="key">
- The key to remove.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithStorageClass(Amazon.S3.Model.S3StorageClass)">
- <summary>
- Sets the storage class for the uploaded Amazon S3 object.
- and returns this object instance,
- enabling additional method calls to be chained together.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- <param name="sClass">
- The storage class for the uploaded Amazon S3 object.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the sets the timeout property in milliseconds
- and returns this object instance,
- enabling additional method calls to be chained together.
- Set the timeout only if certain that
- the file will not be transferred within the default intervals
- for an HttpWebRequest.
- </summary>
- <param name="timeout">
- The timeout in milliseconds.
- </param>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.WithSubscriber(System.EventHandler{Amazon.S3.Transfer.UploadDirectoryProgressArgs})">
- <summary>
- The handler will be attached to the UploadDirectoryProgressEvent which is fired as data
- is uploaded to S3. The handler will be passed information detailing how much data
- has been uploaded as well as how much will be uploaded.
- </summary>
- <param name="handler">A method that is called when UploadDirectoryProgressEvent is fired.</param>
- <returns>this instance of the TransferUtilityUploadDirectoryRequest</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.OnRaiseProgressEvent(System.Int32,System.Int32,System.String,System.Int64,System.Int64)">
- <summary>
- Causes the UploadDirectoryProgressEvent event to be fired.
- </summary>
- <param name="numberOfFilesUploaded">The number of files uploaded.</param>
- <param name="totalNumberOfFiles">The total number of files.</param>
- <param name="currentFile">The current file.</param>
- <param name="transferredBytesForCurrentFile">The transferred bytes for current file.</param>
- <param name="totalNumberOfBytesForCurrentFile">The total number of bytes for current file.</param>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.Directory">
- <summary>
- Gets or sets the directory where files are uploaded from.
- </summary>
- <value>
- The directory where files are uploaded from.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.KeyPrefix">
- <summary>
- Gets or sets the KeyPrefix property. As object keys are generated for the
- files being uploaded this value will prefix the key. This is useful when a directory
- needs to be uploaded into sub directory in the S3 Bucket.
- </summary>
- <value>
- The directory where files are uploaded from.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.SearchPattern">
- <summary>
- Gets and sets the search pattern used to determine which
- files in the directory are uploaded.
- </summary>
- <value>
- The search pattern used to deterimine which
- files in the directory are uploaded.
- The default value is "*", specifying that all files
- in the directory will be uploaded.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.SearchOption">
- <summary>
- Gets or sets the recursive options for the directory upload.
- </summary>
- <value>
- The recursive options for the directory upload.
- Set by default to <c>TopDirectoryOnly</c>,
- specifying that files will be uploaded from the root directory only.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.BucketName">
- <summary>
- Gets or sets the name of the bucket.
- </summary>
- <value>
- The name of the bucket.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.CannedACL">
- <summary>
- Gets or sets the canned access control list (ACL)
- for the uploaded objects.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on Amazon S3 canned ACLs.
- </summary>
- <value>
- The canned access control list (ACL)
- for the uploaded objects.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.Metadata">
- <summary>
- This is exposed so we can copy the collection to the PUT object request
- created from this.
- </summary>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.StorageClass">
- <summary>
- Gets or sets the storage class for the uploaded Amazon S3 objects.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- <value>
- The storage class for the uploaded Amazon S3 objects.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.Timeout">
- <summary>
- Gets or sets the timeout property in milliseconds.
- The value of this property is assigned to the
- <c>ReadWriteTimeout</c> and <c>Timeout</c> properties of the
- <c>HTTPWebRequest</c> object used for Amazon S3 GET Object requests.
- </summary>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="E:Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest.UploadDirectoryProgressEvent">
- <summary>
- The event for UploadDirectoryProgressEvent notifications. All
- subscribers will be notified when a new progress
- event is raised.
- <para>
- The UploadDirectoryProgressEvent is fired as data
- is uploaded to S3. The delegates attached to the event
- will be passed information detailing how much data
- has been uploaded as well as how much will be uploaded.
- </para>
- </summary>
- <remarks>
- Subscribe to this event if you want to receive
- UploadDirectoryProgressEvent notifications. Here is how:<br />
- 1. Define a method with a signature similar to this one:
- <code>
- private void displayProgress(object sender, UploadDirectoryProgressArgs args)
- {
- Console.WriteLine(args);
- }
- </code>
- 2. Add this method to the UploadDirectoryProgressEvent delegate's invocation list
- <code>
- TransferUtilityUploadDirectoryRequest request = new TransferUtilityUploadDirectoryRequest();
- request.UploadDirectoryProgressEvent += displayProgress;
- </code>
- </remarks>
- </member>
- <member name="T:Amazon.S3.Transfer.UploadDirectoryProgressArgs">
- <summary>
- Encapsulates the information needed to provide
- transfer progress to subscribers of the <c>UploadDirectory</c>
- event.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.UploadDirectoryProgressArgs.#ctor(System.Int32,System.Int32,System.String,System.Int64,System.Int64)">
- <summary>
- Constructs a new instance of <c>UploadDirectoryProgressArgs</c>.
- </summary>
- <param name="numberOfFilesUploaded">
- The number of files uploaded.
- </param>
- <param name="totalNumberOfFiles">
- The total number of files to upload.
- </param>
- <param name="currentFile">
- The current file
- </param>
- <param name="transferredBytesForCurrentFile">
- The number of transferred bytes for current file.
- </param>
- <param name="totalNumberOfBytesForCurrentFile">
- The size of the current file in bytes.
- </param>
- </member>
- <member name="P:Amazon.S3.Transfer.UploadDirectoryProgressArgs.TotalNumberOfFiles">
- <summary>
- Gets or sets the total number of files.
- </summary>
- <value>The total number of files.</value>
- </member>
- <member name="P:Amazon.S3.Transfer.UploadDirectoryProgressArgs.NumberOfFilesUploaded">
- <summary>
- Gets or sets the number of files uploaded.
- </summary>
- <value>The number of files uploaded.</value>
- </member>
- <member name="P:Amazon.S3.Transfer.UploadDirectoryProgressArgs.CurrentFile">
- <summary>
- Gets or sets the current file.
- </summary>
- <value>The current file.</value>
- </member>
- <member name="P:Amazon.S3.Transfer.UploadDirectoryProgressArgs.TransferredBytesForCurrentFile">
- <summary>
- Gets or sets the transferred bytes for current file.
- </summary>
- <value>The transferred bytes for current file.</value>
- </member>
- <member name="P:Amazon.S3.Transfer.UploadDirectoryProgressArgs.TotalNumberOfBytesForCurrentFile">
- <summary>
- Gets or sets the total number of bytes for current file.
- </summary>
- <value>The total number of bytes for current file.</value>
- </member>
- <member name="T:Amazon.S3.Model.S3CannedACL">
- <summary>
- An Enumeration of all possible CannedACLs that can be used
- for S3 Buckets or S3 Objects. For more information about CannedACLs, refer:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/RESTAccessPolicy.html#RESTCannedAccessPolicies"/>
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3CannedACL.NoACL">
- <summary>
- No Canned ACL is used.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3CannedACL.Private">
- <summary>
- Owner gets FULL_CONTROL.
- No one else has access rights (default).
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3CannedACL.PublicRead">
- <summary>
- Owner gets FULL_CONTROL and the anonymous principal is granted READ access.
- If this policy is used on an object, it can be read from a browser with no authentication.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3CannedACL.PublicReadWrite">
- <summary>
- Owner gets FULL_CONTROL, the anonymous principal is granted READ and WRITE access.
- This can be a useful policy to apply to a bucket, but is generally not recommended.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3CannedACL.AuthenticatedRead">
- <summary>
- Owner gets FULL_CONTROL, and any principal authenticated as a registered Amazon
- S3 user is granted READ access.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3CannedACL.BucketOwnerRead">
- <summary>
- Object Owner gets FULL_CONTROL, Bucket Owner gets READ
- This ACL applies only to objects and is equivalent to private when used with PUT Bucket.
- You use this ACL to let someone other than the bucket owner write content (get full control)
- in the bucket but still grant the bucket owner read access to the objects.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3CannedACL.BucketOwnerFullControl">
- <summary>
- Object Owner gets FULL_CONTROL, Bucket Owner gets FULL_CONTROL.
- This ACL applies only to objects and is equivalent to private when used with PUT Bucket.
- You use this ACL to let someone other than the bucket owner write content (get full control)
- in the bucket but still grant the bucket owner full rights over the objects.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Region">
- <summary>
- An enumeration of all possible S3 Bucket region possibilities. For
- more information, refer:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/BucketConfiguration.html#LocationSelection"/>
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Region.US">
- <summary>
- Specifies that the S3 Bucket should use US locality.
- This is the default value.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Region.EU">
- <summary>
- Specifies that the S3 Bucket should use EU locality.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Region.SFO">
- <summary>
- Specifies that the S3 Bucket should use US-WEST-1 locality.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Region.APS1">
- <summary>
- Specifies that the S3 Bucket should use the AP-SOUTHEAST-1 locality.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Region.APN1">
- <summary>
- Specifies that the S3 Bucket should use the AP-NORTHEAST-1 locality.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Permission">
- <summary>
- An enumeration of all ACL permissions. For more information, refer:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/S3_ACLs.html#S3_ACLs_Permissions"/>
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Permission.INVALID">
- <summary>
- An invalid permission that will not make the request invalid.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Permission.READ">
- <summary>
- When applied to a bucket, grants permission to list the bucket.
- When applied to an object, this grants permission to read the
- object data and/or metadata.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Permission.WRITE">
- <summary>
- When applied to a bucket, grants permission to create, overwrite,
- and delete any object in the bucket. This permission is not
- supported for objects.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Permission.READ_ACP">
- <summary>
- Grants permission to read the ACL for the applicable bucket or object.
- The owner of a bucket or object always has this permission implicitly.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Permission.WRITE_ACP">
- <summary>
- Gives permission to overwrite the ACP for the applicable bucket or object.
- The owner of a bucket or object always has this permission implicitly.
- Granting this permission is equivalent to granting FULL_CONTROL because
- the grant recipient can make any changes to the ACP.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3Permission.FULL_CONTROL">
- <summary>
- Provides READ, WRITE, READ_ACP, and WRITE_ACP permissions.
- It does not convey additional rights and is provided only for convenience.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3MetadataDirective">
- <summary>
- An enumeration of all Metadata directives that
- can be used for the CopyObject operation.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3MetadataDirective.COPY">
- <summary>
- Specifies that the metadata is copied from the source object.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3MetadataDirective.REPLACE">
- <summary>
- Specifies that the metadata is replaced with metadata provided in the request.
- All original metadata is replaced by the metadata you specify.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.Protocol">
- <summary>
- An enumeration of all protocols that the pre-signed
- URL can be created against.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.Protocol.HTTPS">
- <summary>
- https protocol will be used in the pre-signed URL.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.Protocol.HTTP">
- <summary>
- http protocol will be used in the pre-signed URL.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.HttpVerb">
- <summary>
- An enumeration of supported HTTP verbs
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.HttpVerb.GET">
- <summary>
- The GET HTTP verb.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.HttpVerb.HEAD">
- <summary>
- The HEAD HTTP verb.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.HttpVerb.PUT">
- <summary>
- The PUT HTTP verb.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.HttpVerb.DELETE">
- <summary>
- The DELETE HTTP verb.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3StorageClass">
- <summary>
- Specifies the Storage Class of of an S3 object. Possible values
- are: <list type="bullet">
- <item>ReducedRedundancy: provides a 99.9% durability guarantee</item>
- <item>Standard: provides a 999999999% durability guarantee</item>
- </list>
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3StorageClass.Standard">
- <summary>
- The STANDARD storage class, which is the default
- storage class for S3 objects. Provides a 999999999%
- durability guarantee.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.S3StorageClass.ReducedRedundancy">
- <summary>
- The REDUCED_REDUNDANCY storage class for S3 objects. This
- provides a reduced (99.9%) durability guarantee at a lower
- cost as compared to the STANDARD storage class. Use this
- storage class for non-mission critical data or for data
- that doesn’t require the higher level of durability that S3
- provides with the STANDARD storage class.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.NotificationEvents">
- <summary>
- The constants for the known event names used by S3 notification. S3 might add new
- events before the SDK is updated. In which case the names listed in the S3 documentation
- will work as well as these constants.
- </summary>
- </member>
- <member name="F:Amazon.S3.Model.NotificationEvents.ReducedRedundancyLostObject">
- <summary>
- An event that says an object has been lost in the reduced redundancy storage.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ListVersionsRequest">
- <summary>
- The ListVersionsRequest contains the parameters used for the ListVersions operation.
- <br />Required Parameters: BucketName
- <br />Optional Parameters: Prefix, KeyMarker, VersionIdMarker, MaxKeys, Delimiter
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the name of the S3 Bucket to list keys from.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set
- </summary>
- <returns>true if BucketName property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.WithPrefix(System.String)">
- <summary>
- Sets the Prefix property for this request.
- All keys matched will have this prefix.
- </summary>
- <param name="prefix">The value that Prefix is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.IsSetPrefix">
- <summary>
- Checks if Prefix property is set
- </summary>
- <returns>true if Prefix property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.WithKeyMarker(System.String)">
- <summary>
- Sets the KeyMarker property for this request.
- Specifies the key in the bucket you want to start
- listing from.
- </summary>
- <param name="marker">the value that KeyMarker is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.IsSetKeyMarker">
- <summary>
- Checks if KeyMarker property is set
- </summary>
- <returns>true if KeyMarker property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.WithVersionIdMarker(System.String)">
- <summary>
- Sets the VersionIdMarker property for this request.
- Specifies the objert-version in the bucket you want to start
- listing from.
- </summary>
- <param name="marker">the value that VersionIdMarker is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.IsSetVersionIdMarker">
- <summary>
- Checks if VersionIdMarker property is set
- </summary>
- <returns>true if VersionIdMarker property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.WithMaxKeys(System.Int32)">
- <summary>
- Sets the MaxKeys property for this request.
- Limits the result set of keys to MaxKeys.
- </summary>
- <param name="maxKeys">the value that MaxKeys is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.IsSetMaxKeys">
- <summary>
- Checks if MaxKeys property is set
- </summary>
- <returns>true if MaxKeys property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.WithDelimiter(System.String)">
- <summary>
- Sets the Delimiter property for this request.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- These rolled-up keys are not returned elsewhere in the response.
- </summary>
- <param name="delimiter">the value that Delimiter is set to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListVersionsRequest.IsSetDelimiter">
- <summary>
- Checks if Delimiter property is set
- </summary>
- <returns>true if Delimiter property is set</returns>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- This is the name of the S3 Bucket to list keys from.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsRequest.Prefix">
- <summary>
- Gets and sets the Prefix property.
- All keys matched will have this prefix.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsRequest.KeyMarker">
- <summary>
- Gets and sets the KeyMarker property.
- Specifies the key in the bucket you want to start
- listing from.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsRequest.VersionIdMarker">
- <summary>
- Gets and sets the VersionIdMarker property.
- Specifies the object-version in the bucket you want to start
- listing from.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsRequest.MaxKeys">
- <summary>
- Gets and sets the MaxKeys property.
- Limits the result set of keys to MaxKeys.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListVersionsRequest.Delimiter">
- <summary>
- Gets and sets the Delimiter property.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- </summary>
- <remarks>
- These rolled-up keys are not returned elsewhere in the response.
- </remarks>
- </member>
- <member name="T:Amazon.S3.Model.DeleteBucketPolicyRequest">
- <summary>
- The DeleteBucketPolicyRequest contains the parameters used for the DeleteBucketPolicy operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.DeleteBucketPolicyRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket where the policy will be deleted from.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteBucketPolicyRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.DeleteBucketPolicyRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Util.Logger">
- <summary>
- This is a dynamic wrapper around log4net so we can avoid log4net being required
- to be distributed with the SDK.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.Util.Logger.loadStatics">
- <summary>
- This should be a one time call to use reflection to find all the types and methods
- needed for the logging API.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.Util.Logger.Error(System.String,System.Exception)">
- <summary>
- Simple wrapper around the log4net Error method.
- </summary>
- <param name="message"></param>
- <param name="exception"></param>
- </member>
- <member name="M:Amazon.Runtime.Internal.Util.Logger.Debug(System.String,System.Exception)">
- <summary>
- Simple wrapper around the log4net Debug method.
- </summary>
- <param name="message"></param>
- <param name="exception"></param>
- </member>
- <member name="M:Amazon.Runtime.Internal.Util.Logger.DebugFormat(System.String,System.Object[])">
- <summary>
- Simple wrapper around the log4net DebugFormat method.
- </summary>
- <param name="message"></param>
- <param name="arguments"></param>
- </member>
- <member name="M:Amazon.Runtime.Internal.Util.Logger.InfoFormat(System.String,System.Object[])">
- <summary>
- Simple wrapper around the log4net InfoFormat method.
- </summary>
- <param name="message"></param>
- <param name="arguments"></param>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ResetDBParameterGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ResetDBParameterGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.PurchaseReservedDBInstancesOfferingResultUnmarshaller">
- <summary>
- Result Unmarshaller for PurchaseReservedDBInstancesOffering operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.EventUnmarshaller">
- <summary>
- Event Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeReservedDBInstancesResultUnmarshaller">
- <summary>
- DescribeReservedDBInstancesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBSnapshotsRequestMarshaller">
- <summary>
- Describe D B Snapshots Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBInstancesResultUnmarshaller">
- <summary>
- DescribeDBInstancesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBSnapshotRequestMarshaller">
- <summary>
- Delete D B Snapshot Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBSecurityGroupRequestMarshaller">
- <summary>
- Create D B Security Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RebootDBInstanceRequest">
- <summary>
- Container for the parameters to the RebootDBInstance operation.
- <para> Reboots a previously provisioned RDS instance. This API results in the application of modified DBParameterGroup parameters with
- ApplyStatus of pending-reboot to the RDS instance. This action is taken as soon as possible, and results in a momentary outage to the RDS
- instance during which the RDS instance status is set to rebooting. A DBInstance event is created when the reboot is completed. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.RebootDBInstance(Amazon.RDS.Model.RebootDBInstanceRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.RebootDBInstanceRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.RebootDBInstanceRequest.DBInstanceIdentifier">
- <summary>
- The DB Instance identifier. This parameter is stored as a lowercase string. Constraints: <ul> <li>Must contain from 1 to 63 alphanumeric
- characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li>
- </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingResult">
- <summary>
- The results from the PurchaseReservedDBInstancesOffering action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingResult.ReservedDBInstance">
-
- Gets and sets the PurchaseReservedDBInstancesOfferingResult property.
- Contains the result of a successful invocation of the PurchaseReservedDBInstancesOffering
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DescribeReservedDBInstancesResponse">
- <summary>
- Returns information about the DescribeReservedDBInstancesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesResponse.DescribeReservedDBInstancesResult">
- <summary>
- Gets and sets the DescribeReservedDBInstancesResult property.
- Contains the result of a successful invocation of the DescribeReservedDBInstances action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBSecurityGroupsRequest">
- <summary>
- Container for the parameters to the DescribeDBSecurityGroups operation.
- <para> Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of
- the specified DBSecurityGroup. </para> <para>For an overview of CIDR ranges, go to the Wikipedia Tutorial. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeDBSecurityGroups(Amazon.RDS.Model.DescribeDBSecurityGroupsRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSecurityGroupsRequest.WithDBSecurityGroupName(System.String)">
- <summary>
- Sets the DBSecurityGroupName property
- </summary>
- <param name="dBSecurityGroupName">The value to set for the DBSecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSecurityGroupsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSecurityGroupsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSecurityGroupsRequest.DBSecurityGroupName">
- <summary>
- The name of the DB Security Group to return details for.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSecurityGroupsRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSecurityGroupsRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeDBInstances request. If this parameter is specified, the response includes only records
- beyond the marker, up to the value specified by <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBParametersResponse">
- <summary>
- Returns information about the DescribeDBParametersResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParametersResponse.DescribeDBParametersResult">
- <summary>
- Gets and sets the DescribeDBParametersResult property.
- Contains the result of a successful invocation of the DescribeDBParameters action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBInstance">
- <summary>
- <para> Contains the result of a successful invocation of the following actions: </para>
- <ul>
- <li> CreateDBInstance </li>
- <li> DeleteDBInstance </li>
- <li> ModifyDBInstance </li>
-
- </ul>
- <para>This data type is used as a response element in the DescribeDBInstances action.</para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBInstanceStatus(System.String)">
- <summary>
- Sets the DBInstanceStatus property
- </summary>
- <param name="dBInstanceStatus">The value to set for the DBInstanceStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithMasterUsername(System.String)">
- <summary>
- Sets the MasterUsername property
- </summary>
- <param name="masterUsername">The value to set for the MasterUsername property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBName(System.String)">
- <summary>
- Sets the DBName property
- </summary>
- <param name="dBName">The value to set for the DBName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithEndpoint(Amazon.RDS.Model.Endpoint)">
- <summary>
- Sets the Endpoint property
- </summary>
- <param name="endpoint">The value to set for the Endpoint property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithAllocatedStorage(System.Int32)">
- <summary>
- Sets the AllocatedStorage property
- </summary>
- <param name="allocatedStorage">The value to set for the AllocatedStorage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithInstanceCreateTime(System.DateTime)">
- <summary>
- Sets the InstanceCreateTime property
- </summary>
- <param name="instanceCreateTime">The value to set for the InstanceCreateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithPreferredBackupWindow(System.String)">
- <summary>
- Sets the PreferredBackupWindow property
- </summary>
- <param name="preferredBackupWindow">The value to set for the PreferredBackupWindow property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithBackupRetentionPeriod(System.Int32)">
- <summary>
- Sets the BackupRetentionPeriod property
- </summary>
- <param name="backupRetentionPeriod">The value to set for the BackupRetentionPeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBSecurityGroups(Amazon.RDS.Model.DBSecurityGroupMembership[])">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBSecurityGroups(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.DBSecurityGroupMembership})">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBParameterGroups(Amazon.RDS.Model.DBParameterGroupStatus[])">
- <summary>
- Adds elements to the DBParameterGroups collection
- </summary>
- <param name="dBParameterGroups">The values to add to the DBParameterGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithDBParameterGroups(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.DBParameterGroupStatus})">
- <summary>
- Adds elements to the DBParameterGroups collection
- </summary>
- <param name="dBParameterGroups">The values to add to the DBParameterGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithPreferredMaintenanceWindow(System.String)">
- <summary>
- Sets the PreferredMaintenanceWindow property
- </summary>
- <param name="preferredMaintenanceWindow">The value to set for the PreferredMaintenanceWindow property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithPendingModifiedValues(Amazon.RDS.Model.PendingModifiedValues)">
- <summary>
- Sets the PendingModifiedValues property
- </summary>
- <param name="pendingModifiedValues">The value to set for the PendingModifiedValues property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithLatestRestorableTime(System.DateTime)">
- <summary>
- Sets the LatestRestorableTime property
- </summary>
- <param name="latestRestorableTime">The value to set for the LatestRestorableTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithAutoMinorVersionUpgrade(System.Boolean)">
- <summary>
- Sets the AutoMinorVersionUpgrade property
- </summary>
- <param name="autoMinorVersionUpgrade">The value to set for the AutoMinorVersionUpgrade property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithReadReplicaSourceDBInstanceIdentifier(System.String)">
- <summary>
- Sets the ReadReplicaSourceDBInstanceIdentifier property
- </summary>
- <param name="readReplicaSourceDBInstanceIdentifier">The value to set for the ReadReplicaSourceDBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithReadReplicaDBInstanceIdentifiers(System.String[])">
- <summary>
- Adds elements to the ReadReplicaDBInstanceIdentifiers collection
- </summary>
- <param name="readReplicaDBInstanceIdentifiers">The values to add to the ReadReplicaDBInstanceIdentifiers collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithReadReplicaDBInstanceIdentifiers(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ReadReplicaDBInstanceIdentifiers collection
- </summary>
- <param name="readReplicaDBInstanceIdentifiers">The values to add to the ReadReplicaDBInstanceIdentifiers collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstance.WithLicenseModel(System.String)">
- <summary>
- Sets the LicenseModel property
- </summary>
- <param name="licenseModel">The value to set for the LicenseModel property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.DBInstanceIdentifier">
- <summary>
- Contains a user-supplied database identifier. This is the unique key that identifies a DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.DBInstanceClass">
- <summary>
- Contains the name of the compute and memory capacity class of the DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.Engine">
- <summary>
- Provides the name of the database engine to be used for this DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.DBInstanceStatus">
- <summary>
- Specifies the current state of this database.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.MasterUsername">
- <summary>
- Contains the master username for the DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.DBName">
- <summary>
- The meaning of this parameter differs according to the database engine you use. <b>MySQL</b> Contains the name of the initial database of
- this instance that was provided at create time, if one was specified when the DB Instance was created. This same name is returned for the
- life of the DB Instance. Type: String <b>Oracle</b> Contains the Oracle System ID (SID) of the created DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.Endpoint">
- <summary>
- Specifies the connection endpoint.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.AllocatedStorage">
- <summary>
- Specifies the allocated storage size specified in gigabytes.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.InstanceCreateTime">
- <summary>
- Provides the date and time the DB Instance was created.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.PreferredBackupWindow">
- <summary>
- Specifies the daily time range during which automated backups are created if automated backups are enabled, as determined by the
- <c>BackupRetentionPeriod</c>.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.BackupRetentionPeriod">
- <summary>
- Specifies the number of days for which automatic DB Snapshots are retained.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.DBSecurityGroups">
- <summary>
- Provides List of DB Security Group elements containing only <c>DBSecurityGroup.Name</c> and <c>DBSecurityGroup.Status</c> subelements.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.DBParameterGroups">
- <summary>
- Provides the list of DB Parameter Groups applied to this DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.AvailabilityZone">
- <summary>
- Specifies the name of the Availability Zone the DB Instance is located in.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.PreferredMaintenanceWindow">
- <summary>
- Specifies the weekly time range (in UTC) during which system maintenance can occur.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.PendingModifiedValues">
- <summary>
- Specifies that changes to the DB Instance are pending. This element is only included when changes are pending. Specific changes are
- identified by subelements.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.LatestRestorableTime">
- <summary>
- Specifies the latest time to which a database can be restored with point-in-time restore.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.MultiAZ">
- <summary>
- Specifies if the DB Instance is a Multi-AZ deployment.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.EngineVersion">
- <summary>
- Indicates the database engine version.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.AutoMinorVersionUpgrade">
- <summary>
- Indicates that minor version patches are applied automatically.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.ReadReplicaSourceDBInstanceIdentifier">
- <summary>
- Contains the identifier of the source DB Instance if this DB Instance is a Read Replica.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.ReadReplicaDBInstanceIdentifiers">
- <summary>
- Contains one or more identifiers of the Read Replicas associated with this DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBInstance.LicenseModel">
- <summary>
- License model information for this DB Instance.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBParameterGroupResult">
- <summary>
- The results from the CreateDBParameterGroup action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBParameterGroupResult.DBParameterGroup">
-
- Gets and sets the CreateDBParameterGroupResult property.
- Contains the result of a successful invocation of the CreateDBParameterGroup
- action.
-
- </member>
- <member name="T:Amazon.ImportExport.Model.UpdateJobRequest">
- <summary>
- Container for the parameters to the UpdateJob operation.
- <para> You use this operation to change the parameters specified in
- the original manifest file by supplying a new manifest file. The
- manifest file attached to this request replaces the original manifest
- file. You can only use the operation after a CreateJob request but
- before the data transfer starts and you can only use it on jobs you
- own. </para>
- </summary>
- <seealso cref="M:Amazon.ImportExport.AmazonImportExport.UpdateJob(Amazon.ImportExport.Model.UpdateJobRequest)"/>
- </member>
- <member name="M:Amazon.ImportExport.Model.UpdateJobRequest.WithJobId(System.String)">
- <summary>
- Sets the JobId property
- </summary>
- <param name="jobId">The value to set for the JobId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.UpdateJobRequest.WithManifest(System.String)">
- <summary>
- Sets the Manifest property
- </summary>
- <param name="manifest">The value to set for the Manifest property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.UpdateJobRequest.WithJobType(System.String)">
- <summary>
- Sets the JobType property
- </summary>
- <param name="jobType">The value to set for the JobType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.UpdateJobRequest.WithValidateOnly(System.Boolean)">
- <summary>
- Sets the ValidateOnly property
- </summary>
- <param name="validateOnly">The value to set for the ValidateOnly property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.UpdateJobRequest.JobId">
- <summary>
- A unique identifier which refers to a particular job.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.UpdateJobRequest.Manifest">
- <summary>
- The UTF-8 encoded text of the manifest file.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.UpdateJobRequest.JobType">
- <summary>
- Specifies whether the job to initiate is an import or export job.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Import, Export</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.UpdateJobRequest.ValidateOnly">
- <summary>
- Validate the manifest and parameter values in the request but do not
- actually create a job.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.ListJobsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListJobs operation
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.MissingParameterException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.MissingParameterException.#ctor(System.String)">
- <summary>
- Constructs a new MissingParameterException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.ListJobsResult">
- <summary>
- <para> Output structure for the ListJobs operation. </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.ListJobsResult.WithJobs(Amazon.ImportExport.Model.Job[])">
- <summary>
- Adds elements to the Jobs collection
- </summary>
- <param name="jobs">The values to add to the Jobs collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.ListJobsResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.ListJobsResult.Jobs">
- <summary>
- A list container for Jobs returned by the ListJobs operation.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.ListJobsResult.IsTruncated">
- <summary>
- Indicates whether the list of jobs was truncated. If true, then call
- ListJobs again using the last JobId element as the marker.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UploadServerCertificateResultUnmarshaller">
- <summary>
- UploadServerCertificateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateSigningCertificateRequestMarshaller">
- <summary>
- Update Signing Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ServerCertificateUnmarshaller">
- <summary>
- ServerCertificate Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListUserPoliciesRequestMarshaller">
- <summary>
- List User Policies Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetGroupPolicyRequestMarshaller">
- <summary>
- Get Group Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteServerCertificateRequestMarshaller">
- <summary>
- Delete Server Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteGroup operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.AddUserToGroupRequestMarshaller">
- <summary>
- Add User To Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest">
- <summary>
- Container for the parameters to the ResyncMFADevice operation.
- <para>Synchronizes the specified MFA device with AWS servers.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ResyncMFADevice(Amazon.IdentityManagement.Model.ResyncMFADeviceRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.WithSerialNumber(System.String)">
- <summary>
- Sets the SerialNumber property
- </summary>
- <param name="serialNumber">The value to set for the SerialNumber property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.WithAuthenticationCode1(System.String)">
- <summary>
- Sets the AuthenticationCode1 property
- </summary>
- <param name="authenticationCode1">The value to set for the AuthenticationCode1 property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.WithAuthenticationCode2(System.String)">
- <summary>
- Sets the AuthenticationCode2 property
- </summary>
- <param name="authenticationCode2">The value to set for the AuthenticationCode2 property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.UserName">
- <summary>
- Name of the User whose MFA device you want to resynchronize.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.SerialNumber">
- <summary>
- Serial number that uniquely identifies the MFA device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>9 - 48</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.AuthenticationCode1">
- <summary>
- An authentication code emitted by the device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>6 - 6</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\d]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ResyncMFADeviceRequest.AuthenticationCode2">
- <summary>
- A subsequent authentication code emitted by the device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>6 - 6</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\d]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListAccessKeysRequest">
- <summary>
- Container for the parameters to the ListAccessKeys operation.
- <para>Returns information about the Access Key IDs associated with the
- specified User. If there are none, the action returns an empty
- list.</para> <para>Although each User is limited to a small number of
- keys, you can still paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para> <para>If the <c>UserName</c> field is
- not specified, the UserName is determined implicitly based on the AWS
- Access Key ID used to sign the request. Because this action works for
- access keys under the AWS Account, this API can be used to manage root
- credentials even if the AWS Account has no associated Users.</para>
- <para><b>NOTE:</b>To ensure the security of your AWS Account, the
- secret access key is accessible only during key and User
- creation.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListAccessKeys(Amazon.IdentityManagement.Model.ListAccessKeysRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccessKeysRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccessKeysRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccessKeysRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccessKeysRequest.UserName">
- <summary>
- Name of the User.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccessKeysRequest.Marker">
- <summary>
- Use this parameter only when paginating results, and only in a subsequent request after you've received a response where the results are
- truncated. Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccessKeysRequest.MaxItems">
- <summary>
- Use this parameter only when paginating results to indicate the maximum number of keys you want in the response. If there are additional
- keys beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetLoginProfileResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- GetLoginProfile action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetLoginProfileResult.WithLoginProfile(Amazon.IdentityManagement.Model.LoginProfile)">
- <summary>
- Sets the LoginProfile property
- </summary>
- <param name="loginProfile">The value to set for the LoginProfile property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetLoginProfileResult.LoginProfile">
- <summary>
- Login profile for the User name.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteServerCertificateRequest">
- <summary>
- Container for the parameters to the DeleteServerCertificate operation.
- <para>Deletes the specified server certificate.</para>
- <para><b>IMPORTANT:</b>If your Elastic Load Balancing instances are
- using a server certificate, deleting the certificate could have
- implications for your application. If your Elastic Load Balancing
- instances do not detect the deletion of bound certificates, they may
- continue to use the certificates. This could cause them to stop
- accepting traffic. We recommend that you remove the reference to the
- certificate from your Elastic Load Balancing instances before using
- this command to delete the certificate.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteServerCertificate(Amazon.IdentityManagement.Model.DeleteServerCertificateRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteServerCertificateRequest.WithServerCertificateName(System.String)">
- <summary>
- Sets the ServerCertificateName property
- </summary>
- <param name="serverCertificateName">The value to set for the ServerCertificateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteServerCertificateRequest.ServerCertificateName">
- <summary>
- The name of the server certificate you want to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteGroupRequest">
- <summary>
- Container for the parameters to the DeleteGroup operation.
- <para>Deletes the specified group. The group must not contain any
- Users or have any attached policies.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteGroup(Amazon.IdentityManagement.Model.DeleteGroupRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteGroupRequest.GroupName">
- <summary>
- Name of the group to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.AccessKeyMetadata">
- <summary>
- <para>The AccessKey data type contains information about an AWS access
- key, without its secret key.</para> <para> This data type is used as a
- response element in the action ListAccessKeys. </para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKeyMetadata.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKeyMetadata.WithAccessKeyId(System.String)">
- <summary>
- Sets the AccessKeyId property
- </summary>
- <param name="accessKeyId">The value to set for the AccessKeyId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKeyMetadata.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AccessKeyMetadata.WithCreateDate(System.DateTime)">
- <summary>
- Sets the CreateDate property
- </summary>
- <param name="createDate">The value to set for the CreateDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKeyMetadata.UserName">
- <summary>
- Name of the User the key is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKeyMetadata.AccessKeyId">
- <summary>
- The ID for this access key.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>16 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKeyMetadata.Status">
- <summary>
- The status of the access key. <c>Active</c> means the key is valid for API calls, while <c>Inactive</c> means it is not.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Active, Inactive</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AccessKeyMetadata.CreateDate">
- <summary>
- The date when the access key was created.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.RunJobFlowRequest">
- <summary>
- Container for the parameters to the RunJobFlow operation.
- <para> RunJobFlow creates and starts running a new job flow. The job
- flow will run the steps specified. Once the job flow completes, the
- cluster is stopped and the HDFS partition is lost. To prevent loss of
- data, configure the last step of the job flow to store results in
- Amazon S3. If the JobFlowInstancesDetail : KeepJobFlowAliveWhenNoSteps
- parameter is set to <c>TRUE</c> , the job flow will transition to the
- WAITING state rather than shutting down once the steps have completed.
- </para> <para>A maximum of 256 steps are allowed in each job
- flow.</para> <para>For long running job flows, we recommended that you
- periodically store your results.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.RunJobFlow(Amazon.ElasticMapReduce.Model.RunJobFlowRequest)"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.WithLogUri(System.String)">
- <summary>
- Sets the LogUri property
- </summary>
- <param name="logUri">The value to set for the LogUri property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.WithAdditionalInfo(System.String)">
- <summary>
- Sets the AdditionalInfo property
- </summary>
- <param name="additionalInfo">The value to set for the AdditionalInfo property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.WithInstances(Amazon.ElasticMapReduce.Model.JobFlowInstancesConfig)">
- <summary>
- Sets the Instances property
- </summary>
- <param name="instances">The value to set for the Instances property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.WithSteps(Amazon.ElasticMapReduce.Model.StepConfig[])">
- <summary>
- Adds elements to the Steps collection
- </summary>
- <param name="steps">The values to add to the Steps collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.WithBootstrapActions(Amazon.ElasticMapReduce.Model.BootstrapActionConfig[])">
- <summary>
- Adds elements to the BootstrapActions collection
- </summary>
- <param name="bootstrapActions">The values to add to the BootstrapActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.Name">
- <summary>
- The name of the job flow.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.LogUri">
- <summary>
- Specifies the location in Amazon S3 to write the log files of the job
- flow. If a value is not provided, logs are not created.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.AdditionalInfo">
- <summary>
- A JSON string for selecting additional features.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.Instances">
- <summary>
- A specification of the number and type of Amazon EC2 instances on
- which to run the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.Steps">
- <summary>
- A list of steps to be executed by the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowRequest.BootstrapActions">
- <summary>
- A list of bootstrap actions that will be run before Hadoop is started
- on the cluster nodes.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.ModifyInstanceGroupsResponse">
- <summary>
- Returns information about the ModifyInstanceGroups response metadata.
- The ModifyInstanceGroups operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.SetLoadBalancerPoliciesOfListenerRequestMarshaller">
- <summary>
- Set Load Balancer Policies Of Listener Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.EnableAvailabilityZonesForLoadBalancerRequestMarshaller">
- <summary>
- Enable Availability Zones For Load Balancer Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DisableAvailabilityZonesForLoadBalancerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DisableAvailabilityZonesForLoadBalancer operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerRequestMarshaller">
- <summary>
- Delete Load Balancer Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.SourceSecurityGroup">
- <summary>
- <para> This data type is used as a response element in the DescribeLoadBalancers action. For information about Elastic Load Balancing
- security groups, go to Using Security Groups With Elastic Load Balancing in the <i>Elastic Load Balancing Developer Guide</i> .
- </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SourceSecurityGroup.WithOwnerAlias(System.String)">
- <summary>
- Sets the OwnerAlias property
- </summary>
- <param name="ownerAlias">The value to set for the OwnerAlias property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SourceSecurityGroup.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SourceSecurityGroup.OwnerAlias">
- <summary>
- Owner of the source security group. Use this value for the <c>--source-group-user</c> parameter of the <c>ec2-authorize</c> command in the
- Amazon EC2 command line tool.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SourceSecurityGroup.GroupName">
- <summary>
- Name of the source security group. Use this value for the <c>--source-group</c> parameter of the <c>ec2-authorize</c> command in the Amazon
- EC2 command line tool.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidConfigurationRequestException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthResponse">
- <summary>
- Returns information about the DescribeInstanceHealthResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthResponse.DescribeInstanceHealthResult">
- <summary>
- Gets and sets the DescribeInstanceHealthResult property.
- The output for the DescribeInstanceHealth action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest">
- <summary>
- Container for the parameters to the DescribeInstanceHealth operation.
- <para> Returns the current state of the instances of the specified LoadBalancer. If no instances are specified, the state of all the
- instances for the LoadBalancer is returned. </para> <para><b>NOTE:</b> The client must have created the specified input LoadBalancer in
- order to retrieve this information; the client must provide the same account credentials as those that were used to create the LoadBalancer.
- </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DescribeInstanceHealth(Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest.#ctor">
- <summary>
- Default constructor for a new DescribeInstanceHealthRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest.#ctor(System.String)">
- <summary>
- Constructs a new DescribeInstanceHealthRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest.WithInstances(Amazon.ElasticLoadBalancing.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest.WithInstances(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest.Instances">
- <summary>
- A list of instance IDs whose states are being queried.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyResult">
- <summary>
- <para> The output for the CreateLBCookieStickinessPolicy action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ValidationMessage">
- <summary>
- <para> An error or warning for a desired configuration option value. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidationMessage.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The value to set for the Message property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidationMessage.WithSeverity(System.String)">
- <summary>
- Sets the Severity property
- </summary>
- <param name="severity">The value to set for the Severity property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidationMessage.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidationMessage.WithOptionName(System.String)">
- <summary>
- Sets the OptionName property
- </summary>
- <param name="optionName">The value to set for the OptionName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidationMessage.Message">
- <summary>
- A message describing the error or warning.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidationMessage.Severity">
- <summary>
- An indication of the severity of this message: <enumValues> <value name="error"> error: This message indicates that this is not a valid
- setting for an option. </value> <value name="warning"> warning: This message is providing information you should take into account. </value>
- </enumValues> <ul> <li> error: This message indicates that this is not a valid setting for an option. </li> <li> warning: This message is
- providing information you should take into account. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>error, warning</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidationMessage.Namespace">
- <summary>
-
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidationMessage.OptionName">
- <summary>
-
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest">
- <summary>
- Container for the parameters to the UpdateConfigurationTemplate operation.
- <para> Updates the specified configuration template to have the specified properties or configuration option values. </para>
- <para><b>NOTE:</b> If a property (for example, ApplicationName) is not provided, its value remains unchanged. To clear such properties,
- specify an empty string. </para> <para>Related Topics</para>
- <ul>
- <li> DescribeConfigurationOptions </li>
-
- </ul>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateConfigurationTemplate(Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.WithOptionsToRemove(Amazon.ElasticBeanstalk.Model.OptionSpecification[])">
- <summary>
- Adds elements to the OptionsToRemove collection
- </summary>
- <param name="optionsToRemove">The values to add to the OptionsToRemove collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.WithOptionsToRemove(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.OptionSpecification})">
- <summary>
- Adds elements to the OptionsToRemove collection
- </summary>
- <param name="optionsToRemove">The values to add to the OptionsToRemove collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.ApplicationName">
- <summary>
- The name of the application associated with the configuration template to update. If no application is found with this name,
- <c>UpdateConfigurationTemplate</c> returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.TemplateName">
- <summary>
- The name of the configuration template to update. If no configuration template is found with this name, <c>UpdateConfigurationTemplate</c>
- returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.Description">
- <summary>
- A new description for the configuration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.OptionSettings">
- <summary>
- A list of configuration option settings to update with the new specified option value.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateRequest.OptionsToRemove">
- <summary>
- A list of configuration options to remove from the configuration set. Constraint: You can remove only <c>UserDefined</c> configuration
- options.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Trigger">
- <summary>
- <para>Describes a trigger.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.Trigger.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.Trigger.Name">
- <summary>
- The name of the trigger.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.TerminateEnvironmentResultUnmarshaller">
- <summary>
- TerminateEnvironmentResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.SwapEnvironmentCNAMEsRequestMarshaller">
- <summary>
- Swap Environment C N A M Es Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEnvironmentResourcesRequestMarshaller">
- <summary>
- Describe Environment Resources Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeConfigurationOptionsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeConfigurationOptions operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeApplicationVersionsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeApplicationVersions operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ConfigurationOptionSettingUnmarshaller">
- <summary>
- ConfigurationOptionSetting Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.AutoScalingGroupUnmarshaller">
- <summary>
- AutoScalingGroup Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.EventDescription">
- <summary>
- <para>Describes an event.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithEventDate(System.DateTime)">
- <summary>
- Sets the EventDate property
- </summary>
- <param name="eventDate">The value to set for the EventDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The value to set for the Message property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">The value to set for the RequestId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EventDescription.WithSeverity(System.String)">
- <summary>
- Sets the Severity property
- </summary>
- <param name="severity">The value to set for the Severity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.EventDate">
- <summary>
- The date when the event occurred.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.Message">
- <summary>
- The event message.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.ApplicationName">
- <summary>
- The application associated with the event.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.VersionLabel">
- <summary>
- The release label for the application version associated with this event.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.TemplateName">
- <summary>
- The name of the configuration associated with this event.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.EnvironmentName">
- <summary>
- The name of the environment associated with this event.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.RequestId">
- <summary>
- The web service request ID for the activity of this event.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EventDescription.Severity">
- <summary>
- The severity level of this event.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>TRACE, DEBUG, INFO, WARN, ERROR, FATAL</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsResult">
- <summary>
- <para>Result message containing a list of environment descriptions.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsResult.WithEnvironments(Amazon.ElasticBeanstalk.Model.EnvironmentDescription[])">
- <summary>
- Adds elements to the Environments collection
- </summary>
- <param name="environments">The values to add to the Environments collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsResult.WithEnvironments(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.EnvironmentDescription})">
- <summary>
- Adds elements to the Environments collection
- </summary>
- <param name="environments">The values to add to the Environments collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsResult.Environments">
- <summary>
- Returns an <a>EnvironmentDescription</a> list.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResponse">
- <summary>
- Returns information about the DescribeConfigurationOptionsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsResponse.DescribeConfigurationOptionsResult">
- <summary>
- Gets and sets the DescribeConfigurationOptionsResult property.
- Describes the settings for a specified configuration set.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeApplicationsResponse">
- <summary>
- Returns information about the DescribeApplicationsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeApplicationsResponse.DescribeApplicationsResult">
- <summary>
- Gets and sets the DescribeApplicationsResult property.
- Result message containing a list of application descriptions.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest">
- <summary>
- Container for the parameters to the DeleteConfigurationTemplate operation.
- <para>Deletes the specified configuration template.</para> <para><b>NOTE:</b>When you launch an environment using a configuration template,
- the environment gets a copy of the template. You can delete or modify the environment's copy of the template without affecting the running
- environment.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteConfigurationTemplate(Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest.ApplicationName">
- <summary>
- The name of the application to delete the configuration template from.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateRequest.TemplateName">
- <summary>
- The name of the configuration template to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription">
- <summary>
- <para> Describes the settings for a configuration set. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithDeploymentStatus(System.String)">
- <summary>
- Sets the DeploymentStatus property
- </summary>
- <param name="deploymentStatus">The value to set for the DeploymentStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.SolutionStackName">
- <summary>
- The name of the solution stack this configuration set uses.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.ApplicationName">
- <summary>
- The name of the application associated with this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.TemplateName">
- <summary>
- If not <c>null</c>, the name of the configuration template for this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.Description">
- <summary>
- Describes this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.EnvironmentName">
- <summary>
- If not <c>null</c>, the name of the environment for this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.DeploymentStatus">
- <summary>
- If this configuration set is associated with an environment, the <c>DeploymentStatus</c> parameter indicates the deployment status of this
- configuration set: <enumValues> <value name="null"> <c>null</c>: This configuration is not associated with a running environment. </value>
- <value name="pending"> <c>pending</c>: This is a draft configuration that is not deployed to the associated environment but is in the
- process of deploying. </value> <value name="deployed"> <c>deployed</c>: This is the configuration that is currently deployed to the
- associated running environment. </value> <value name="failed"> <c>failed</c>: This is a draft configuration, that failed to successfully
- deploy. </value> </enumValues> <ul> <li> <c>null</c>: This configuration is not associated with a running environment. </li> <li>
- <c>pending</c>: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying. </li>
- <li> <c>deployed</c>: This is the configuration that is currently deployed to the associated running environment. </li> <li> <c>failed</c>:
- This is a draft configuration that failed to successfully deploy. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>deployed, pending, failed</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.DateCreated">
- <summary>
- The date (in UTC time) when this configuration set was created.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.DateUpdated">
- <summary>
- The date (in UTC time) when this configuration set was last modified.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription.OptionSettings">
- <summary>
- A list of the configuration options and their values in this configuration set.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ApplicationDescription">
- <summary>
- <para>Describes the properties of an application.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithVersions(System.String[])">
- <summary>
- Adds elements to the Versions collection
- </summary>
- <param name="versions">The values to add to the Versions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithVersions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the Versions collection
- </summary>
- <param name="versions">The values to add to the Versions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithConfigurationTemplates(System.String[])">
- <summary>
- Adds elements to the ConfigurationTemplates collection
- </summary>
- <param name="configurationTemplates">The values to add to the ConfigurationTemplates collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationDescription.WithConfigurationTemplates(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ConfigurationTemplates collection
- </summary>
- <param name="configurationTemplates">The values to add to the ConfigurationTemplates collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationDescription.ApplicationName">
- <summary>
- The name of the application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationDescription.Description">
- <summary>
- User-defined description of the application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationDescription.DateCreated">
- <summary>
- The date when the application was created.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationDescription.DateUpdated">
- <summary>
- The date when the application was last modified.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationDescription.Versions">
- <summary>
- The names of the versions for this application.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationDescription.ConfigurationTemplates">
- <summary>
- The names of the configuration templates associated with this application.
-
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.StartInstancesResult">
- <summary>
- Result of a StartInstances request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesResult.IsSetStartingInstances">
- <summary>
- Checks if StartingInstances property is set
- </summary>
- <returns>true if StartingInstances property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.StartInstancesResult.StartingInstances">
- <summary>
- Gets and sets the StartingInstances property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceNetworkAclAssociationResponse">
- <summary>
- The Response for the
- ReplaceNetworkAclAssociation operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationResponse.IsSetReplaceNetworkAclAssociationResult">
- <summary>
- Checks if ReplaceNetworkAclAssociationResult property is set
- </summary>
- <returns>true if ReplaceNetworkAclAssociationResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclAssociationResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclAssociationResponse.ReplaceNetworkAclAssociationResult">
- <summary>
- Gets and sets the ReplaceNetworkAclAssociationResult property.
- ReplaceNetworkAclAssociation Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.PortRange.WithFrom(System.Decimal)">
- <summary>
- Sets the From property
- </summary>
- <param name="from">The first port in the range. A value of -1 indicates all ports.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PortRange.IsSetFrom">
- <summary>
- Checks if From property is set
- </summary>
- <returns>true if From property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PortRange.WithTo(System.Decimal)">
- <summary>
- Sets the To property
- </summary>
- <param name="to">The last port in the range. A value of -1 indicates all ports</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PortRange.IsSetTo">
- <summary>
- Checks if To property is set
- </summary>
- <returns>true if To property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.PortRange.From">
- <summary>
- Gets and sets the From property.
- The first port in the range. A value of -1 indicates all ports.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.PortRange.To">
- <summary>
- Gets and sets the To property.
- The last port in the range. A value of -1 indicates all ports
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.WithRuleNumber(System.Decimal)">
- <summary>
- Sets the RuleNumber property
- </summary>
- <param name="ruleNumber">Specific rule number for the entry. ACL entries are processed in
- ascending order by rule number.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.IsSetRuleNumber">
- <summary>
- Checks if RuleNumber property is set
- </summary>
- <returns>true if RuleNumber property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.WithProtocol(System.String)">
- <summary>
- Sets the Protocol property
- </summary>
- <param name="protocol">IP protocol. For a list of protocol numbers and names, go to Protocol
- Numbers.
-
- Valid Values: tcp | udp | icmp or an IP protocol number.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.IsSetProtocol">
- <summary>
- Checks if Protocol property is set
- </summary>
- <returns>true if Protocol property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.WithRuleAction(System.String)">
- <summary>
- Sets the RuleAction property
- </summary>
- <param name="ruleAction">Whether to allow or deny the traffic that matches the rule.
-
- Valid Values: allow | deny</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.IsSetRuleAction">
- <summary>
- Checks if RuleAction property is set
- </summary>
- <returns>true if RuleAction property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.WithEgress(System.Boolean)">
- <summary>
- Sets the Egress property
- </summary>
- <param name="egress">Boolean flag to indicate an egress rule (rule is applied to traffic leaving
- the subnet). Value of true indicates egress.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.IsSetEgress">
- <summary>
- Checks if Egress property is set
- </summary>
- <returns>true if Egress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.WithCidrBlock(System.String)">
- <summary>
- Sets the CidrBlock property
- </summary>
- <param name="cidrBlock">The network range to allow or deny, in CIDR notation (e.g., 172.16.0.0/24).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.IsSetCidrBlock">
- <summary>
- Checks if CidrBlock property is set
- </summary>
- <returns>true if CidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.WithIcmp(Amazon.EC2.Model.Icmp)">
- <summary>
- Sets the Icmp property
- </summary>
- <param name="icmp">For the ICMP protocol, this is the ICMP type and code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.IsSetIcmp">
- <summary>
- Checks if Icmp property is set
- </summary>
- <returns>true if Icmp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.WithPortRange(Amazon.EC2.Model.PortRange)">
- <summary>
- Sets the PortRange property
- </summary>
- <param name="portRange">For the TCP or UDP protocols, the range of ports the rule applies to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclEntry.IsSetPortRange">
- <summary>
- Checks if PortRange property is set
- </summary>
- <returns>true if PortRange property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclEntry.RuleNumber">
- <summary>
- Gets and sets the RuleNumber property.
- Specific rule number for the entry. ACL entries are processed in
- ascending order by rule number.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclEntry.Protocol">
- <summary>
- Gets and sets the Protocol property.
- IP protocol. For a list of protocol numbers and names, go to Protocol
- Numbers.
-
- Valid Values: tcp | udp | icmp or an IP protocol number.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclEntry.RuleAction">
- <summary>
- Gets and sets the RuleAction property.
- Whether to allow or deny the traffic that matches the rule.
-
- Valid Values: allow | deny
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclEntry.Egress">
- <summary>
- Gets and sets the Egress property.
- Boolean flag to indicate an egress rule (rule is applied to traffic leaving
- the subnet). Value of true indicates egress.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclEntry.CidrBlock">
- <summary>
- Gets and sets the CidrBlock property.
- The network range to allow or deny, in CIDR notation (e.g., 172.16.0.0/24).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclEntry.Icmp">
- <summary>
- Gets and sets the Icmp property.
- For the ICMP protocol, this is the ICMP type and code.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclEntry.PortRange">
- <summary>
- Gets and sets the PortRange property.
- For the TCP or UDP protocols, the range of ports the rule applies to.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ModifyInstanceAttributeRequest">
- <summary>
- Modifies an attribute of an instance.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The instance ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Name of the attribute to modify. Values are
- "instanceType", "kernel", "ramdisk",
- "userData", "disableApiTermination",
- "instanceInitiatedShutdownBehavior",
- "sourceDestCheck",
- "rootDeviceName", and "blockDeviceMapping"</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">New value of the attribute.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.WithBlockDeviceMapping(Amazon.EC2.Model.InstanceBlockDeviceMappingParameter[])">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="list">Modifies the mapping that defines native device names
- to use when exposing virtual devices.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.WithGroupId(System.String[])">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="list">This is applicable only to instances running in a VPC. Use
- this parameter when you want to change the security
- groups an instance is in. The new set of groups you specify
- replaces the current set. You must specify at least one
- group, even if it's just the default security group in the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeRequest.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyInstanceAttributeRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The instance ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyInstanceAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name of the attribute to modify. Values are
- "instanceType", "kernel", "ramdisk",
- "userData", "disableApiTermination",
- "instanceInitiatedShutdownBehavior",
- "sourceDestCheck",
- "rootDeviceName", and "blockDeviceMapping"
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyInstanceAttributeRequest.Value">
- <summary>
- Gets and sets the Value property.
- New value of the attribute.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyInstanceAttributeRequest.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- Modifies the mapping that defines native device names
- to use when exposing virtual devices.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyInstanceAttributeRequest.GroupId">
- <summary>
- Gets and sets the GroupId property.
- This is applicable only to instances running in a VPC. Use
- this parameter when you want to change the security
- groups an instance is in. The new set of groups you specify
- replaces the current set. You must specify at least one
- group, even if it's just the default security group in the VPC.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.IpPermissionSpecification">
- <summary>
- IP Permission
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.WithIpProtocol(System.String)">
- <summary>
- Sets the IpProtocol property
- </summary>
- <param name="ipProtocol">IP protocol.Valid Values: tcp | udp | icmp</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.IsSetIpProtocol">
- <summary>
- Checks if IpProtocol property is set
- </summary>
- <returns>true if IpProtocol property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.WithFromPort(System.Decimal)">
- <summary>
- Sets the FromPort property
- </summary>
- <param name="fromPort">Start of port range for the TCP and UDP
- protocols, or an ICMP type
- number. An ICMP type number of -1
- indicates a wildcard (i.e., any ICMP type
- number).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.IsSetFromPort">
- <summary>
- Checks if FromPort property is set
- </summary>
- <returns>true if FromPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.WithToPort(System.Decimal)">
- <summary>
- Sets the ToPort property
- </summary>
- <param name="toPort">End of port range for the TCP and UDP
- protocols, or an ICMP code.
- An ICMP code of -1 indicates a
- wildcard (i.e., any ICMP code).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.IsSetToPort">
- <summary>
- Checks if ToPort property is set
- </summary>
- <returns>true if ToPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.WithGroups(Amazon.EC2.Model.UserIdGroupPair[])">
- <summary>
- Sets the Groups property
- </summary>
- <param name="list">List of security group and user ID pairs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.IsSetGroups">
- <summary>
- Checks if Groups property is set
- </summary>
- <returns>true if Groups property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.WithIpRanges(System.String[])">
- <summary>
- Sets the IpRanges property
- </summary>
- <param name="list">IP ranges.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermissionSpecification.IsSetIpRanges">
- <summary>
- Checks if IpRanges property is set
- </summary>
- <returns>true if IpRanges property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermissionSpecification.IpProtocol">
- <summary>
- Gets and sets the IpProtocol property.
- IP protocol.Valid Values: tcp | udp | icmp
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermissionSpecification.FromPort">
- <summary>
- Gets and sets the FromPort property.
- Start of port range for the TCP and UDP
- protocols, or an ICMP type
- number. An ICMP type number of -1
- indicates a wildcard (i.e., any ICMP type
- number).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermissionSpecification.ToPort">
- <summary>
- Gets and sets the ToPort property.
- End of port range for the TCP and UDP
- protocols, or an ICMP code.
- An ICMP code of -1 indicates a
- wildcard (i.e., any ICMP code).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermissionSpecification.Groups">
- <summary>
- Gets and sets the Groups property.
- List of security group and user ID pairs.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermissionSpecification.IpRanges">
- <summary>
- Gets and sets the IpRanges property.
- IP ranges.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.WithBytesConverted(System.Decimal)">
- <summary>
- Sets the BytesConverted property
- </summary>
- <param name="bytesConverted">Number of bytes converted so far.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.IsSetBytesConverted">
- <summary>
- Checks if BytesConverted property is set
- </summary>
- <returns>true if BytesConverted property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone where the resulting volume will reside.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Description you provided when starting the import volume task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.WithImage(Amazon.EC2.Model.DiskImageDescriptionType)">
- <summary>
- Sets the Image property
- </summary>
- <param name="image">Information about the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.IsSetImage">
- <summary>
- Checks if Image property is set
- </summary>
- <returns>true if Image property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.WithVolume(Amazon.EC2.Model.DiskImageVolumeDescriptionType)">
- <summary>
- Sets the Volume property
- </summary>
- <param name="volume">Information about the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeTaskDetailsType.IsSetVolume">
- <summary>
- Checks if Volume property is set
- </summary>
- <returns>true if Volume property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeTaskDetailsType.BytesConverted">
- <summary>
- Gets and sets the BytesConverted property.
- Number of bytes converted so far.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeTaskDetailsType.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone where the resulting volume will reside.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeTaskDetailsType.Description">
- <summary>
- Gets and sets the Description property.
- Description you provided when starting the import volume task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeTaskDetailsType.Image">
- <summary>
- Gets and sets the Image property.
- Information about the image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeTaskDetailsType.Volume">
- <summary>
- Gets and sets the Volume property.
- Information about the volume.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportInstanceResponse">
- <summary>
- The Response for the
- ImportInstance operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceResponse.IsSetImportInstanceResult">
- <summary>
- Checks if ImportInstanceResult property is set
- </summary>
- <returns>true if ImportInstanceResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceResponse.ImportInstanceResult">
- <summary>
- Gets and sets the ImportInstanceResult property.
- Import Instance Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportInstanceRequest">
- <summary>
- Creates a new import instance task using metadata from the specified disk image.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Description of the instance being imported</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.WithLaunchSpecification(Amazon.EC2.Model.ImportInstanceLaunchSpecificationType)">
- <summary>
- Sets the LaunchSpecification property
- </summary>
- <param name="launchSpecification">Specifies additional launch instance information.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.IsSetLaunchSpecification">
- <summary>
- Checks if LaunchSpecification property is set
- </summary>
- <returns>true if LaunchSpecification property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.WithDiskImage(Amazon.EC2.Model.DiskImageType[])">
- <summary>
- Sets the DiskImage property
- </summary>
- <param name="list">Details about the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.IsSetDiskImage">
- <summary>
- Checks if DiskImage property is set
- </summary>
- <returns>true if DiskImage property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.WithPlatform(System.String)">
- <summary>
- Sets the Platform property
- </summary>
- <param name="platform">The EC2 instance operating system.
-
- Valid Value: Windows</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceRequest.IsSetPlatform">
- <summary>
- Checks if Platform property is set
- </summary>
- <returns>true if Platform property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceRequest.Description">
- <summary>
- Gets and sets the Description property.
- Description of the instance being imported
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceRequest.LaunchSpecification">
- <summary>
- Gets and sets the LaunchSpecification property.
- Specifies additional launch instance information.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceRequest.DiskImage">
- <summary>
- Gets and sets the DiskImage property.
- Details about the image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceRequest.Platform">
- <summary>
- Gets and sets the Platform property.
- The EC2 instance operating system.
-
- Valid Value: Windows
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Filter">
- <summary>
- A filter used to limit results when describing tags.
- Multiple values can be specified per filter.
- A tag must match at least one of the specified values for it to be
- returned from an operation.
-
- Wildcards can be included in filter values;
- * specifies that zero or more characters
- must match, and ? specifies that exactly one
- character must match.Use a backslash to escape special characters.
- For example, a filter value of \*amazon\?\\
- specifies the literal string *amazon?\.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Filter.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">Specifies the name of the filter.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Filter.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Filter.WithValue(System.String[])">
- <summary>
- Sets the Value property
- </summary>
- <param name="list">Contains one or more values for the filter.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Filter.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Filter.Name">
- <summary>
- Gets and sets the Name property.
- Specifies the name of the filter.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Filter.Value">
- <summary>
- Gets and sets the Value property.
- Contains one or more values for the filter.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DetachVolumeResult">
- <summary>
- Detach Volume Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeResult.IsSetAttachment">
- <summary>
- Checks if Attachment property is set
- </summary>
- <returns>true if Attachment property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVolumeResult.Attachment">
- <summary>
- Gets and sets the Attachment property.
- Volume attachment
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSnapshotsRequest">
- <summary>
- Returns information about Amazon EBS snapshots
- available to the user.
- Information returned includes volume ID,
- status, start time, progress, owner ID,
- volume size, and
- description. Snapshots available to the user include public
- snapshots available for any
- user to launch, private snapshots owned
- by the user making the
- request, and private
- snapshots owned by other
- users for which the user granted explicit create
- volume permissions.
-
- The create volume permissions fall into 3 categories:
-
- public
-
- The owner of the snapshot granted create volume permissions
- for the snapshot to the all
- group. All users have create volume
- permissions for these snapshots.
-
- explicit
-
- The owner of the snapshot
- granted create volume permissions to a
- specific user.
-
- implicit
-
- A user has implicit create volume permissions for all snapshots he
- or she owns.
-
- The list of snapshots returned can be modified by specifying
- snapshot IDs, snapshot owners, or users with create volume permissions.
-
- If no options are specified, Amazon EC2 returns all
- snapshots for which the user has
- create volume permissions.
-
- If you specify one or more snapshot IDs, only snapshots that have
- the specified IDs are returned. If you specify an invalid snapshot ID,
- a fault is returned. If you specify a
- snapshot ID for which you do not have access, it will not be included in
- the returned results.
-
- If you specify one or more snapshot owners, only snapshots from the
- specified owners and for which you have access are returned. The
- results can include the AWS Account
- IDs of the specified owners,
- amazon for snapshots owned by Amazon or
- self for snapshots that you own.
-
- If you specify a list of restorable users, only users that
- have create snapshot permissions
- for the snapshots are returned. You
- can specify AWS Account IDs (if
- you own the snapshot(s)), self for
- snapshots for which you own or have explicit
- permissions, or all for public snapshots.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.WithSnapshotId(System.String[])">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="list">The ID of the Amazon EBS snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.WithOwner(System.String)">
- <summary>
- Sets the Owner property
- </summary>
- <param name="owner">Returns snapshots owned by the specified
- owner. Valid Values: self |
- amazon | AWS
- Account ID</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.IsSetOwner">
- <summary>
- Checks if Owner property is set
- </summary>
- <returns>true if Owner property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.WithRestorableBy(System.String)">
- <summary>
- Sets the RestorableBy property
- </summary>
- <param name="restorableBy">Account ID of a user that can create volumes
- from the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.IsSetRestorableBy">
- <summary>
- Checks if RestorableBy property is set
- </summary>
- <returns>true if RestorableBy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with
- the specified Snapshots.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotsRequest.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the Amazon EBS snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotsRequest.Owner">
- <summary>
- Gets and sets the Owner property.
- Returns snapshots owned by the specified
- owner. Valid Values: self |
- amazon | AWS
- Account ID
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotsRequest.RestorableBy">
- <summary>
- Gets and sets the RestorableBy property.
- Account ID of a user that can create volumes
- from the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with
- the specified Snapshots.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeRouteTablesResult">
- <summary>
- DescribeRouteTables Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesResult.IsSetRouteTables">
- <summary>
- Checks if RouteTables property is set
- </summary>
- <returns>true if RouteTables property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRouteTablesResult.RouteTables">
- <summary>
- Gets and sets the RouteTables property.
- A list of route tables.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribePlacementGroupsResponse">
- <summary>
- Information returned by the DescribePlacementGroup request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsResponse.IsSetDescribePlacementGroupsResult">
- <summary>
- Checks if DescribePlacementGroupsResult property is set
- </summary>
- <returns>true if DescribePlacementGroupsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribePlacementGroupsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribePlacementGroupsResponse.DescribePlacementGroupsResult">
- <summary>
- Gets and sets the DescribePlacementGroupsResult property.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesResponse.IsSetDescribeLicensesResult">
- <summary>
- Checks if DescribeLicensesResult property is set
- </summary>
- <returns>true if DescribeLicensesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeLicensesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeLicensesResponse.DescribeLicensesResult">
- <summary>
- Gets and sets the DescribeLicensesResult property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeCustomerGatewaysResponse">
- <summary>
- Describe Customer Gateways Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysResponse.IsSetDescribeCustomerGatewaysResult">
- <summary>
- Checks if DescribeCustomerGatewaysResult property is set
- </summary>
- <returns>true if DescribeCustomerGatewaysResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeCustomerGatewaysResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeCustomerGatewaysResponse.DescribeCustomerGatewaysResult">
- <summary>
- Gets and sets the DescribeCustomerGatewaysResult property.
- Describe Customer Gateways Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeConversionTasksRequest">
- <summary>
- Describes your conversion tasks. For more information, go to Importing Your Virtual Machines and Volumes into Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksRequest.WithConversionTaskId(System.String[])">
- <summary>
- Sets the ConversionTaskId property
- </summary>
- <param name="list">A list of conversion tasks.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksRequest.IsSetConversionTaskId">
- <summary>
- Checks if ConversionTaskId property is set
- </summary>
- <returns>true if ConversionTaskId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeConversionTasksRequest.ConversionTaskId">
- <summary>
- Gets and sets the ConversionTaskId property.
- A list of conversion tasks.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeBundleTasksResult">
- <summary>
- Describe Bundle Tasks Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksResult.IsSetBundleTask">
- <summary>
- Checks if BundleTask property is set
- </summary>
- <returns>true if BundleTask property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeBundleTasksResult.BundleTask">
- <summary>
- Gets and sets the BundleTask property.
- Bundle Task
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeAvailabilityZonesRequest">
- <summary>
- Displays Availability Zones that are currently
- available to the account and their states.
-
- Availability Zones are
- not the same across accounts. The Availability Zone
- us-east-1a for account A is not necessarily the
- same as us-east-1a for account B.
- Zone assignments are mapped independently for each account.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesRequest.WithZoneName(System.String[])">
- <summary>
- Sets the ZoneName property
- </summary>
- <param name="list">Availability Zone name.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesRequest.IsSetZoneName">
- <summary>
- Checks if ZoneName property is set
- </summary>
- <returns>true if ZoneName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with the specified
- AvailabilityZones.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAvailabilityZonesRequest.ZoneName">
- <summary>
- Gets and sets the ZoneName property.
- Availability Zone name.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAvailabilityZonesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with the specified
- AvailabilityZones.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeregisterImageResponse">
- <summary>
- Deregister Image Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeregisterImageResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeregisterImageResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeregisterImageResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeregisterImageResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpnConnectionRequest">
- <summary>
- The response includes information that you need
- to configure your customer gateway, in XML format.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionRequest.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The type of VPN connection</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionRequest.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionRequest.WithCustomerGatewayId(System.String)">
- <summary>
- Sets the CustomerGatewayId property
- </summary>
- <param name="customerGatewayId">The ID of the customer gateway.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionRequest.IsSetCustomerGatewayId">
- <summary>
- Checks if CustomerGatewayId property is set
- </summary>
- <returns>true if CustomerGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionRequest.WithVpnGatewayId(System.String)">
- <summary>
- Sets the VpnGatewayId property
- </summary>
- <param name="vpnGatewayId">The ID of the VPN gateway.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionRequest.IsSetVpnGatewayId">
- <summary>
- Checks if VpnGatewayId property is set
- </summary>
- <returns>true if VpnGatewayId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnConnectionRequest.Type">
- <summary>
- Gets and sets the Type property.
- The type of VPN connection
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnConnectionRequest.CustomerGatewayId">
- <summary>
- Gets and sets the CustomerGatewayId property.
- The ID of the customer gateway.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnConnectionRequest.VpnGatewayId">
- <summary>
- Gets and sets the VpnGatewayId property.
- The ID of the VPN gateway.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ConfirmProductInstanceRequest">
- <summary>
- Verifies whether a Amazon DevPay product code is associated with an
- instance. This can only be executed by the owner of the AMI and is
- useful when an AMI owner wants to verify whether a user's instance is
- eligible for support.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceRequest.WithProductCode(System.String)">
- <summary>
- Sets the ProductCode property
- </summary>
- <param name="productCode">The product code to confirm.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceRequest.IsSetProductCode">
- <summary>
- Checks if ProductCode property is set
- </summary>
- <returns>true if ProductCode property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The instance to confirm.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ConfirmProductInstanceRequest.ProductCode">
- <summary>
- Gets and sets the ProductCode property.
- The product code to confirm.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConfirmProductInstanceRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The instance to confirm.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelBundleTaskRequest">
- <summary>
- Cancels an Amazon EC2 bundling operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskRequest.WithBundleId(System.String)">
- <summary>
- Sets the BundleId property
- </summary>
- <param name="bundleId">The ID of the bundle task to cancel.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskRequest.IsSetBundleId">
- <summary>
- Checks if BundleId property is set
- </summary>
- <returns>true if BundleId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelBundleTaskRequest.BundleId">
- <summary>
- Gets and sets the BundleId property.
- The ID of the bundle task to cancel.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AuthorizeSecurityGroupIngressResponse">
- <summary>
- Authorize Security GroupIngress Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.AmazonEC2Client">
- <summary>
- AmazonEC2Client is an implementation of AmazonEC2;
- the client allows you to manage your AmazonEC2 resources.<br />
- If you want to use the AmazonEC2Client from a Medium Trust
- hosting environment, please create the client with an
- AmazonEC2Config object whose UseSecureStringForAwsSecretKey
- property is false.
- </summary>
- <remarks>
- The Amazon Elastic Compute Cloud (Amazon EC2) web
- service provides you with
- the ability to execute your applications in
- Amazon's computing environment.
- To use Amazon EC2 you simply:
- 1. Create an Amazon Machine Image (AMI) containing all your software,
- including your operating system and associated configuration settings,
- applications, libraries, etc. Think of this as zipping up the contents
- of your hard drive. We provide all the necessary tools to create and
- package your AMI.
- 2. Upload this AMI to the Amazon S3 (Amazon Simple
- Storage Service) service. This gives us reliable,
- secure access to your AMI.
- 3. Register your AMI with Amazon EC2. This allows us to verify
- that your AMI has been uploaded correctly and to allocate a unique
- identifier for it.
- 4. Use this AMI ID and the Amazon EC2 web service
- APIs to run, monitor, and
- terminate as many instances of this AMI as
- required.
- You can also skip the first three steps and choose to launch
- an AMI that is provided by Amazon or shared by another user.
- While instances are running, you are billed for the computing
- and network resources that they consume.
- You can also skip the first three steps
- and choose to launch an AMI that is
- provided by Amazon or shared by
- another user.
- While instances are running, you are billed for the
- computing and network
- resources that they consume.
- </remarks>
- <seealso cref="P:Amazon.EC2.AmazonEC2Config.UseSecureStringForAwsSecretKey"/>
- </member>
- <member name="T:Amazon.EC2.AmazonEC2">
- <summary>
- The Amazon Elastic Compute Cloud (Amazon EC2) web
- service provides you with
- the ability to execute your applications in
- Amazon's computing environment.
- To use Amazon EC2 you simply:
- 1. Create an Amazon Machine Image (AMI) containing all your software,
- including your operating system and associated configuration settings,
- applications, libraries, etc. Think of this as zipping up the contents
- of your hard drive. We provide all the necessary tools to create and
- package your AMI.
- 2. Upload this AMI to the Amazon S3 (Amazon Simple
- Storage Service) service. This gives us reliable,
- secure access to your AMI.
- 3. Register your AMI with Amazon EC2. This allows us to verify
- that your AMI has been uploaded correctly and to allocate a unique
- identifier for it.
- 4. Use this AMI ID and the Amazon EC2 web service
- APIs to run, monitor, and
- terminate as many instances of this AMI as
- required.
- You can also skip the first three steps and choose to launch
- an AMI that is provided by Amazon or shared by another user.
- While instances are running, you are billed for the computing
- and network resources that they consume.
- You can also skip the first three steps
- and choose to launch an AMI that is
- provided by Amazon or shared by
- another user.
- While instances are running, you are billed for the
- computing and network
- resources that they consume.
- </summary>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ActivateLicense(Amazon.EC2.Model.ActivateLicenseRequest)">
- <summary>
- Activate License
- </summary>
- <param name="request">Activate License request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Activate License Response from the service</returns>
- <remarks>
- Activates a specific number of licenses for a 90-day period.
- Activations can be done against a specific license ID.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AllocateAddress(Amazon.EC2.Model.AllocateAddressRequest)">
- <summary>
- Allocate Address
- </summary>
- <param name="request">Allocate Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Allocate Address Response from the service</returns>
- <remarks>
- The AllocateAddress operation acquires an elastic
- IP address for use with your account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AssociateAddress(Amazon.EC2.Model.AssociateAddressRequest)">
- <summary>
- Associate Address
- </summary>
- <param name="request">Associate Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Associate Address Response from the service</returns>
- <remarks>
- The AssociateAddress operation associates an
- elastic IP address with an instance.
- If the IP address is currently
- assigned to another instance, the IP
- address is assigned to the new
- instance. This is an idempotent operation. If you enter
- it more than once, Amazon EC2 does not return an error.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AttachVolume(Amazon.EC2.Model.AttachVolumeRequest)">
- <summary>
- Attach Volume
- </summary>
- <param name="request">Attach Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Attach Volume Response from the service</returns>
- <remarks>
- Attach a previously created volume to a running
- instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AuthorizeSecurityGroupIngress(Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest)">
- <summary>
- Authorize Security Group Ingress
- </summary>
- <param name="request">Authorize Security Group Ingress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Authorize Security Group Ingress Response from the service</returns>
- <remarks>
- The AuthorizeSecurityGroupIngress operation adds
- permissions to a security group.
- Permissions are specified by the IP
- protocol (TCP, UDP or ICMP), the source of
- the request (by IP range
- or an Amazon EC2 user-group pair), the
- source and destination port ranges (for TCP and UDP),
- and the ICMP codes and types (for ICMP).
- When authorizing ICMP, -1 can be used as a wildcard in the
- type and code fields.
- Permission changes are propagated to instances within the
- security group as quickly as possible. However, depending on the
- number of instances, a small
- delay might occur.
- When authorizing a user/group pair permission, GroupName,
- SourceSecurityGroupName and
- SourceSecurityGroupOwnerId must be
- specified. When authorizing a CIDR
- IP permission, GroupName, IpProtocol, FromPort, ToPort and
- CidrIp must be specified. Mixing these two types of parameters is
- not allowed.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.BundleInstance(Amazon.EC2.Model.BundleInstanceRequest)">
- <summary>
- Bundle Instance
- </summary>
- <param name="request">Bundle Instance request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Bundle Instance Response from the service</returns>
- <remarks>
- The BundleInstance operation request that an
- instance is bundled the next time it boots.
- The bundling process creates a new image from a running instance and
- stores the AMI data in S3. Once bundled, the image must be registered in the
- normal way using the RegisterImage API.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CancelBundleTask(Amazon.EC2.Model.CancelBundleTaskRequest)">
- <summary>
- Cancel Bundle Task
- </summary>
- <param name="request">Cancel Bundle Task request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Cancel Bundle Task Response from the service</returns>
- <remarks>
- CancelBundleTask operation cancels a pending or
- in-progress bundling task. This is an asynchronous
- call and it make
- take a while for the task to be cancelled.
- If a task is cancelled
- while it is storing items,
- there may be parts of the incomplete AMI
- stored in S3.
- It is up to the caller to clean up these parts from S3.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ConfirmProductInstance(Amazon.EC2.Model.ConfirmProductInstanceRequest)">
- <summary>
- Confirm Product Instance
- </summary>
- <param name="request">Confirm Product Instance request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Confirm Product Instance Response from the service</returns>
- <remarks>
- The ConfirmProductInstance operation returns true
- if the specified product code
- is attached to the specified instance.
- The operation returns false if the
- product code is not attached to the
- instance.
- The ConfirmProductInstance operation can only be executed
- by the owner of the
- AMI. This feature is useful when an AMI owner is
- providing support and wants to
- verify whether a user's instance is eligible.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateImage(Amazon.EC2.Model.CreateImageRequest)">
- <summary>
- Create Image
- </summary>
- <param name="request">Create Image request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Image Response from the service</returns>
- <remarks>
- Creates an AMI that uses an Amazon EBS root
- device from a "running" or "stopped" instance.
- AMIs that use an Amazon EBS root device boot
- faster than AMIs that use instance stores. They
- can be up to 1 TiB in size, use storage that
- persists on instance failure, and can be stopped and started.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateKeyPair(Amazon.EC2.Model.CreateKeyPairRequest)">
- <summary>
- Create Key Pair
- </summary>
- <param name="request">Create Key Pair request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Key Pair Response from the service</returns>
- <remarks>
- The CreateKeyPair operation creates a new 2048
- bit RSA key pair and returns a
- unique ID that can be used to reference
- this key pair when launching new
- instances. For more information, see
- RunInstances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreatePlacementGroup(Amazon.EC2.Model.CreatePlacementGroupRequest)">
- <summary>
- Create Placement Group
- </summary>
- <param name="request">Create Placement Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Placement Group Response from the service</returns>
- <remarks>
- The CreateKeyPair operation creates a new 2048
- bit RSA key pair and returns a
- unique ID that can be used to reference
- this key pair when launching new
- instances. For more information, see
- RunInstances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateSecurityGroup(Amazon.EC2.Model.CreateSecurityGroupRequest)">
- <summary>
- Create Security Group
- </summary>
- <param name="request">Create Security Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Security Group Response from the service</returns>
- <remarks>
- The CreateSecurityGroup operation creates a new
- security group.
- Every instance is launched in a security group. If no security group is
- specified during launch, the instances are launched in the default
- security group. Instances within the same security
- group have unrestricted network access to each other. Instances will
- reject network access attempts from other instances in a different
- security group. As the owner of instances you can grant or revoke
- specific permissions using the AuthorizeSecurityGroupIngress
- and RevokeSecurityGroupIngress operations.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateSnapshot(Amazon.EC2.Model.CreateSnapshotRequest)">
- <summary>
- Create Snapshot
- </summary>
- <param name="request">Create Snapshot request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Snapshot Response from the service</returns>
- <remarks>
- Create a snapshot of the volume identified by
- volume ID. A volume does not have to be detached
- at the time the snapshot is taken.
- Important Note:
- Snapshot creation requires that the
- system is in a consistent state.
- For instance, this means that if
- taking a snapshot of a database, the
- tables must be read-only locked
- to ensure that the snapshot will not contain a
- corrupted version of the database. Therefore,
- be careful when using this API to ensure that
- the system remains in the consistent state until the create
- snapshot status has returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateTags(Amazon.EC2.Model.CreateTagsRequest)">
- <summary>
- Create Tags
- </summary>
- <param name="request">Create Tags request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Tags Response from the service</returns>
- <remarks>
- Adds or overwrites one or more tags for the specified resource or
- resources. Each resource can have a maximum of 10 tags. Each tag consists
- of a key and optional value. Tag keys must be unique per resource.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateVolume(Amazon.EC2.Model.CreateVolumeRequest)">
- <summary>
- Create Volume
- </summary>
- <param name="request">Create Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Volume Response from the service</returns>
- <remarks>
- Initializes an empty volume of a given size
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeactivateLicense(Amazon.EC2.Model.DeactivateLicenseRequest)">
- <summary>
- Deactivate License
- </summary>
- <param name="request">Deactivate License request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Deactivate License Response from the service</returns>
- <remarks>
- Deactivates a specific number of licenses.
- Deactivations can be done against a specific license ID
- after they have persisted for at least a 90-day period.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteKeyPair(Amazon.EC2.Model.DeleteKeyPairRequest)">
- <summary>
- Delete Key Pair
- </summary>
- <param name="request">Delete Key Pair request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Key Pair Response from the service</returns>
- <remarks>
- The DeleteKeyPair operation deletes a key pair.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeletePlacementGroup(Amazon.EC2.Model.DeletePlacementGroupRequest)">
- <summary>
- Delete Placement Group
- </summary>
- <param name="request">Delete Placement Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Placement Group Response from the service</returns>
- <remarks>
- The DeletePlacementGroup operation deletes a placement group.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteSecurityGroup(Amazon.EC2.Model.DeleteSecurityGroupRequest)">
- <summary>
- Delete Security Group
- </summary>
- <param name="request">Delete Security Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Security Group Response from the service</returns>
- <remarks>
- The DeleteSecurityGroup operation deletes a
- security group.
- Note:
- If you attempt to delete a security group that
- contains instances, a fault is returned.
- If you attempt to delete a
- security group that is referenced by
- another security group, a fault
- is returned. For example, if security group B has a
- rule that allows access from security group A, security group A
- cannot be deleted until the allow rule is removed.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteSnapshot(Amazon.EC2.Model.DeleteSnapshotRequest)">
- <summary>
- Delete Snapshot
- </summary>
- <param name="request">Delete Snapshot request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Snapshot Response from the service</returns>
- <remarks>
- Deletes the snapshot identitied by snapshotId.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteTags(Amazon.EC2.Model.DeleteTagsRequest)">
- <summary>
- Delete Tags
- </summary>
- <param name="request">Delete Tags request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Tags Response from the service</returns>
- <remarks>
- Deletes the snapshot identitied by snapshotId.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteVolume(Amazon.EC2.Model.DeleteVolumeRequest)">
- <summary>
- Delete Volume
- </summary>
- <param name="request">Delete Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Volume Response from the service</returns>
- <remarks>
- Deletes a previously created volume. Once
- successfully deleted, a new
- volume can be created with the same name.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeregisterImage(Amazon.EC2.Model.DeregisterImageRequest)">
- <summary>
- Deregister Image
- </summary>
- <param name="request">Deregister Image request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Deregister Image Response from the service</returns>
- <remarks>
- The DeregisterImage operation deregisters an AMI.
- Once deregistered, instances
- of the AMI can no longer be launched.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeAddresses(Amazon.EC2.Model.DescribeAddressesRequest)">
- <summary>
- Describe Addresses
- </summary>
- <param name="request">Describe Addresses request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Addresses Response from the service</returns>
- <remarks>
- The DescribeAddresses operation lists elastic IP
- addresses assigned to your account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeAvailabilityZones(Amazon.EC2.Model.DescribeAvailabilityZonesRequest)">
- <summary>
- Describe Availability Zones
- </summary>
- <param name="request">Describe Availability Zones request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Availability Zones Response from the service</returns>
- <remarks>
- The DescribeAvailabilityZones operation describes
- availability zones that are
- currently available to the account and
- their states.
- Availability zones are not the same across accounts.
- The availability zone
- us-east-1a for account A is not necessarily the
- same as us-east-1a for account
- B. Zone assignments are mapped
- independently for each account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeBundleTasks(Amazon.EC2.Model.DescribeBundleTasksRequest)">
- <summary>
- Describe Bundle Tasks
- </summary>
- <param name="request">Describe Bundle Tasks request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Bundle Tasks Response from the service</returns>
- <remarks>
- The DescribeBundleTasks operation describes in-progress
- and recent bundle tasks. Complete and failed tasks are
- removed from the list a short time after completion.
- If no bundle ids are given, all bundle tasks are returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeLicenses(Amazon.EC2.Model.DescribeLicensesRequest)">
- <summary>
- Describe Licenses
- </summary>
- <param name="request">Describe Licenses request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Licenses Response from the service</returns>
- <remarks>
- Provides details of a user's registered licenses. Zero or more IDs
- may be specified on the call. When one or more license IDs are
- specified, only data for the specified IDs are returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribePlacementGroups(Amazon.EC2.Model.DescribePlacementGroupsRequest)">
- <summary>
- Describe Placement Groups
- </summary>
- <param name="request">Describe Placement Groups request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Placement Groups Response from the service</returns>
- <remarks>
- Returns information about one or more PlacementGroup instances in a
- user's account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeSnapshotAttribute(Amazon.EC2.Model.DescribeSnapshotAttributeRequest)">
- <summary>
- Describe Snapshot Attribute
- </summary>
- <param name="request">Describe Snapshot Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Snapshot Attribute Response from the service</returns>
- <remarks>
- Returns information about an attribute of a snapshot.
- Only one attribute can be specified per call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeImageAttribute(Amazon.EC2.Model.DescribeImageAttributeRequest)">
- <summary>
- Describe Image Attribute
- </summary>
- <param name="request">Describe Image Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Image Attribute Response from the service</returns>
- <remarks>
- The DescribeImageAttribute operation returns
- information about an attribute of
- an AMI. Only one attribute can be
- specified per call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeImages(Amazon.EC2.Model.DescribeImagesRequest)">
- <summary>
- Describe Images
- </summary>
- <param name="request">Describe Images request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Images Response from the service</returns>
- <remarks>
- The DescribeImages operation returns information
- about AMIs, AKIs, and ARIs
- available to the user. Information returned
- includes image type, product codes,
- architecture, and kernel and RAM
- disk IDs. Images available to the user include
- public images
- available for any user to launch, private images owned
- by the user making the request, and private images
- owned by other users for which the
- user has explicit launch permissions.
- Launch permissions fall into three categories:
- Public:
- The owner of the AMI granted launch permissions for the AMI to the all
- group. All users have launch permissions for these AMIs.
- Explicit:
- The owner of the AMI granted launch permissions to a specific user.
- Implicit:
- A user has implicit launch permissions for all AMIs he or she owns.
- The list of AMIs returned can be modified by specifying AMI IDs, AMI
- owners, or users with launch permissions. If no options are specified,
- Amazon EC2 returns all AMIs for which the user has launch permissions.
- If you specify one or more AMI IDs, only AMIs that have the specified
- IDs are returned. If you specify an invalid AMI ID, a fault is returned.
- If you specify an AMI ID for which you do not have access, it will not
- be included in the returned results.
- If you specify one or more AMI
- owners, only AMIs from the specified
- owners and for which you have
- access are returned. The results can include the
- account IDs of the specified owners, amazon for
- AMIs owned by Amazon or self for AMIs that you own.
- If you specify a list of executable users, only users
- that have launch
- permissions for the AMIs are returned. You can
- specify account IDs
- (if you own
- the AMI(s)), self for AMIs for which
- you own or have explicit
- permissions, or
- all for public AMIs.
- Note:
- Deregistered images are included in the returned results for an
- unspecified
- interval after deregistration.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeInstances(Amazon.EC2.Model.DescribeInstancesRequest)">
- <summary>
- Describe Instances
- </summary>
- <param name="request">Describe Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Instances Response from the service</returns>
- <remarks>
- The DescribeInstances operation returns
- information about instances that you own.
- If you specify one or more instance IDs, Amazon EC2 returns
- information for those instances. If you do not specify
- instance IDs, Amazon EC2 returns information for
- all relevant instances. If you specify an invalid
- instance ID, a fault is returned. If you specify an instance
- that you do not own, it will
- not be included in the returned results.
- Recently terminated instances might appear in the
- returned results. This interval is usually less than one hour.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeRegions(Amazon.EC2.Model.DescribeRegionsRequest)">
- <summary>
- Describe Regions
- </summary>
- <param name="request">Describe Regions request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Regions Response from the service</returns>
- <remarks>
- The DescribeRegions operation describes regions
- zones that are
- currently available to the account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeReservedInstances(Amazon.EC2.Model.DescribeReservedInstancesRequest)">
- <summary>
- Describe Reserved Instances
- </summary>
- <param name="request">Describe Reserved Instances request</param>
- <returns>Describe Reserved Instances Response from the service</returns>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <remarks>
- The DescribeReservedInstances operation describes
- Reserved Instances
- that were purchased for use with your account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeReservedInstancesOfferings(Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest)">
- <summary>
- Describe Reserved Instances Offerings
- </summary>
- <param name="request">Describe Reserved Instances Offerings request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Reserved Instances Offerings Response from the service</returns>
- <remarks>
- The DescribeReservedInstancesOfferings operation
- describes Reserved
- Instance offerings that are available for
- purchase. With Amazon EC2
- Reserved Instances, you purchase the right
- to launch Amazon EC2 instances
- for a period of time (without getting
- insufficient capacity errors) and
- pay a lower usage rate for the
- actual time used.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeKeyPairs(Amazon.EC2.Model.DescribeKeyPairsRequest)">
- <summary>
- Describe Key Pairs
- </summary>
- <param name="request">Describe Key Pairs request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Key Pairs Response from the service</returns>
- <remarks>
- The DescribeKeyPairs operation returns information about key pairs
- available to you. If you specify key pairs, information about
- those key pairs is returned. Otherwise,
- information for all registered key pairs is returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeSecurityGroups(Amazon.EC2.Model.DescribeSecurityGroupsRequest)">
- <summary>
- Describe Security Groups
- </summary>
- <param name="request">Describe Security Groups request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Security Groups Response from the service</returns>
- <remarks>
- The DescribeSecurityGroups operation returns
- information about security groups
- that you own.
- If you specify security group names, information about those security
- group is returned. Otherwise, information for all security group is
- returned. If you specify a group that does not exist, a fault is returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeSnapshots(Amazon.EC2.Model.DescribeSnapshotsRequest)">
- <summary>
- Describe Snapshots
- </summary>
- <param name="request">Describe Snapshots request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Snapshots Response from the service</returns>
- <remarks>
- Describes the indicated snapshots, or in lieu of
- that, all snapshots owned by the caller.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeTags(Amazon.EC2.Model.DescribeTagsRequest)">
- <summary>
- Describe Tags
- </summary>
- <param name="request">Describe Tags request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Tags Response from the service</returns>
- <remarks>
- Describes the indicated snapshots, or in lieu of
- that, all snapshots owned by the caller.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeVolumes(Amazon.EC2.Model.DescribeVolumesRequest)">
- <summary>
- Describe Volumes
- </summary>
- <param name="request">Describe Volumes request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Volumes Response from the service</returns>
- <remarks>
- Describes the status of the indicated or, in lieu
- of any specified, all
- volumes belonging to the caller.
- Volumes that
- have been deleted are not described.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DetachVolume(Amazon.EC2.Model.DetachVolumeRequest)">
- <summary>
- Detach Volume
- </summary>
- <param name="request">Detach Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Detach Volume Response from the service</returns>
- <remarks>
- Detach a previously attached volume from a
- running instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DisassociateAddress(Amazon.EC2.Model.DisassociateAddressRequest)">
- <summary>
- Disassociate Address
- </summary>
- <param name="request">Disassociate Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Disassociate Address Response from the service</returns>
- <remarks>
- The DisassociateAddress operation disassociates
- the specified elastic IP
- address from the instance to which it is
- assigned. This is an idempotent
- operation. If you enter it more than
- once, Amazon EC2 does not
- return an error.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.GetPasswordData(Amazon.EC2.Model.GetPasswordDataRequest)">
- <summary>
- Get Password Data
- </summary>
- <param name="request">Get Password Data request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Get Password Data Response from the service</returns>
- <remarks>
- Retrieves the encrypted administrator password
- for the instances running
- Windows.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.GetConsoleOutput(Amazon.EC2.Model.GetConsoleOutputRequest)">
- <summary>
- Get Console Output
- </summary>
- <param name="request">Get Console Output request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Get Console Output Response from the service</returns>
- <remarks>
- The GetConsoleOutput operation retrieves console
- output for the specified instance.
- Instance console output is buffered
- and posted shortly after instance boot,
- reboot, and termination. Amazon EC2 preserves the
- most recent 64 KB output which will be
- available for at least one hour after the most recent post.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ImportKeyPair(Amazon.EC2.Model.ImportKeyPairRequest)">
- <summary>
- Import Key Pair
- </summary>
- <param name="request">Import Key Pair request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Import Key Pair Response from the service</returns>
- <remarks>
- The GetConsoleOutput operation retrieves console
- output for the specified instance.
- Instance console output is buffered
- and posted shortly after instance boot,
- reboot, and termination. Amazon EC2 preserves the
- most recent 64 KB output which will be
- available for at least one hour after the most recent post.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ModifySnapshotAttribute(Amazon.EC2.Model.ModifySnapshotAttributeRequest)">
- <summary>
- Modify Snapshot Attribute
- </summary>
- <param name="request">Modify Snapshot Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Modify Snapshot Attribute Response from the service</returns>
- <remarks>
- Adds or remove permission settings for the
- specified snapshot.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ModifyImageAttribute(Amazon.EC2.Model.ModifyImageAttributeRequest)">
- <summary>
- Modify Image Attribute
- </summary>
- <param name="request">Modify Image Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Modify Image Attribute Response from the service</returns>
- <remarks>
- The ModifyImageAttribute operation modifies an
- attribute of an AMI.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.PurchaseReservedInstancesOffering(Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest)">
- <summary>
- Purchase Reserved Instances Offering
- </summary>
- <param name="request">Purchase Reserved Instances Offering request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Purchase Reserved Instances Offering Response from the service</returns>
- <remarks>
- The PurchaseReservedInstancesOffering operation
- purchases a Reserved Instance for use with your account.
- With Amazon EC2 Reserved Instances, you purchase the
- right to launch Amazon EC2 instances for a period of time
- (without getting insufficient capacity errors) and pay a
- lower usage rate for the actual time used.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.RebootInstances(Amazon.EC2.Model.RebootInstancesRequest)">
- <summary>
- Reboot Instances
- </summary>
- <param name="request">Reboot Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reboot Instances Response from the service</returns>
- <remarks>
- The RebootInstances operation requests a reboot
- of one or more instances. This
- operation is asynchronous; it only
- queues a request to reboot the specified
- instance(s). The operation
- will succeed if the instances are valid
- and belong to the user.
- Requests to reboot terminated instances are ignored.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.RegisterImage(Amazon.EC2.Model.RegisterImageRequest)">
- <summary>
- Register Image
- </summary>
- <param name="request">Register Image request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Register Image Response from the service</returns>
- <remarks>
- The RegisterImage operation registers an AMI with
- Amazon EC2. Images must be
- registered before they can be launched. For
- more information, see RunInstances.
- Each AMI is associated with an
- unique ID which is provided by the Amazon EC2
- service through the RegisterImage operation.
- During registration, Amazon EC2
- retrieves the specified image manifest from
- Amazon S3 and verifies that the image
- is owned by the user registering the image.
- The image manifest is retrieved once and stored within the Amazon EC2.
- Any modifications to an image in Amazon S3 invalidates this
- registration. If you make changes to an image, deregister the
- previous image and register the new
- image. For more information, see DeregisterImage.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ReleaseAddress(Amazon.EC2.Model.ReleaseAddressRequest)">
- <summary>
- Release Address
- </summary>
- <param name="request">Release Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Release Address Response from the service</returns>
- <remarks>
- The ReleaseAddress operation releases an elastic
- IP address associated with your account.
- Note:
- Releasing an IP address
- automatically disassociates it from any instance with
- which it is associated. For more information, see
- DisassociateAddress.
- Important:
- After releasing an elastic IP address, it is released to the IP
- address pool and might no longer be available to your account. Make
- sure to update your DNS records and any servers or devices that
- communicate with the address.
- If you run this operation on an elastic
- IP address that is already released,
- the address might be assigned to
- another account which will cause
- Amazon EC2 to return an error.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ResetSnapshotAttribute(Amazon.EC2.Model.ResetSnapshotAttributeRequest)">
- <summary>
- Reset Snapshot Attribute
- </summary>
- <param name="request">Reset Snapshot Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reset Snapshot Attribute Response from the service</returns>
- <remarks>
- Resets permission settings for the specified
- snapshot.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ResetImageAttribute(Amazon.EC2.Model.ResetImageAttributeRequest)">
- <summary>
- Reset Image Attribute
- </summary>
- <param name="request">Reset Image Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reset Image Attribute Response from the service</returns>
- <remarks>
- The ResetImageAttribute operation resets an
- attribute of an AMI to its default value.
- Note:
- The productCodes
- attribute cannot be reset.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.RevokeSecurityGroupIngress(Amazon.EC2.Model.RevokeSecurityGroupIngressRequest)">
- <summary>
- Revoke Security Group Ingress
- </summary>
- <param name="request">Revoke Security Group Ingress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Revoke Security Group Ingress Response from the service</returns>
- <remarks>
- The RevokeSecurityGroupIngress operation revokes
- permissions from a security
- group. The permissions used to revoke must
- be specified using the same values
- used to grant the permissions.
- Permissions are specified by IP protocol (TCP, UDP, or ICMP), the
- source of the request (by IP range or an Amazon EC2 user-group pair),
- the source and destination port ranges (for TCP and UDP), and the ICMP
- codes and types (for ICMP).
- Permission changes are quickly propagated
- to instances within the security
- group. However, depending on the
- number of instances in the group, a
- small delay is might occur, .
- When revoking a user/group pair permission, GroupName,
- SourceSecurityGroupName
- and SourceSecurityGroupOwnerId must be
- specified. When authorizing a
- CIDR IP permission, GroupName,
- IpProtocol, FromPort, ToPort and CidrIp must be
- specified. Mixing these two types of parameters is not allowed.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.RunInstances(Amazon.EC2.Model.RunInstancesRequest)">
- <summary>
- Run Instances
- </summary>
- <param name="request">Run Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Run Instances Response from the service</returns>
- <remarks>
- The RunInstances operation launches a specified
- number of instances.
- If Amazon EC2 cannot launch the minimum number
- AMIs you request, no instances
- launch. If there is insufficient
- capacity to launch the maximum number of AMIs
- you request, Amazon EC2
- launches as many as possible to satisfy the
- requested maximum values.
- Every instance is launched in a security group. If you do not
- specify a security group at launch, the instances start in your
- default security group. For more information on creating security
- groups, see CreateSecurityGroup.
- An optional instance type can be
- specified. For information about
- instance types, see Instance Types.
- You can provide an optional key pair ID for each image in the launch
- request (for more information, see CreateKeyPair). All instances that
- are created from images that use this key pair will have access to the
- associated public key at boot. You can use this key to provide secure
- access to an instance of an image on a per-instance basis. Amazon EC2
- public images use this feature to provide secure access without passwords.
- Important:
- Launching public images without a key pair ID will leave them inaccessible.
- The public key material is made available to the instance at boot
- time by placing it in the openssh_id.pub file on a logical device that is exposed
- to the instance as /dev/sda2 (the ephemeral store). The format of this
- file is suitable for use as an entry within ~/.ssh/authorized_keys (the
- OpenSSH format). This can be done at boot (e.g., as part of rc.local)
- allowing for secure access without passwords.
- Optional user data can be provided in the launch request. All instances that
- collectively comprise the launch request have access to this data
- For more information, see Instance Metadata.
- Note:
- If any of the AMIs have a product code attached for which the user has
- not subscribed, the RunInstances call will fail.
- Important:
- We strongly recommend using
- the 2.6.18 Xen stock kernel with the
- c1.medium and c1.xlarge
- instances. Although the default Amazon EC2 kernels will work, the
- new kernels provide greater stability and performance for these
- instance types. For more information about kernels, see Kernels, RAM
- Disks, and Block Device Mappings.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.StopInstances(Amazon.EC2.Model.StopInstancesRequest)">
- <summary>
- Stop Instances
- </summary>
- <param name="request">Stop Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Stop Instances Response from the service</returns>
- <remarks>
- Stops an instance that uses an Amazon EBS volume
- as its root device. Instances that use Amazon EBS volumes as their
- root devices can be quickly stopped and started.
- When an instance is stopped, the compute resources are released and you
- are not billed for hourly
- instance usage. However, your root partition Amazon EBS
- volume remains, continues to persist your
- data, and you are charged for Amazon EBS volume usage. You can restart
- your instance at any time.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.StartInstances(Amazon.EC2.Model.StartInstancesRequest)">
- <summary>
- Start Instances
- </summary>
- <param name="request">Start Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Start Instances Response from the service</returns>
- <remarks>
- Starts an instance that uses an Amazon EBS volume as its root device.
- Instances that use Amazon EBS volumes as their root devices can be
- quickly stopped and started. When an instance is
- stopped, the compute resources are released and you
- are not billed for hourly instance usage. However, your root
- partition Amazon EBS volume remains, continues to persist your
- data, and you are charged for Amazon EBS volume usage. You can restart
- your instance at any time.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ModifyInstanceAttribute(Amazon.EC2.Model.ModifyInstanceAttributeRequest)">
- <summary>
- Modify Instance Attribute
- </summary>
- <param name="request">Modify Instance Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Modify Instance Attribute Response from the service</returns>
- <remarks>
- Modifies an attribute of an instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ResetInstanceAttribute(Amazon.EC2.Model.ResetInstanceAttributeRequest)">
- <summary>
- Reset Instance Attribute
- </summary>
- <param name="request">Reset Instance Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reset Instance Attribute Response from the service</returns>
- <remarks>
- Resets an attribute of an instance to its default
- value.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeInstanceAttribute(Amazon.EC2.Model.DescribeInstanceAttributeRequest)">
- <summary>
- Describe Instance Attribute
- </summary>
- <param name="request">Describe Instance Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Instance Attribute Response from the service</returns>
- <remarks>
- Returns information about an attribute of an
- instance. Only one attribute
- can be specified per call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.TerminateInstances(Amazon.EC2.Model.TerminateInstancesRequest)">
- <summary>
- Terminate Instances
- </summary>
- <param name="request">Terminate Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Terminate Instances Response from the service</returns>
- <remarks>
- The TerminateInstances operation shuts down one
- or more instances. This
- operation is idempotent; if you terminate an
- instance more than
- once, each call
- will succeed.
- Terminated instances
- will remain visible after termination (approximately one hour).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.MonitorInstances(Amazon.EC2.Model.MonitorInstancesRequest)">
- <summary>
- Monitor Instances
- </summary>
- <param name="request">Monitor Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Monitor Instances Response from the service</returns>
- <remarks>
- Enables monitoring for a running instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.UnmonitorInstances(Amazon.EC2.Model.UnmonitorInstancesRequest)">
- <summary>
- Unmonitor Instances
- </summary>
- <param name="request">Unmonitor Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Unmonitor Instances Response from the service</returns>
- <remarks>
- Disables monitoring for a running instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeVpnConnections(Amazon.EC2.Model.DescribeVpnConnectionsRequest)">
- <summary>
- Describe Vpn Connections
- </summary>
- <param name="request">Describe Vpn Connections request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Vpn Connections Response from the service</returns>
- <remarks>
- Gives you information about your VPN connections.
- Important -
- We strongly recommend you use HTTPS when calling this operation because the
- response contains sensitive cryptographic information for configuring your customer gateway.
- You can filter the results to return information only about VPN connections
- that match criteria you specify. For example, you could ask to get information
- about a particular VPN connection (or all) only if the VPN's state is pending
- or available. You can specify multiple filters (e.g., the VPN connection is
- associated with a particular VPN gateway, and the gateway's state is
- pending or available). The result includes information for a particular
- VPN connection only if the VPN connection matches all your filters.
- If there's no match, no special message is returned; the response is
- simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeSubnets(Amazon.EC2.Model.DescribeSubnetsRequest)">
- <summary>
- Describe Subnets
- </summary>
- <param name="request">Describe Subnets request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Subnets Response from the service</returns>
- <remarks>
- Gives you information about your subnets. You can filter the results to
- return information only about subnets that match criteria you specify.
- For example, you could ask to get information about a particular subnet
- (or all) only if the subnet's state is available. You can specify multiple
- filters (e.g., the subnet is in a particular VPC, and the subnet's state is
- available). The result includes information for a particular subnet only
- if the subnet matches all your filters. If there's no match, no special
- message is returned; the response is simply empty. The following table
- shows the available filters.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DetachVpnGateway(Amazon.EC2.Model.DetachVpnGatewayRequest)">
- <summary>
- Detach Vpn Gateway
- </summary>
- <param name="request">Detach Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Detach Vpn Gateway Response from the service</returns>
- <remarks>
- Detaches a VPN gateway from a VPC. You do this if you're planning to
- turn off the VPC and not use it anymore. You can confirm a VPN gateway
- has been completely detached from a VPC by describing the VPN gateway
- (any attachments to the VPN gateway are also described).
- You must wait for the attachment's state to switch to detached before you can
- delete the VPC or attach a different VPC to the VPN gateway.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeVpcs(Amazon.EC2.Model.DescribeVpcsRequest)">
- <summary>
- Describe Vpcs
- </summary>
- <param name="request">Describe Vpcs request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Vpcs Response from the service</returns>
- <remarks>
- Gives you information about your VPCs. You can filter the results to return
- information only about VPCs that match criteria you specify. For example,
- you could ask to get information about a particular VPC or VPCs (or all your VPCs)
- only if the VPC's state is available. You can specify multiple filters (e.g.,
- the VPC uses one of several sets of DHCP options, and the VPC's state is available).
- The result includes information for a particular VPC only if the VPC
- matches all your filters. If there's no match, no special message is
- returned; the response is simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteCustomerGateway(Amazon.EC2.Model.DeleteCustomerGatewayRequest)">
- <summary>
- Delete Customer Gateway
- </summary>
- <param name="request">Delete Customer Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Customer Gateway Response from the service</returns>
- <remarks>
- Deletes a customer gateway. You must delete the VPN connection before
- deleting the customer gateway.
- AWS might delete any customer gateway if you leave it inactive for an extended
- period of time (inactive means that there's no VPN connection in use with the
- customer gateway).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AttachVpnGateway(Amazon.EC2.Model.AttachVpnGatewayRequest)">
- <summary>
- Attach Vpn Gateway
- </summary>
- <param name="request">Attach Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Attach Vpn Gateway Response from the service</returns>
- <remarks>
- Attaches a VPN gateway to a VPC. This is the last step required to get your
- VPC fully connected to your data center before launching instances in it.
- For more information, go to Process for Using Amazon VPC in the Amazon Virtual
- Private Cloud Developer Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteDhcpOptions(Amazon.EC2.Model.DeleteDhcpOptionsRequest)">
- <summary>
- Delete Dhcp Options
- </summary>
- <param name="request">Delete Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Dhcp Options Response from the service</returns>
- <remarks>
- Deletes a set of DHCP options that you specify. Amazon VPC returns an error if the
- set of options you specify is currently associated with a VPC. You can disassociate
- the set of options by associating either a new set of options or the default options with the VPC.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteSubnet(Amazon.EC2.Model.DeleteSubnetRequest)">
- <summary>
- Delete Subnet
- </summary>
- <param name="request">Delete Subnet request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Subnet Response from the service</returns>
- <remarks>
- Deletes a subnet from a VPC. You must terminate all running instances in the
- subnet before deleting it, otherwise Amazon VPC returns an error.
- AWS might delete any subnet if you leave it inactive for an extended period
- of time (inactive means that there are no running Amazon EC2 instances in the subnet).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateVpc(Amazon.EC2.Model.CreateVpcRequest)">
- <summary>
- Create Vpc
- </summary>
- <param name="request">Create Vpc request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Vpc Response from the service</returns>
- <remarks>
- Creates a VPC with the CIDR block you specify. The smallest VPC you can create
- uses a /28 netmask (16 IP addresses), and the largest uses a /18 netmask
- (16,384 IP addresses). To help you decide how big to make your VPC, go
- to the topic about creating VPCs in the Amazon Virtual Private Cloud
- Developer Guide.
- By default, each instance you launch in the VPC has the default DHCP options
- (the standard EC2 host name, no domain name, no DNS server, no NTP server, and
- no NetBIOS server or node type).
- AWS might delete any VPC that you create with this operation if you leave it inactive
- for an extended period of time (inactive means that there are no running Amazon EC2
- instances in the VPC).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateCustomerGateway(Amazon.EC2.Model.CreateCustomerGatewayRequest)">
- <summary>
- Create Customer Gateway
- </summary>
- <param name="request">Create Customer Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Customer Gateway Response from the service</returns>
- <remarks>
- Provides information to AWS about your customer gateway device.
- The customer gateway is the appliance at your end of the VPN connection
- (compared to the VPN gateway, which is the device at the AWS side of the VPN
- connection). AWS might delete any customer gateway that you create with this
- operation if you leave it inactive for an extended period of time (inactive means
- that there's no VPN connection in use with the customer gateway).
- You must provide the Internet-routable IP address of the customer gateway's external
- interface. The IP address must be static and can't be behind a device performing
- network address translation (NAT).
- You must also provide the device's Border Gateway Protocol (BGP) Autonomous
- System Number (ASN). You can use an existing ASN assigned to your network.
- If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range).
- For more information about ASNs, go to the Wikipedia article -
- http://en.wikipedia.org/wiki/Autonomous_system_%28Internet%29.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateVpnGateway(Amazon.EC2.Model.CreateVpnGatewayRequest)">
- <summary>
- Create Vpn Gateway
- </summary>
- <param name="request">Create Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Vpn Gateway Response from the service</returns>
- <remarks>
- Creates a new VPN gateway. A VPN gateway is the VPC-side endpoint for
- your VPN connection. You can create a VPN gateway before creating the VPC
- itself. AWS might delete any VPN gateway that you create with this operation
- if you leave it inactive for an extended period of time (inactive means
- that there's no VPN connection in use with the VPN gateway).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteVpc(Amazon.EC2.Model.DeleteVpcRequest)">
- <summary>
- Delete Vpc
- </summary>
- <param name="request">Delete Vpc request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Vpc Response from the service</returns>
- <remarks>
- Deletes a VPC. You must terminate all running instances and delete all
- subnets before deleting the VPC, otherwise Amazon VPC returns an error.
- AWS might delete any VPC if you leave it inactive for an extended period of time
- (inactive means that there are no running Amazon EC2 instances in the VPC).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AssociateDhcpOptions(Amazon.EC2.Model.AssociateDhcpOptionsRequest)">
- <summary>
- Associate Dhcp Options
- </summary>
- <param name="request">Associate Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Associate Dhcp Options Response from the service</returns>
- <remarks>
- Associates a set of DHCP options (that you've previously created) with the specified VPC.
- Or, associates the default DHCP options with the VPC. The default set consists of the standard
- EC2 host name, no domain name, no DNS server, no NTP server, and no NetBIOS server or node type.
- After you associate the options with the VPC, any existing instances and all new instances
- that you launch in that VPC use the options. For more information about the supported DHCP
- options and using them with Amazon VPC, go to Using DHCP Options in the Amazon Virtual
- Private Cloud Developer Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeVpnGateways(Amazon.EC2.Model.DescribeVpnGatewaysRequest)">
- <summary>
- Describe Vpn Gateways
- </summary>
- <param name="request">Describe Vpn Gateways request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Vpn Gateways Response from the service</returns>
- <remarks>
- Gives you information about your VPN gateways. You can filter the results to return
- information only about VPN gateways that match criteria you specify. For example,
- you could ask to get information about a particular VPN gateway (or all) only if the
- gateway's state is pending or available. You can specify multiple filters (e.g., the
- VPN gateway is in a particular Availability Zone and the gateway's state is pending or
- available). The result includes information for a particular VPN gateway only if the
- gateway matches all your filters. If there's no match, no special message is returned;
- the response is simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateSubnet(Amazon.EC2.Model.CreateSubnetRequest)">
- <summary>
- Create Subnet
- </summary>
- <param name="request">Create Subnet request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Subnet Response from the service</returns>
- <remarks>
- Creates a subnet in an existing VPC. You can create up to 20 subnets in a VPC.
- If you add more than one subnet to a VPC, they're set up in a star topology with
- a logical router in the middle. If you feel you need more than 20 subnets, you can
- request more by going to http://aws.amazon.com/contact-us/vpc-request/.
- When you create each subnet, you provide the VPC ID and the CIDR block you
- want for the subnet. Once you create a subnet, you can't change its CIDR block.
- The subnet's CIDR block can be the same as the VPC's CIDR block (assuming you
- want only a single subnet in the VPC), or a subset of the VPC's CIDR block.
- If you create more than one subnet in a VPC, the subnets' CIDR blocks must not overlap.
- The smallest subnet (and VPC) you can create uses a /28 netmask (16 IP addresses),
- and the largest uses a /18 netmask (16,384 IP addresses).
- Important -
- AWS reserves both the first four and the last IP address in each subnet's CIDR block.
- They're not available for use.
- AWS might delete any subnet you create with this operation if you leave it inactive
- for an extended period of time (inactive means that there are no running Amazon EC2
- instances in the subnet).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteVpnConnection(Amazon.EC2.Model.DeleteVpnConnectionRequest)">
- <summary>
- Delete Vpn Connection
- </summary>
- <param name="request">Delete Vpn Connection request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Vpn Connection Response from the service</returns>
- <remarks>
- Deletes a VPN connection. Use this if you want to delete a VPC and
- all its associated components. Another reason to use this operation
- is if you believe the tunnel credentials for your VPN connection have
- been compromised. In that situation, you can delete the VPN connection
- and create a new one that has new keys, without needing to delete the
- VPC or VPN gateway. If you create a new VPN connection, you must
- reconfigure the customer gateway using the new configuration
- information returned with the new VPN connection ID.
- If you're deleting the VPC and all its associated parts, we recommend you
- detach the VPN gateway from the VPC and delete the VPC before deleting
- the VPN connection.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteVpnGateway(Amazon.EC2.Model.DeleteVpnGatewayRequest)">
- <summary>
- Delete Vpn Gateway
- </summary>
- <param name="request">Delete Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Vpn Gateway Response from the service</returns>
- <remarks>
- Deletes a VPN gateway. Use this when you want to delete a VPC and all
- its associated components because you no longer need them. We recommend
- that before you delete a VPN gateway, you detach it from the VPC and
- delete the VPN connection. Note that you don't need to delete the VPN
- gateway if you just want to delete and re-create the VPN connection
- between your VPC and data center.
- AWS might delete any VPN gateway if you leave it inactive for an extended period of time
- (inactive means that there's no VPN connection in use with the VPN gateway).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeCustomerGateways(Amazon.EC2.Model.DescribeCustomerGatewaysRequest)">
- <summary>
- Describe Customer Gateways
- </summary>
- <param name="request">Describe Customer Gateways request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Customer Gateways Response from the service</returns>
- <remarks>
- Gives you information about your customer gateways. You can filter the results to return
- information only about customer gateways that match criteria you specify. For example,
- you could ask to get information about a particular customer gateway (or all) only if
- the gateway's state is pending or available. You can specify multiple filters (e.g.,
- the customer gateway has a particular IP address for the Internet-routable external
- interface, and the gateway's state is pending or available). The result includes
- information for a particular customer gateway only if the gateway matches all your
- filters. If there's no match, no special message is returned; the response is simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateVpnConnection(Amazon.EC2.Model.CreateVpnConnectionRequest)">
- <summary>
- Create Vpn Connection
- </summary>
- <param name="request">Create Vpn Connection request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Vpn Connection Response from the service</returns>
- <remarks>
- Creates a new VPN connection between an existing VPN gateway and customer
- gateway. The only supported connection type is ipsec.1.
- The response includes information that you need to configure your customer gateway,
- in XML format. We recommend you use the command line version of this operation
- (ec2-create-vpn-connection), which lets you get the configuration information
- formatted in a friendlier way. For information about the command, go to
- ec2-create-vpn-connection in the Amazon Virtual Private Cloud Command Line Reference.
- Important -
- We strongly recommend you use HTTPS when calling this operation because
- the response contains sensitive cryptographic information for configuring
- your customer gateway.
- If you decide to shut down your VPN connection for any reason and then create a new
- one, you must re-configure your customer gateway with the new information
- returned from this call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeDhcpOptions(Amazon.EC2.Model.DescribeDhcpOptionsRequest)">
- <summary>
- Describe Dhcp Options
- </summary>
- <param name="request">Describe Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Dhcp Options Response from the service</returns>
- <remarks>
- Gives you information about one or more sets of DHCP options. You can specify
- one or more DHCP options set IDs, or no IDs (to describe all your sets of DHCP options).
- The returned information consists of:
- - The DHCP options set ID
- - The options
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateDhcpOptions(Amazon.EC2.Model.CreateDhcpOptionsRequest)">
- <summary>
- Create Dhcp Options
- </summary>
- <param name="request">Create Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Dhcp Options Response from the service</returns>
- <remarks>
- Creates a set of DHCP options that you can then associate with one or more VPCs,
- causing all existing and new instances that you launch in those VPCs to use the
- set of DHCP options. The following table lists the individual DHCP options you can
- specify. For more information about the options, go to RFC 2132 - http://www.ietf.org/rfc/rfc2132.txt
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.RequestSpotInstances(Amazon.EC2.Model.RequestSpotInstancesRequest)">
- <summary>
- Request Spot Instances
- </summary>
- <param name="request">Request Spot Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Request Spot Instances Response from the service</returns>
- <remarks>
- Creates a Spot Instance request. Spot Instances are instances that automatically launch when your
- request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeSpotInstanceRequests(Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest)">
- <summary>
- Describe Spot Instance Requests
- </summary>
- <param name="request">Describe Spot Instance Requests request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Spot Instance Requests Response from the service</returns>
- <remarks>
- Describes Spot Instance requests. Spot Instances are instances that automatically launch when your
- request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CancelSpotInstanceRequests(Amazon.EC2.Model.CancelSpotInstanceRequestsRequest)">
- <summary>
- Cancel Spot Instance Requests
- </summary>
- <param name="request">Cancel Spot Instance Requests request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Cancel Spot Instance Requests Response from the service</returns>
- <remarks>
- Cancels Spot Instance requests. Spot Instances are instances that automatically launch when your
- request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeSpotPriceHistory(Amazon.EC2.Model.DescribeSpotPriceHistoryRequest)">
- <summary>
- Describe Spot Price History
- </summary>
- <param name="request">Describe Spot Price History request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Spot Price History Response from the service</returns>
- <remarks>
- Describes historical pricing for Spot Instances. Spot Instances are instances that automatically launch
- when your request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateSpotDatafeedSubscription(Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest)">
- <summary>
- Create Spot Datafeed Subscription
- </summary>
- <param name="request">Create Spot Datafeed Subscription request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Spot Datafeed Subscription Response from the service</returns>
- <remarks>
- Creates the data feed for Spot Instances, enabling you to view Spot Instance usage logs. You can
- create one data feed per account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeSpotDatafeedSubscription(Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionRequest)">
- <summary>
- Describe Spot Datafeed Subscription
- </summary>
- <param name="request">Describe Spot Datafeed Subscription request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Spot Datafeed Subscription Response from the service</returns>
- <remarks>
- Describes the data feed for Spot Instances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteSpotDatafeedSubscription(Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionRequest)">
- <summary>
- Delete Spot Datafeed Subscription
- </summary>
- <param name="request">Delete Spot Datafeed Subscription request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Spot Datafeed Subscription Response from the service</returns>
- <remarks>
- Deletes the data feed for Spot Instances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CancelConversionTask(Amazon.EC2.Model.CancelConversionTaskRequest)">
- <summary>
- Cancel Conversion Task
- </summary>
- <param name="request">Cancel Conversion Task request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Cancel Conversion Task Response from the service</returns>
- <remarks>
- Cancels an active conversion task. The task can be the import of an instance or volume. The command removes all artifacts of
- the conversion, including a partially uploaded volume or instance. If the conversion is complete or is in the process of transferring the final disk image, the command fails and returns an exception.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeConversionTasks(Amazon.EC2.Model.DescribeConversionTasksRequest)">
- <summary>
- Describe Conversion Tasks
- </summary>
- <param name="request">Describe Conversion Tasks request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Conversion Tasks Response from the service</returns>
- <remarks>
- Describes your conversion tasks. For more information, go to Importing Your Virtual Machines and Volumes into Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ImportInstance(Amazon.EC2.Model.ImportInstanceRequest)">
- <summary>
- Import Instance
- </summary>
- <param name="request">Import Instance request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Import Instance Response from the service</returns>
- <remarks>
- Creates a new import instance task using metadata from the specified disk image. For more information, go to Importing Your Virtual Machines and Volumes into Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ImportVolume(Amazon.EC2.Model.ImportVolumeRequest)">
- <summary>
- Import Volume
- </summary>
- <param name="request">Import Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Import Volume Response from the service</returns>
- <remarks>
- Creates a new import volume task using metadata from the specified disk image. For more information, go to Importing Your Virtual Machines and Volumes into Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AuthorizeSecurityGroupEgress(Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest)">
- <summary>
- Authorize Security Group Egress
- </summary>
- <param name="request">Authorize Security Group Egress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Authorize Security Group Egress Response from the service</returns>
- <remarks>
- This action applies only to security groups in a VPC; it's not supported for standard (EC2) security groups.
- For information about Amazon Virtual Private Cloud and VPC security groups, go to the Amazon Virtual
- Private Cloud User Guide.
- The action adds one or more egress rules to a VPC security group. Specifically, this permits instances
- in a security group to send traffic to either one or more destination CIDR IP address ranges, or to one or
- more destination security groups in the same VPC.
- Each rule consists of the protocol (e.g., TCP), plus either a CIDR range, or a source group. For the TCP
- and UDP protocols, you must also specify the destination port or port range. For the ICMP protocol, you
- must also specify the ICMP type and code.You can use -1 as a wildcard for the ICMP type or code.
- Rule changes are propagated to instances within the security group as quickly as possible. However, a
- small delay might occur.
- Adding hundreds of rules to a security group might cause problems when you access the instance.
- We recommend you condense your rules as much as possible.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.RevokeSecurityGroupEgress(Amazon.EC2.Model.RevokeSecurityGroupEgressRequest)">
- <summary>
- Revoke Security Group Egress
- </summary>
- <param name="request">Revoke Security Group Egress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Revoke Security Group Egress Response from the service</returns>
- <remarks>
- This action applies only to security groups in a VPC. It doesn't work with standard (EC2) security groups.
- For information about Amazon Virtual Private Cloud and VPC security groups, go to the Amazon Virtual
- Private Cloud User Guide.
- The action removes one or more egress rules from a VPC security group. The values that you specify in
- the revoke request (e.g., ports, etc.) must match the existing rule's values in order for the rule to be
- revoked.
- Each rule consists of the protocol, and the CIDR range or destination security group. For the TCP and
- UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you
- must also specify the ICMP type and code.
- Rule changes are propagated to instances within the security group as quickly as possible. However, a
- small delay might occur.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateInternetGateway(Amazon.EC2.Model.CreateInternetGatewayRequest)">
- <summary>
- Create Internet Gateway
- </summary>
- <param name="request">Create Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Internet Gateway Response from the service</returns>
- <remarks>
- Creates a new Internet gateway in your AWS account. After creating the Internet gateway, you then attach
- it to a VPC using AttachInternetGateway. For more information about your VPC and Internet gateway,
- go to Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeInternetGateways(Amazon.EC2.Model.DescribeInternetGatewaysRequest)">
- <summary>
- Describe Internet Gateways
- </summary>
- <param name="request">Describe Internet Gateways request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Internet Gateways Response from the service</returns>
- <remarks>
- Gives you information about your Internet gateways.You can filter the results to return information only
- about Internet gateways that match criteria you specify. For example, you could get information only
- about gateways with particular tags. The Internet gateway must match at least one of the specified values
- for it to be included in the results.
- You can specify multiple filters (e.g., the Internet gateway is attached to a particular VPC and is tagged
- with a particular value). The result includes information for a particular Internet gateway only if the gateway
- matches all your filters. If there's no match, no special message is returned; the response is simply empty.
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteInternetGateway(Amazon.EC2.Model.DeleteInternetGatewayRequest)">
- <summary>
- Delete Internet Gateway
- </summary>
- <param name="request">Delete Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Internet Gateway Response from the service</returns>
- <remarks>
- Deletes an Internet gateway from your AWS account. The gateway must not be attached to a VPC. For
- more information about your VPC and Internet gateway, go to Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AttachInternetGateway(Amazon.EC2.Model.AttachInternetGatewayRequest)">
- <summary>
- Attach Internet Gateway
- </summary>
- <param name="request">Attach Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Attach Internet Gateway Response from the service</returns>
- <remarks>
- Attaches an Internet gateway to a VPC, enabling connectivity between the Internet and the VPC. For
- more information about your VPC and Internet gateway, go to the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DetachInternetGateway(Amazon.EC2.Model.DetachInternetGatewayRequest)">
- <summary>
- Detach Internet Gateway
- </summary>
- <param name="request">Detach Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Detach Internet Gateway Response from the service</returns>
- <remarks>
- Detaches an Internet gateway from a VPC, disabling connectivity between the Internet and the VPC.The
- VPC must not contain any running instances with elastic IP addresses. For more information about your
- VPC and Internet gateway, go to Amazon Virtual Private Cloud User Guide.
- For more information about Amazon Virtual Private Cloud and Internet gateways, go to the Amazon Virtual
- Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateRouteTable(Amazon.EC2.Model.CreateRouteTableRequest)">
- <summary>
- Create Route Table
- </summary>
- <param name="request">Create Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Route Table Response from the service</returns>
- <remarks>
- Creates a new route table within a VPC. After you create a new route table, you can add routes and
- associate the table with a subnet. For more information about route tables, go to Route Tables in the
- Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeRouteTables(Amazon.EC2.Model.DescribeRouteTablesRequest)">
- <summary>
- Describe Route Tables
- </summary>
- <param name="request">Describe Route Tables request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Route Tables Response from the service</returns>
- <remarks>
- Gives you information about your route tables.You can filter the results to return information only about
- tables that match criteria you specify. For example, you could get information only about a table associated
- with a particular subnet.You can specify multiple values for the filter. The table must match at least one
- of the specified values for it to be included in the results.
- You can specify multiple filters (e.g., the table has a particular route, and is associated with a particular
- subnet). The result includes information for a particular table only if it matches all your filters. If there's
- no match, no special message is returned; the response is simply empty.
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteRouteTable(Amazon.EC2.Model.DeleteRouteTableRequest)">
- <summary>
- Delete Route Table
- </summary>
- <param name="request">Delete Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Route Table Response from the service</returns>
- <remarks>
- Deletes a route table from a VPC. The route table must not be associated with a subnet.You can't delete
- the main route table. For more information about route tables, go to Route Tables in the Amazon Virtual
- Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.AssociateRouteTable(Amazon.EC2.Model.AssociateRouteTableRequest)">
- <summary>
- Associate Route Table
- </summary>
- <param name="request">Associate Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Associate Route Table Response from the service</returns>
- <remarks>
- Associates a subnet with a route table. The subnet and route table must be in the same VPC. This
- association causes traffic originating from the subnet to be routed according to the routes in the route
- table. The action returns an association ID, which you need if you want to disassociate the route table
- from the subnet later. A route table can be associated with multiple subnets.
- For more information about route tables, go to Route Tables in the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ReplaceRouteTableAssociation(Amazon.EC2.Model.ReplaceRouteTableAssociationRequest)">
- <summary>
- Replace Route Table Association
- </summary>
- <param name="request">Replace Route Table Association request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Route Table Association Response from the service</returns>
- <remarks>
- Changes the route table associated with a given subnet in a VPC. After you execute this action, the subnet
- uses the routes in the new route table it's associated with. For more information about route tables, go
- to Route Tables in the Amazon Virtual Private Cloud User Guide.
- You can also use this to change which table is the main route table in the VPC.You just specify the main
- route table's association ID and the route table that you want to be the new main route table.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DisassociateRouteTable(Amazon.EC2.Model.DisassociateRouteTableRequest)">
- <summary>
- Disassociate Route Table
- </summary>
- <param name="request">Disassociate Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Disassociate Route Table Response from the service</returns>
- <remarks>
- Disassociates a subnet from a route table.
- After you perform this action, the subnet no longer uses the routes in the route table. Instead it uses the
- routes in the VPC's main route table. For more information about route tables, go to Route Tables in the
- Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateRoute(Amazon.EC2.Model.CreateRouteRequest)">
- <summary>
- Create Route
- </summary>
- <param name="request">Create Route request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Route Response from the service</returns>
- <remarks>
- Creates a new route in a route table within a VPC. The route's target can be either a gateway attached
- to the VPC or a NAT instance in the VPC.
- When determining how to route traffic, we use the route with the most specific match. For example, let's
- say the traffic is destined for 192.0.2.3, and the route table includes the following two routes:
- 192.0.2.0/24 (goes to some target A)
- 192.0.2.0/28 (goes to some target B)
- Both routes apply to the traffic destined for 192.0.2.3. However, the second route in the list is more specific,
- so we use that route to determine where to target the traffic.
- For more information about route tables, go to Route Tables in the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ReplaceRoute(Amazon.EC2.Model.ReplaceRouteRequest)">
- <summary>
- Replace Route
- </summary>
- <param name="request">Replace Route request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Route Response from the service</returns>
- <remarks>
- Replaces an existing route within a route table in a VPC. For more information about route tables, go to
- Route Tables in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteRoute(Amazon.EC2.Model.DeleteRouteRequest)">
- <summary>
- Delete Route
- </summary>
- <param name="request">Delete Route request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Route Response from the service</returns>
- <remarks>
- Deletes a route from a route table in a VPC. For more information about route tables, go to Route Tables
- in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateNetworkAcl(Amazon.EC2.Model.CreateNetworkAclRequest)">
- <summary>
- Create Network Acl
- </summary>
- <param name="request">Create Network Acl request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Network Acl Response from the service</returns>
- <remarks>
- Creates a new network ACL in a VPC. Network ACLs provide an optional layer of security (on top of
- security groups) for the instances in your VPC. For more information about network ACLs, go to Network
- ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DescribeNetworkAcls(Amazon.EC2.Model.DescribeNetworkAclsRequest)">
- <summary>
- Describe Network Acls
- </summary>
- <param name="request">Describe Network Acls request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Network Acls Response from the service</returns>
- <remarks>
- Gives you information about the network ACLs in your VPC.You can filter the results to return information
- only about ACLs that match criteria you specify. For example, you could get information only the ACL
- associated with a particular subnet. The ACL must match at least one of the specified values for it to be
- included in the results.
- You can specify multiple filters (e.g., the ACL is associated with a particular subnet and has an egress
- entry that denies traffic to a particular port). The result includes information for a particular ACL only if it
- matches all your filters. If there's no match, no special message is returned; the response is simply empty.
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteNetworkAcl(Amazon.EC2.Model.DeleteNetworkAclRequest)">
- <summary>
- Delete Network Acl
- </summary>
- <param name="request">Delete Network Acl request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Network Acl Response from the service</returns>
- <remarks>
- Deletes a network ACL from a VPC. The ACL must not have any subnets associated with it.You can't
- delete the default network ACL. For more information about network ACLs, go to Network ACLs in the
- Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ReplaceNetworkAclAssociation(Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest)">
- <summary>
- Replace Network Acl Association
- </summary>
- <param name="request">Replace Network Acl Association request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Network Acl Association Response from the service</returns>
- <remarks>
- Changes which network ACL a subnet is associated with. By default when you create a subnet, it's
- automatically associated with the default network ACL. For more information about network ACLs, go to
- Network ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.CreateNetworkAclEntry(Amazon.EC2.Model.CreateNetworkAclEntryRequest)">
- <summary>
- Create Network Acl Entry
- </summary>
- <param name="request">Create Network Acl Entry request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Network Acl Entry Response from the service</returns>
- <remarks>
- Creates an entry (i.e., rule) in a network ACL with a rule number you specify. Each network ACL has a
- set of numbered ingress rules and a separate set of numbered egress rules. When determining whether
- a packet should be allowed in or out of a subnet associated with the ACL, Amazon VPC processes the
- entries in the ACL according to the rule numbers, in ascending order.
- We recommend that you leave room between the rules (e.g., 100, 110, 120, etc.), and not number
- them sequentially (101, 102, 103, etc.). This allows you to easily add a new rule between existing
- ones without having to renumber the rules.
- After you add an entry, you can't modify it; you must either replace it, or create a new entry and delete
- the old one.
- For more information about network ACLs, go to Network ACLs in the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.ReplaceNetworkAclEntry(Amazon.EC2.Model.ReplaceNetworkAclEntryRequest)">
- <summary>
- Replace Network Acl Entry
- </summary>
- <param name="request">Replace Network Acl Entry request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Network Acl Entry Response from the service</returns>
- <remarks>
- Replaces an entry (i.e., rule) in a network ACL. For more information about network ACLs, go to Network
- ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2.DeleteNetworkAclEntry(Amazon.EC2.Model.DeleteNetworkAclEntryRequest)">
- <summary>
- Delete Network Acl Entry
- </summary>
- <param name="request">Delete Network Acl Entry request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Network Acl Entry Response from the service</returns>
- <remarks>
- Deletes an ingress or egress entry (i.e., rule) from a network ACL. For more information about network
- ACLs, go to Network ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.Dispose(System.Boolean)">
- <summary>
- Implements the Dispose pattern for the AmazonEC2Client
- </summary>
- <param name="fDisposing">Whether this object is being disposed via a call to Dispose
- or garbage collected.</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.Finalize">
- <summary>
- The destructor for the client class.
- </summary>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonEC2Client with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.#ctor(System.String,System.String,Amazon.EC2.AmazonEC2Config)">
- <summary>
- Constructs AmazonEC2Client with AWS Access Key ID, AWS Secret Key and an
- AmazonEC2 Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="config">The AmazonEC2 Configuration Object</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.#ctor(System.String,System.Security.SecureString,Amazon.EC2.AmazonEC2Config)">
- <summary>
- Constructs an AmazonEC2Client with AWS Access Key ID, AWS Secret Key and an
- AmazonEC2 Configuration object
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key as a SecureString</param>
- <param name="config">The AmazonEC2 Configuration Object</param>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ActivateLicense(Amazon.EC2.Model.ActivateLicenseRequest)">
- <summary>
- Activate License
- </summary>
- <param name="request">Activate License request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Activate License Response from the service</returns>
- <remarks>
- Activates a specific number of licenses for a 90-day period.
- Activations can be done against a specific license ID.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AllocateAddress(Amazon.EC2.Model.AllocateAddressRequest)">
- <summary>
- Allocate Address
- </summary>
- <param name="request">Allocate Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Allocate Address Response from the service</returns>
- <remarks>
- The AllocateAddress operation acquires an elastic
- IP address for use with your account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AssociateAddress(Amazon.EC2.Model.AssociateAddressRequest)">
- <summary>
- Associate Address
- </summary>
- <param name="request">Associate Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Associate Address Response from the service</returns>
- <remarks>
- The AssociateAddress operation associates an
- elastic IP address with an instance.
- If the IP address is currently
- assigned to another instance, the IP
- address is assigned to the new
- instance. This is an idempotent operation. If you enter
- it more than once, Amazon EC2 does not return an error.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AttachVolume(Amazon.EC2.Model.AttachVolumeRequest)">
- <summary>
- Attach Volume
- </summary>
- <param name="request">Attach Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Attach Volume Response from the service</returns>
- <remarks>
- Attach a previously created volume to a running
- instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AuthorizeSecurityGroupIngress(Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest)">
- <summary>
- Authorize Security Group Ingress
- </summary>
- <param name="request">Authorize Security Group Ingress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Authorize Security Group Ingress Response from the service</returns>
- <remarks>
- The AuthorizeSecurityGroupIngress operation adds
- permissions to a security group.
- Permissions are specified by the IP
- protocol (TCP, UDP or ICMP), the source of
- the request (by IP range
- or an Amazon EC2 user-group pair), the
- source and destination port ranges (for TCP and UDP),
- and the ICMP codes and types (for ICMP).
- When authorizing ICMP, -1 can be used as a wildcard in the
- type and code fields.
- Permission changes are propagated to instances within the
- security group as quickly as possible. However, depending on the
- number of instances, a small
- delay might occur.
- When authorizing a user/group pair permission, GroupName,
- SourceSecurityGroupName and
- SourceSecurityGroupOwnerId must be
- specified. When authorizing a CIDR
- IP permission, GroupName, IpProtocol, FromPort, ToPort and
- CidrIp must be specified. Mixing these two types of parameters is
- not allowed.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.BundleInstance(Amazon.EC2.Model.BundleInstanceRequest)">
- <summary>
- Bundle Instance
- </summary>
- <param name="request">Bundle Instance request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Bundle Instance Response from the service</returns>
- <remarks>
- The BundleInstance operation request that an
- instance is bundled the next time it boots.
- The bundling process creates a new image from a running instance and
- stores the AMI data in S3. Once bundled, the image must be registered in the
- normal way using the RegisterImage API.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CancelBundleTask(Amazon.EC2.Model.CancelBundleTaskRequest)">
- <summary>
- Cancel Bundle Task
- </summary>
- <param name="request">Cancel Bundle Task request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Cancel Bundle Task Response from the service</returns>
- <remarks>
- CancelBundleTask operation cancels a pending or
- in-progress bundling task. This is an asynchronous
- call and it make
- take a while for the task to be cancelled.
- If a task is cancelled
- while it is storing items,
- there may be parts of the incomplete AMI
- stored in S3.
- It is up to the caller to clean up these parts from S3.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConfirmProductInstance(Amazon.EC2.Model.ConfirmProductInstanceRequest)">
- <summary>
- Confirm Product Instance
- </summary>
- <param name="request">Confirm Product Instance request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Confirm Product Instance Response from the service</returns>
- <remarks>
- The ConfirmProductInstance operation returns true
- if the specified product code
- is attached to the specified instance.
- The operation returns false if the
- product code is not attached to the
- instance.
- The ConfirmProductInstance operation can only be executed
- by the owner of the
- AMI. This feature is useful when an AMI owner is
- providing support and wants to
- verify whether a user's instance is eligible.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateImage(Amazon.EC2.Model.CreateImageRequest)">
- <summary>
- Create Image
- </summary>
- <param name="request">Create Image request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Image Response from the service</returns>
- <remarks>
- Creates an AMI that uses an Amazon EBS root
- device from a "running" or "stopped" instance.
- AMIs that use an Amazon EBS root device boot
- faster than AMIs that use instance stores. They
- can be up to 1 TiB in size, use storage that
- persists on instance failure, and can be stopped and started.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateKeyPair(Amazon.EC2.Model.CreateKeyPairRequest)">
- <summary>
- Create Key Pair
- </summary>
- <param name="request">Create Key Pair request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Key Pair Response from the service</returns>
- <remarks>
- The CreateKeyPair operation creates a new 2048
- bit RSA key pair and returns a
- unique ID that can be used to reference
- this key pair when launching new
- instances. For more information, see
- RunInstances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreatePlacementGroup(Amazon.EC2.Model.CreatePlacementGroupRequest)">
- <summary>
- Create Placement Group
- </summary>
- <param name="request">Create Placement Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Placement Group Response from the service</returns>
- <remarks>
- The CreateKeyPair operation creates a new 2048
- bit RSA key pair and returns a
- unique ID that can be used to reference
- this key pair when launching new
- instances. For more information, see
- RunInstances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateSecurityGroup(Amazon.EC2.Model.CreateSecurityGroupRequest)">
- <summary>
- Create Security Group
- </summary>
- <param name="request">Create Security Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Security Group Response from the service</returns>
- <remarks>
- The CreateSecurityGroup operation creates a new
- security group.
- Every instance is launched in a security group. If no security group is
- specified during launch, the instances are launched in the default
- security group. Instances within the same security
- group have unrestricted network access to each other. Instances will
- reject network access attempts from other instances in a different
- security group. As the owner of instances you can grant or revoke
- specific permissions using the AuthorizeSecurityGroupIngress
- and RevokeSecurityGroupIngress operations.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateSnapshot(Amazon.EC2.Model.CreateSnapshotRequest)">
- <summary>
- Create Snapshot
- </summary>
- <param name="request">Create Snapshot request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Snapshot Response from the service</returns>
- <remarks>
- Create a snapshot of the volume identified by
- volume ID. A volume does not have to be detached
- at the time the snapshot is taken.
- Important Note:
- Snapshot creation requires that the
- system is in a consistent state.
- For instance, this means that if
- taking a snapshot of a database, the
- tables must be read-only locked
- to ensure that the snapshot will not contain a
- corrupted version of the database. Therefore,
- be careful when using this API to ensure that
- the system remains in the consistent state until the create
- snapshot status has returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateTags(Amazon.EC2.Model.CreateTagsRequest)">
- <summary>
- Create Tags
- </summary>
- <param name="request">Create Tags request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Tags Response from the service</returns>
- <remarks>
- Adds or overwrites one or more tags for the specified resource or
- resources. Each resource can have a maximum of 10 tags. Each tag consists
- of a key and optional value. Tag keys must be unique per resource.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateVolume(Amazon.EC2.Model.CreateVolumeRequest)">
- <summary>
- Create Volume
- </summary>
- <param name="request">Create Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Volume Response from the service</returns>
- <remarks>
- Initializes an empty volume of a given size
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeactivateLicense(Amazon.EC2.Model.DeactivateLicenseRequest)">
- <summary>
- Deactivate License
- </summary>
- <param name="request">Deactivate License request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Deactivate License Response from the service</returns>
- <remarks>
- Deactivates a specific number of licenses.
- Deactivations can be done against a specific license ID
- after they have persisted for at least a 90-day period.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteKeyPair(Amazon.EC2.Model.DeleteKeyPairRequest)">
- <summary>
- Delete Key Pair
- </summary>
- <param name="request">Delete Key Pair request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Key Pair Response from the service</returns>
- <remarks>
- The DeleteKeyPair operation deletes a key pair.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeletePlacementGroup(Amazon.EC2.Model.DeletePlacementGroupRequest)">
- <summary>
- Delete Placement Group
- </summary>
- <param name="request">Delete Placement Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Placement Group Response from the service</returns>
- <remarks>
- The DeletePlacementGroup operation deletes a placement group.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteSecurityGroup(Amazon.EC2.Model.DeleteSecurityGroupRequest)">
- <summary>
- Delete Security Group
- </summary>
- <param name="request">Delete Security Group request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Security Group Response from the service</returns>
- <remarks>
- The DeleteSecurityGroup operation deletes a
- security group.
- Note:
- If you attempt to delete a security group that
- contains instances, a fault is returned.
- If you attempt to delete a
- security group that is referenced by
- another security group, a fault
- is returned. For example, if security group B has a
- rule that allows access from security group A, security group A
- cannot be deleted until the allow rule is removed.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteSnapshot(Amazon.EC2.Model.DeleteSnapshotRequest)">
- <summary>
- Delete Snapshot
- </summary>
- <param name="request">Delete Snapshot request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Snapshot Response from the service</returns>
- <remarks>
- Deletes the snapshot identitied by snapshotId.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteTags(Amazon.EC2.Model.DeleteTagsRequest)">
- <summary>
- Delete Tags
- </summary>
- <param name="request">Delete Tags request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Tags Response from the service</returns>
- <remarks>
- Deletes the snapshot identitied by snapshotId.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteVolume(Amazon.EC2.Model.DeleteVolumeRequest)">
- <summary>
- Delete Volume
- </summary>
- <param name="request">Delete Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Volume Response from the service</returns>
- <remarks>
- Deletes a previously created volume. Once
- successfully deleted, a new
- volume can be created with the same name.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeregisterImage(Amazon.EC2.Model.DeregisterImageRequest)">
- <summary>
- Deregister Image
- </summary>
- <param name="request">Deregister Image request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Deregister Image Response from the service</returns>
- <remarks>
- The DeregisterImage operation deregisters an AMI.
- Once deregistered, instances
- of the AMI can no longer be launched.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeAddresses(Amazon.EC2.Model.DescribeAddressesRequest)">
- <summary>
- Describe Addresses
- </summary>
- <param name="request">Describe Addresses request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Addresses Response from the service</returns>
- <remarks>
- The DescribeAddresses operation lists elastic IP
- addresses assigned to your account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeAvailabilityZones(Amazon.EC2.Model.DescribeAvailabilityZonesRequest)">
- <summary>
- Describe Availability Zones
- </summary>
- <param name="request">Describe Availability Zones request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Availability Zones Response from the service</returns>
- <remarks>
- The DescribeAvailabilityZones operation describes
- availability zones that are
- currently available to the account and
- their states.
- Availability zones are not the same across accounts.
- The availability zone
- us-east-1a for account A is not necessarily the
- same as us-east-1a for account
- B. Zone assignments are mapped
- independently for each account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeBundleTasks(Amazon.EC2.Model.DescribeBundleTasksRequest)">
- <summary>
- Describe Bundle Tasks
- </summary>
- <param name="request">Describe Bundle Tasks request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Bundle Tasks Response from the service</returns>
- <remarks>
- The DescribeBundleTasks operation describes in-progress
- and recent bundle tasks. Complete and failed tasks are
- removed from the list a short time after completion.
- If no bundle ids are given, all bundle tasks are returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeLicenses(Amazon.EC2.Model.DescribeLicensesRequest)">
- <summary>
- Describe Licenses
- </summary>
- <param name="request">Describe Licenses request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Licenses Response from the service</returns>
- <remarks>
- Provides details of a user's registered licenses. Zero or more IDs
- may be specified on the call. When one or more license IDs are
- specified, only data for the specified IDs are returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribePlacementGroups(Amazon.EC2.Model.DescribePlacementGroupsRequest)">
- <summary>
- Describe Placement Groups
- </summary>
- <param name="request">Describe Placement Groups request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Placement Groups Response from the service</returns>
- <remarks>
- Returns information about one or more PlacementGroup instances in a
- user's account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeSnapshotAttribute(Amazon.EC2.Model.DescribeSnapshotAttributeRequest)">
- <summary>
- Describe Snapshot Attribute
- </summary>
- <param name="request">Describe Snapshot Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Snapshot Attribute Response from the service</returns>
- <remarks>
- Returns information about an attribute of a snapshot.
- Only one attribute can be specified per call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeImageAttribute(Amazon.EC2.Model.DescribeImageAttributeRequest)">
- <summary>
- Describe Image Attribute
- </summary>
- <param name="request">Describe Image Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Image Attribute Response from the service</returns>
- <remarks>
- The DescribeImageAttribute operation returns
- information about an attribute of
- an AMI. Only one attribute can be
- specified per call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeImages(Amazon.EC2.Model.DescribeImagesRequest)">
- <summary>
- Describe Images
- </summary>
- <param name="request">Describe Images request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Images Response from the service</returns>
- <remarks>
- The DescribeImages operation returns information
- about AMIs, AKIs, and ARIs
- available to the user. Information returned
- includes image type, product codes,
- architecture, and kernel and RAM
- disk IDs. Images available to the user include
- public images
- available for any user to launch, private images owned
- by the user making the request, and private images
- owned by other users for which the
- user has explicit launch permissions.
- Launch permissions fall into three categories:
- Public:
- The owner of the AMI granted launch permissions for the AMI to the all
- group. All users have launch permissions for these AMIs.
- Explicit:
- The owner of the AMI granted launch permissions to a specific user.
- Implicit:
- A user has implicit launch permissions for all AMIs he or she owns.
- The list of AMIs returned can be modified by specifying AMI IDs, AMI
- owners, or users with launch permissions. If no options are specified,
- Amazon EC2 returns all AMIs for which the user has launch permissions.
- If you specify one or more AMI IDs, only AMIs that have the specified
- IDs are returned. If you specify an invalid AMI ID, a fault is returned.
- If you specify an AMI ID for which you do not have access, it will not
- be included in the returned results.
- If you specify one or more AMI
- owners, only AMIs from the specified
- owners and for which you have
- access are returned. The results can include the
- account IDs of the specified owners, amazon for
- AMIs owned by Amazon or self for AMIs that you own.
- If you specify a list of executable users, only users
- that have launch
- permissions for the AMIs are returned. You can
- specify account IDs
- (if you own
- the AMI(s)), self for AMIs for which
- you own or have explicit
- permissions, or
- all for public AMIs.
- Note:
- Deregistered images are included in the returned results for an
- unspecified
- interval after deregistration.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeInstances(Amazon.EC2.Model.DescribeInstancesRequest)">
- <summary>
- Describe Instances
- </summary>
- <param name="request">Describe Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Instances Response from the service</returns>
- <remarks>
- The DescribeInstances operation returns
- information about instances that you own.
- If you specify one or more instance IDs, Amazon EC2 returns
- information for those instances. If you do not specify
- instance IDs, Amazon EC2 returns information for
- all relevant instances. If you specify an invalid
- instance ID, a fault is returned. If you specify an instance
- that you do not own, it will
- not be included in the returned results.
- Recently terminated instances might appear in the
- returned results. This interval is usually less than one hour.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeRegions(Amazon.EC2.Model.DescribeRegionsRequest)">
- <summary>
- Describe Regions
- </summary>
- <param name="request">Describe Regions request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Regions Response from the service</returns>
- <remarks>
- The DescribeRegions operation describes regions
- zones that are
- currently available to the account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeReservedInstances(Amazon.EC2.Model.DescribeReservedInstancesRequest)">
- <summary>
- Describe Reserved Instances
- </summary>
- <param name="request">Describe Reserved Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Reserved Instances Response from the service</returns>
- <remarks>
- The DescribeReservedInstances operation describes
- Reserved Instances
- that were purchased for use with your account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeReservedInstancesOfferings(Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest)">
- <summary>
- Describe Reserved Instances Offerings
- </summary>
- <param name="request">Describe Reserved Instances Offerings request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Reserved Instances Offerings Response from the service</returns>
- <remarks>
- The DescribeReservedInstancesOfferings operation
- describes Reserved
- Instance offerings that are available for
- purchase. With Amazon EC2
- Reserved Instances, you purchase the right
- to launch Amazon EC2 instances
- for a period of time (without getting
- insufficient capacity errors) and
- pay a lower usage rate for the
- actual time used.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeKeyPairs(Amazon.EC2.Model.DescribeKeyPairsRequest)">
- <summary>
- Describe Key Pairs
- </summary>
- <param name="request">Describe Key Pairs request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Key Pairs Response from the service</returns>
- <remarks>
- The DescribeKeyPairs operation returns information about key pairs
- available to you. If you specify key pairs, information about
- those key pairs is returned. Otherwise,
- information for all registered key pairs is returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeSecurityGroups(Amazon.EC2.Model.DescribeSecurityGroupsRequest)">
- <summary>
- Describe Security Groups
- </summary>
- <param name="request">Describe Security Groups request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Security Groups Response from the service</returns>
- <remarks>
- The DescribeSecurityGroups operation returns
- information about security groups
- that you own.
- If you specify security group names, information about those security
- group is returned. Otherwise, information for all security group is
- returned. If you specify a group that does not exist, a fault is returned.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeSnapshots(Amazon.EC2.Model.DescribeSnapshotsRequest)">
- <summary>
- Describe Snapshots
- </summary>
- <param name="request">Describe Snapshots request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Snapshots Response from the service</returns>
- <remarks>
- Describes the indicated snapshots, or in lieu of
- that, all snapshots owned by the caller.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeTags(Amazon.EC2.Model.DescribeTagsRequest)">
- <summary>
- Describe Tags
- </summary>
- <param name="request">Describe Tags request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Tags Response from the service</returns>
- <remarks>
- Describes the indicated snapshots, or in lieu of
- that, all snapshots owned by the caller.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeVolumes(Amazon.EC2.Model.DescribeVolumesRequest)">
- <summary>
- Describe Volumes
- </summary>
- <param name="request">Describe Volumes request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Volumes Response from the service</returns>
- <remarks>
- Describes the status of the indicated or, in lieu
- of any specified, all
- volumes belonging to the caller.
- Volumes that
- have been deleted are not described.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DetachVolume(Amazon.EC2.Model.DetachVolumeRequest)">
- <summary>
- Detach Volume
- </summary>
- <param name="request">Detach Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Detach Volume Response from the service</returns>
- <remarks>
- Detach a previously attached volume from a
- running instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DisassociateAddress(Amazon.EC2.Model.DisassociateAddressRequest)">
- <summary>
- Disassociate Address
- </summary>
- <param name="request">Disassociate Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Disassociate Address Response from the service</returns>
- <remarks>
- The DisassociateAddress operation disassociates
- the specified elastic IP
- address from the instance to which it is
- assigned. This is an idempotent
- operation. If you enter it more than
- once, Amazon EC2 does not
- return an error.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.GetPasswordData(Amazon.EC2.Model.GetPasswordDataRequest)">
- <summary>
- Get Password Data
- </summary>
- <param name="request">Get Password Data request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Get Password Data Response from the service</returns>
- <remarks>
- Retrieves the encrypted administrator password
- for the instances running
- Windows.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.GetConsoleOutput(Amazon.EC2.Model.GetConsoleOutputRequest)">
- <summary>
- Get Console Output
- </summary>
- <param name="request">Get Console Output request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Get Console Output Response from the service</returns>
- <remarks>
- The GetConsoleOutput operation retrieves console
- output for the specified instance.
- Instance console output is buffered
- and posted shortly after instance boot,
- reboot, and termination. Amazon EC2 preserves the
- most recent 64 KB output which will be
- available for at least one hour after the most recent post.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ImportKeyPair(Amazon.EC2.Model.ImportKeyPairRequest)">
- <summary>
- Import Key Pair
- </summary>
- <param name="request">Import Key Pair request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Import Key Pair Response from the service</returns>
- <remarks>
- The GetConsoleOutput operation retrieves console
- output for the specified instance.
- Instance console output is buffered
- and posted shortly after instance boot,
- reboot, and termination. Amazon EC2 preserves the
- most recent 64 KB output which will be
- available for at least one hour after the most recent post.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ModifySnapshotAttribute(Amazon.EC2.Model.ModifySnapshotAttributeRequest)">
- <summary>
- Modify Snapshot Attribute
- </summary>
- <param name="request">Modify Snapshot Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Modify Snapshot Attribute Response from the service</returns>
- <remarks>
- Adds or remove permission settings for the
- specified snapshot.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ModifyImageAttribute(Amazon.EC2.Model.ModifyImageAttributeRequest)">
- <summary>
- Modify Image Attribute
- </summary>
- <param name="request">Modify Image Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Modify Image Attribute Response from the service</returns>
- <remarks>
- The ModifyImageAttribute operation modifies an
- attribute of an AMI.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.PurchaseReservedInstancesOffering(Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest)">
- <summary>
- Purchase Reserved Instances Offering
- </summary>
- <param name="request">Purchase Reserved Instances Offering request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Purchase Reserved Instances Offering Response from the service</returns>
- <remarks>
- The PurchaseReservedInstancesOffering operation
- purchases a Reserved Instance for use with your account.
- With Amazon EC2 Reserved Instances, you purchase the
- right to launch Amazon EC2 instances for a period of time
- (without getting insufficient capacity errors) and pay a
- lower usage rate for the actual time used.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.RebootInstances(Amazon.EC2.Model.RebootInstancesRequest)">
- <summary>
- Reboot Instances
- </summary>
- <param name="request">Reboot Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reboot Instances Response from the service</returns>
- <remarks>
- The RebootInstances operation requests a reboot
- of one or more instances. This
- operation is asynchronous; it only
- queues a request to reboot the specified
- instance(s). The operation
- will succeed if the instances are valid
- and belong to the user.
- Requests to reboot terminated instances are ignored.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.RegisterImage(Amazon.EC2.Model.RegisterImageRequest)">
- <summary>
- Register Image
- </summary>
- <param name="request">Register Image request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Register Image Response from the service</returns>
- <remarks>
- The RegisterImage operation registers an AMI with
- Amazon EC2. Images must be
- registered before they can be launched. For
- more information, see RunInstances.
- Each AMI is associated with an
- unique ID which is provided by the Amazon EC2
- service through the RegisterImage operation.
- During registration, Amazon EC2
- retrieves the specified image manifest from
- Amazon S3 and verifies that the image
- is owned by the user registering the image.
- The image manifest is retrieved once and stored within the Amazon EC2.
- Any modifications to an image in Amazon S3 invalidates this
- registration. If you make changes to an image, deregister the
- previous image and register the new
- image. For more information, see DeregisterImage.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ReleaseAddress(Amazon.EC2.Model.ReleaseAddressRequest)">
- <summary>
- Release Address
- </summary>
- <param name="request">Release Address request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Release Address Response from the service</returns>
- <remarks>
- The ReleaseAddress operation releases an elastic
- IP address associated with your account.
- Note:
- Releasing an IP address
- automatically disassociates it from any instance with
- which it is associated. For more information, see
- DisassociateAddress.
- Important:
- After releasing an elastic IP address, it is released to the IP
- address pool and might no longer be available to your account. Make
- sure to update your DNS records and any servers or devices that
- communicate with the address.
- If you run this operation on an elastic
- IP address that is already released,
- the address might be assigned to
- another account which will cause
- Amazon EC2 to return an error.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ResetSnapshotAttribute(Amazon.EC2.Model.ResetSnapshotAttributeRequest)">
- <summary>
- Reset Snapshot Attribute
- </summary>
- <param name="request">Reset Snapshot Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reset Snapshot Attribute Response from the service</returns>
- <remarks>
- Resets permission settings for the specified
- snapshot.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ResetImageAttribute(Amazon.EC2.Model.ResetImageAttributeRequest)">
- <summary>
- Reset Image Attribute
- </summary>
- <param name="request">Reset Image Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reset Image Attribute Response from the service</returns>
- <remarks>
- The ResetImageAttribute operation resets an
- attribute of an AMI to its default value.
- Note:
- The productCodes
- attribute cannot be reset.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.RevokeSecurityGroupIngress(Amazon.EC2.Model.RevokeSecurityGroupIngressRequest)">
- <summary>
- Revoke Security Group Ingress
- </summary>
- <param name="request">Revoke Security Group Ingress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Revoke Security Group Ingress Response from the service</returns>
- <remarks>
- The RevokeSecurityGroupIngress operation revokes
- permissions from a security
- group. The permissions used to revoke must
- be specified using the same values
- used to grant the permissions.
- Permissions are specified by IP protocol (TCP, UDP, or ICMP), the
- source of the request (by IP range or an Amazon EC2 user-group pair),
- the source and destination port ranges (for TCP and UDP), and the ICMP
- codes and types (for ICMP).
- Permission changes are quickly propagated
- to instances within the security
- group. However, depending on the
- number of instances in the group, a
- small delay is might occur, .
- When revoking a user/group pair permission, GroupName,
- SourceSecurityGroupName
- and SourceSecurityGroupOwnerId must be
- specified. When authorizing a
- CIDR IP permission, GroupName,
- IpProtocol, FromPort, ToPort and CidrIp must be
- specified. Mixing these two types of parameters is not allowed.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.RunInstances(Amazon.EC2.Model.RunInstancesRequest)">
- <summary>
- Run Instances
- </summary>
- <param name="request">Run Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Run Instances Response from the service</returns>
- <remarks>
- The RunInstances operation launches a specified
- number of instances.
- If Amazon EC2 cannot launch the minimum number
- AMIs you request, no instances
- launch. If there is insufficient
- capacity to launch the maximum number of AMIs
- you request, Amazon EC2
- launches as many as possible to satisfy the
- requested maximum values.
- Every instance is launched in a security group. If you do not
- specify a security group at launch, the instances start in your
- default security group. For more information on creating security
- groups, see CreateSecurityGroup.
- An optional instance type can be
- specified. For information about
- instance types, see Instance Types.
- You can provide an optional key pair ID for each image in the launch
- request (for more information, see CreateKeyPair). All instances that
- are created from images that use this key pair will have access to the
- associated public key at boot. You can use this key to provide secure
- access to an instance of an image on a per-instance basis. Amazon EC2
- public images use this feature to provide secure access without passwords.
- Important:
- Launching public images without a key pair ID will leave them inaccessible.
- The public key material is made available to the instance at boot
- time by placing it in the openssh_id.pub file on a logical device that is exposed
- to the instance as /dev/sda2 (the ephemeral store). The format of this
- file is suitable for use as an entry within ~/.ssh/authorized_keys (the
- OpenSSH format). This can be done at boot (e.g., as part of rc.local)
- allowing for secure access without passwords.
- Optional user data can be provided in the launch request. All instances that
- collectively comprise the launch request have access to this data
- For more information, see Instance Metadata.
- Note:
- If any of the AMIs have a product code attached for which the user has
- not subscribed, the RunInstances call will fail.
- Important:
- We strongly recommend using
- the 2.6.18 Xen stock kernel with the
- c1.medium and c1.xlarge
- instances. Although the default Amazon EC2 kernels will work, the
- new kernels provide greater stability and performance for these
- instance types. For more information about kernels, see Kernels, RAM
- Disks, and Block Device Mappings.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.StopInstances(Amazon.EC2.Model.StopInstancesRequest)">
- <summary>
- Stop Instances
- </summary>
- <param name="request">Stop Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Stop Instances Response from the service</returns>
- <remarks>
- Stops an instance that uses an Amazon EBS volume
- as its root device. Instances that use Amazon EBS volumes as their
- root devices can be quickly stopped and started.
- When an instance is stopped, the compute resources are released and you
- are not billed for hourly
- instance usage. However, your root partition Amazon EBS
- volume remains, continues to persist your
- data, and you are charged for Amazon EBS volume usage. You can restart
- your instance at any time.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.StartInstances(Amazon.EC2.Model.StartInstancesRequest)">
- <summary>
- Start Instances
- </summary>
- <param name="request">Start Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Start Instances Response from the service</returns>
- <remarks>
- Starts an instance that uses an Amazon EBS volume as its root device.
- Instances that use Amazon EBS volumes as their root devices can be
- quickly stopped and started. When an instance is
- stopped, the compute resources are released and you
- are not billed for hourly instance usage. However, your root
- partition Amazon EBS volume remains, continues to persist your
- data, and you are charged for Amazon EBS volume usage. You can restart
- your instance at any time.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ModifyInstanceAttribute(Amazon.EC2.Model.ModifyInstanceAttributeRequest)">
- <summary>
- Modify Instance Attribute
- </summary>
- <param name="request">Modify Instance Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Modify Instance Attribute Response from the service</returns>
- <remarks>
- Modifies an attribute of an instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ResetInstanceAttribute(Amazon.EC2.Model.ResetInstanceAttributeRequest)">
- <summary>
- Reset Instance Attribute
- </summary>
- <param name="request">Reset Instance Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Reset Instance Attribute Response from the service</returns>
- <remarks>
- Resets an attribute of an instance to its default
- value.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeInstanceAttribute(Amazon.EC2.Model.DescribeInstanceAttributeRequest)">
- <summary>
- Describe Instance Attribute
- </summary>
- <param name="request">Describe Instance Attribute request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Instance Attribute Response from the service</returns>
- <remarks>
- Returns information about an attribute of an
- instance. Only one attribute
- can be specified per call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.TerminateInstances(Amazon.EC2.Model.TerminateInstancesRequest)">
- <summary>
- Terminate Instances
- </summary>
- <param name="request">Terminate Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Terminate Instances Response from the service</returns>
- <remarks>
- The TerminateInstances operation shuts down one
- or more instances. This
- operation is idempotent; if you terminate an
- instance more than
- once, each call
- will succeed.
- Terminated instances
- will remain visible after termination (approximately one hour).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.MonitorInstances(Amazon.EC2.Model.MonitorInstancesRequest)">
- <summary>
- Monitor Instances
- </summary>
- <param name="request">Monitor Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Monitor Instances Response from the service</returns>
- <remarks>
- Enables monitoring for a running instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.UnmonitorInstances(Amazon.EC2.Model.UnmonitorInstancesRequest)">
- <summary>
- Unmonitor Instances
- </summary>
- <param name="request">Unmonitor Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Unmonitor Instances Response from the service</returns>
- <remarks>
- Disables monitoring for a running instance.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeVpnConnections(Amazon.EC2.Model.DescribeVpnConnectionsRequest)">
- <summary>
- Describe Vpn Connections
- </summary>
- <param name="request">Describe Vpn Connections request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Vpn Connections Response from the service</returns>
- <remarks>
- Gives you information about your VPN connections.
- Important -
- We strongly recommend you use HTTPS when calling this operation because the
- response contains sensitive cryptographic information for configuring your customer gateway.
- You can filter the results to return information only about VPN connections
- that match criteria you specify. For example, you could ask to get information
- about a particular VPN connection (or all) only if the VPN's state is pending
- or available. You can specify multiple filters (e.g., the VPN connection is
- associated with a particular VPN gateway, and the gateway's state is
- pending or available). The result includes information for a particular
- VPN connection only if the VPN connection matches all your filters.
- If there's no match, no special message is returned; the response is
- simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeSubnets(Amazon.EC2.Model.DescribeSubnetsRequest)">
- <summary>
- Describe Subnets
- </summary>
- <param name="request">Describe Subnets request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Subnets Response from the service</returns>
- <remarks>
- Gives you information about your subnets. You can filter the results to
- return information only about subnets that match criteria you specify.
- For example, you could ask to get information about a particular subnet
- (or all) only if the subnet's state is available. You can specify multiple
- filters (e.g., the subnet is in a particular VPC, and the subnet's state is
- available). The result includes information for a particular subnet only
- if the subnet matches all your filters. If there's no match, no special
- message is returned; the response is simply empty. The following table
- shows the available filters.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DetachVpnGateway(Amazon.EC2.Model.DetachVpnGatewayRequest)">
- <summary>
- Detach Vpn Gateway
- </summary>
- <param name="request">Detach Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Detach Vpn Gateway Response from the service</returns>
- <remarks>
- Detaches a VPN gateway from a VPC. You do this if you're planning to
- turn off the VPC and not use it anymore. You can confirm a VPN gateway
- has been completely detached from a VPC by describing the VPN gateway
- (any attachments to the VPN gateway are also described).
- You must wait for the attachment's state to switch to detached before you can
- delete the VPC or attach a different VPC to the VPN gateway.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeVpcs(Amazon.EC2.Model.DescribeVpcsRequest)">
- <summary>
- Describe Vpcs
- </summary>
- <param name="request">Describe Vpcs request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Vpcs Response from the service</returns>
- <remarks>
- Gives you information about your VPCs. You can filter the results to return
- information only about VPCs that match criteria you specify. For example,
- you could ask to get information about a particular VPC or VPCs (or all your VPCs)
- only if the VPC's state is available. You can specify multiple filters (e.g.,
- the VPC uses one of several sets of DHCP options, and the VPC's state is available).
- The result includes information for a particular VPC only if the VPC
- matches all your filters. If there's no match, no special message is
- returned; the response is simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteCustomerGateway(Amazon.EC2.Model.DeleteCustomerGatewayRequest)">
- <summary>
- Delete Customer Gateway
- </summary>
- <param name="request">Delete Customer Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Customer Gateway Response from the service</returns>
- <remarks>
- Deletes a customer gateway. You must delete the VPN connection before
- deleting the customer gateway.
- AWS might delete any customer gateway if you leave it inactive for an extended
- period of time (inactive means that there's no VPN connection in use with the
- customer gateway).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AttachVpnGateway(Amazon.EC2.Model.AttachVpnGatewayRequest)">
- <summary>
- Attach Vpn Gateway
- </summary>
- <param name="request">Attach Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Attach Vpn Gateway Response from the service</returns>
- <remarks>
- Attaches a VPN gateway to a VPC. This is the last step required to get your
- VPC fully connected to your data center before launching instances in it.
- For more information, go to Process for Using Amazon VPC in the Amazon Virtual
- Private Cloud Developer Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteDhcpOptions(Amazon.EC2.Model.DeleteDhcpOptionsRequest)">
- <summary>
- Delete Dhcp Options
- </summary>
- <param name="request">Delete Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Dhcp Options Response from the service</returns>
- <remarks>
- Deletes a set of DHCP options that you specify. Amazon VPC returns an error if the
- set of options you specify is currently associated with a VPC. You can disassociate
- the set of options by associating either a new set of options or the default options with the VPC.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteSubnet(Amazon.EC2.Model.DeleteSubnetRequest)">
- <summary>
- Delete Subnet
- </summary>
- <param name="request">Delete Subnet request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Subnet Response from the service</returns>
- <remarks>
- Deletes a subnet from a VPC. You must terminate all running instances in the
- subnet before deleting it, otherwise Amazon VPC returns an error.
- AWS might delete any subnet if you leave it inactive for an extended period
- of time (inactive means that there are no running Amazon EC2 instances in the subnet).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateVpc(Amazon.EC2.Model.CreateVpcRequest)">
- <summary>
- Create Vpc
- </summary>
- <param name="request">Create Vpc request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Vpc Response from the service</returns>
- <remarks>
- Creates a VPC with the CIDR block you specify. The smallest VPC you can create
- uses a /28 netmask (16 IP addresses), and the largest uses a /18 netmask
- (16,384 IP addresses). To help you decide how big to make your VPC, go
- to the topic about creating VPCs in the Amazon Virtual Private Cloud
- Developer Guide.
- By default, each instance you launch in the VPC has the default DHCP options
- (the standard EC2 host name, no domain name, no DNS server, no NTP server, and
- no NetBIOS server or node type).
- AWS might delete any VPC that you create with this operation if you leave it inactive
- for an extended period of time (inactive means that there are no running Amazon EC2
- instances in the VPC).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateCustomerGateway(Amazon.EC2.Model.CreateCustomerGatewayRequest)">
- <summary>
- Create Customer Gateway
- </summary>
- <param name="request">Create Customer Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Customer Gateway Response from the service</returns>
- <remarks>
- Provides information to AWS about your customer gateway device.
- The customer gateway is the appliance at your end of the VPN connection
- (compared to the VPN gateway, which is the device at the AWS side of the VPN
- connection). AWS might delete any customer gateway that you create with this
- operation if you leave it inactive for an extended period of time (inactive means
- that there's no VPN connection in use with the customer gateway).
- You must provide the Internet-routable IP address of the customer gateway's external
- interface. The IP address must be static and can't be behind a device performing
- network address translation (NAT).
- You must also provide the device's Border Gateway Protocol (BGP) Autonomous
- System Number (ASN). You can use an existing ASN assigned to your network.
- If you don't have an ASN already, you can use a private ASN (in the 64512 - 65534 range).
- For more information about ASNs, go to the Wikipedia article -
- http://en.wikipedia.org/wiki/Autonomous_system_%28Internet%29.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateVpnGateway(Amazon.EC2.Model.CreateVpnGatewayRequest)">
- <summary>
- Create Vpn Gateway
- </summary>
- <param name="request">Create Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Vpn Gateway Response from the service</returns>
- <remarks>
- Creates a new VPN gateway. A VPN gateway is the VPC-side endpoint for
- your VPN connection. You can create a VPN gateway before creating the VPC
- itself. AWS might delete any VPN gateway that you create with this operation
- if you leave it inactive for an extended period of time (inactive means
- that there's no VPN connection in use with the VPN gateway).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteVpc(Amazon.EC2.Model.DeleteVpcRequest)">
- <summary>
- Delete Vpc
- </summary>
- <param name="request">Delete Vpc request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Vpc Response from the service</returns>
- <remarks>
- Deletes a VPC. You must terminate all running instances and delete all
- subnets before deleting the VPC, otherwise Amazon VPC returns an error.
- AWS might delete any VPC if you leave it inactive for an extended period of time
- (inactive means that there are no running Amazon EC2 instances in the VPC).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AssociateDhcpOptions(Amazon.EC2.Model.AssociateDhcpOptionsRequest)">
- <summary>
- Associate Dhcp Options
- </summary>
- <param name="request">Associate Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Associate Dhcp Options Response from the service</returns>
- <remarks>
- Associates a set of DHCP options (that you've previously created) with the specified VPC.
- Or, associates the default DHCP options with the VPC. The default set consists of the standard
- EC2 host name, no domain name, no DNS server, no NTP server, and no NetBIOS server or node type.
- After you associate the options with the VPC, any existing instances and all new instances
- that you launch in that VPC use the options. For more information about the supported DHCP
- options and using them with Amazon VPC, go to Using DHCP Options in the Amazon Virtual
- Private Cloud Developer Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeVpnGateways(Amazon.EC2.Model.DescribeVpnGatewaysRequest)">
- <summary>
- Describe Vpn Gateways
- </summary>
- <param name="request">Describe Vpn Gateways request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Vpn Gateways Response from the service</returns>
- <remarks>
- Gives you information about your VPN gateways. You can filter the results to return
- information only about VPN gateways that match criteria you specify. For example,
- you could ask to get information about a particular VPN gateway (or all) only if the
- gateway's state is pending or available. You can specify multiple filters (e.g., the
- VPN gateway is in a particular Availability Zone and the gateway's state is pending or
- available). The result includes information for a particular VPN gateway only if the
- gateway matches all your filters. If there's no match, no special message is returned;
- the response is simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateSubnet(Amazon.EC2.Model.CreateSubnetRequest)">
- <summary>
- Create Subnet
- </summary>
- <param name="request">Create Subnet request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Subnet Response from the service</returns>
- <remarks>
- Creates a subnet in an existing VPC. You can create up to 20 subnets in a VPC.
- If you add more than one subnet to a VPC, they're set up in a star topology with
- a logical router in the middle. If you feel you need more than 20 subnets, you can
- request more by going to http://aws.amazon.com/contact-us/vpc-request/.
- When you create each subnet, you provide the VPC ID and the CIDR block you
- want for the subnet. Once you create a subnet, you can't change its CIDR block.
- The subnet's CIDR block can be the same as the VPC's CIDR block (assuming you
- want only a single subnet in the VPC), or a subset of the VPC's CIDR block.
- If you create more than one subnet in a VPC, the subnets' CIDR blocks must not overlap.
- The smallest subnet (and VPC) you can create uses a /28 netmask (16 IP addresses),
- and the largest uses a /18 netmask (16,384 IP addresses).
- Important -
- AWS reserves both the first four and the last IP address in each subnet's CIDR block.
- They're not available for use.
- AWS might delete any subnet you create with this operation if you leave it inactive
- for an extended period of time (inactive means that there are no running Amazon EC2
- instances in the subnet).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteVpnConnection(Amazon.EC2.Model.DeleteVpnConnectionRequest)">
- <summary>
- Delete Vpn Connection
- </summary>
- <param name="request">Delete Vpn Connection request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Vpn Connection Response from the service</returns>
- <remarks>
- Deletes a VPN connection. Use this if you want to delete a VPC and
- all its associated components. Another reason to use this operation
- is if you believe the tunnel credentials for your VPN connection have
- been compromised. In that situation, you can delete the VPN connection
- and create a new one that has new keys, without needing to delete the
- VPC or VPN gateway. If you create a new VPN connection, you must
- reconfigure the customer gateway using the new configuration
- information returned with the new VPN connection ID.
- If you're deleting the VPC and all its associated parts, we recommend you
- detach the VPN gateway from the VPC and delete the VPC before deleting
- the VPN connection.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteVpnGateway(Amazon.EC2.Model.DeleteVpnGatewayRequest)">
- <summary>
- Delete Vpn Gateway
- </summary>
- <param name="request">Delete Vpn Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Vpn Gateway Response from the service</returns>
- <remarks>
- Deletes a VPN gateway. Use this when you want to delete a VPC and all
- its associated components because you no longer need them. We recommend
- that before you delete a VPN gateway, you detach it from the VPC and
- delete the VPN connection. Note that you don't need to delete the VPN
- gateway if you just want to delete and re-create the VPN connection
- between your VPC and data center.
- AWS might delete any VPN gateway if you leave it inactive for an extended period of time
- (inactive means that there's no VPN connection in use with the VPN gateway).
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeCustomerGateways(Amazon.EC2.Model.DescribeCustomerGatewaysRequest)">
- <summary>
- Describe Customer Gateways
- </summary>
- <param name="request">Describe Customer Gateways request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Customer Gateways Response from the service</returns>
- <remarks>
- Gives you information about your customer gateways. You can filter the results to return
- information only about customer gateways that match criteria you specify. For example,
- you could ask to get information about a particular customer gateway (or all) only if
- the gateway's state is pending or available. You can specify multiple filters (e.g.,
- the customer gateway has a particular IP address for the Internet-routable external
- interface, and the gateway's state is pending or available). The result includes
- information for a particular customer gateway only if the gateway matches all your
- filters. If there's no match, no special message is returned; the response is simply empty.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateVpnConnection(Amazon.EC2.Model.CreateVpnConnectionRequest)">
- <summary>
- Create Vpn Connection
- </summary>
- <param name="request">Create Vpn Connection request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Vpn Connection Response from the service</returns>
- <remarks>
- Creates a new VPN connection between an existing VPN gateway and customer
- gateway. The only supported connection type is ipsec.1.
- The response includes information that you need to configure your customer gateway,
- in XML format. We recommend you use the command line version of this operation
- (ec2-create-vpn-connection), which lets you get the configuration information
- formatted in a friendlier way. For information about the command, go to
- ec2-create-vpn-connection in the Amazon Virtual Private Cloud Command Line Reference.
- Important -
- We strongly recommend you use HTTPS when calling this operation because
- the response contains sensitive cryptographic information for configuring
- your customer gateway.
- If you decide to shut down your VPN connection for any reason and then create a new
- one, you must re-configure your customer gateway with the new information
- returned from this call.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeDhcpOptions(Amazon.EC2.Model.DescribeDhcpOptionsRequest)">
- <summary>
- Describe Dhcp Options
- </summary>
- <param name="request">Describe Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Dhcp Options Response from the service</returns>
- <remarks>
- Gives you information about one or more sets of DHCP options. You can specify
- one or more DHCP options set IDs, or no IDs (to describe all your sets of DHCP options).
- The returned information consists of:
- - The DHCP options set ID
- - The options
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateDhcpOptions(Amazon.EC2.Model.CreateDhcpOptionsRequest)">
- <summary>
- Create Dhcp Options
- </summary>
- <param name="request">Create Dhcp Options request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Dhcp Options Response from the service</returns>
- <remarks>
- Creates a set of DHCP options that you can then associate with one or more VPCs,
- causing all existing and new instances that you launch in those VPCs to use the
- set of DHCP options. The following table lists the individual DHCP options you can
- specify. For more information about the options, go to RFC 2132 - http://www.ietf.org/rfc/rfc2132.txt
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.RequestSpotInstances(Amazon.EC2.Model.RequestSpotInstancesRequest)">
- <summary>
- Request Spot Instances
- </summary>
- <param name="request">Request Spot Instances request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Request Spot Instances Response from the service</returns>
- <remarks>
- Creates a Spot Instance request. Spot Instances are instances that automatically launch when your
- request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeSpotInstanceRequests(Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest)">
- <summary>
- Describe Spot Instance Requests
- </summary>
- <param name="request">Describe Spot Instance Requests request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Spot Instance Requests Response from the service</returns>
- <remarks>
- Describes Spot Instance requests. Spot Instances are instances that automatically launch when your
- request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CancelSpotInstanceRequests(Amazon.EC2.Model.CancelSpotInstanceRequestsRequest)">
- <summary>
- Cancel Spot Instance Requests
- </summary>
- <param name="request">Cancel Spot Instance Requests request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Cancel Spot Instance Requests Response from the service</returns>
- <remarks>
- Cancels Spot Instance requests. Spot Instances are instances that automatically launch when your
- request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeSpotPriceHistory(Amazon.EC2.Model.DescribeSpotPriceHistoryRequest)">
- <summary>
- Describe Spot Price History
- </summary>
- <param name="request">Describe Spot Price History request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Spot Price History Response from the service</returns>
- <remarks>
- Describes historical pricing for Spot Instances. Spot Instances are instances that automatically launch
- when your request price exceeds the Spot Price that Amazon EC2 periodically calculates.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateSpotDatafeedSubscription(Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest)">
- <summary>
- Create Spot Datafeed Subscription
- </summary>
- <param name="request">Create Spot Datafeed Subscription request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Spot Datafeed Subscription Response from the service</returns>
- <remarks>
- Creates the data feed for Spot Instances, enabling you to view Spot Instance usage logs. You can
- create one data feed per account.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeSpotDatafeedSubscription(Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionRequest)">
- <summary>
- Describe Spot Datafeed Subscription
- </summary>
- <param name="request">Describe Spot Datafeed Subscription request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Spot Datafeed Subscription Response from the service</returns>
- <remarks>
- Describes the data feed for Spot Instances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteSpotDatafeedSubscription(Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionRequest)">
- <summary>
- Delete Spot Datafeed Subscription
- </summary>
- <param name="request">Delete Spot Datafeed Subscription request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Spot Datafeed Subscription Response from the service</returns>
- <remarks>
- Deletes the data feed for Spot Instances.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CancelConversionTask(Amazon.EC2.Model.CancelConversionTaskRequest)">
- <summary>
- Cancel Conversion Task
- </summary>
- <param name="request">Cancel Conversion Task request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Cancel Conversion Task Response from the service</returns>
- <remarks>
- Cancels an active conversion task. The task can be the import of an instance or volume. The command removes all artifacts of
- the conversion, including a partially uploaded volume or instance. If the conversion is complete or is in the process of transferring the final disk image, the command fails and returns an exception.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeConversionTasks(Amazon.EC2.Model.DescribeConversionTasksRequest)">
- <summary>
- Describe Conversion Tasks
- </summary>
- <param name="request">Describe Conversion Tasks request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Conversion Tasks Response from the service</returns>
- <remarks>
- Describes your conversion tasks. For more information, go to Importing Your Virtual Machines and Volumes into Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ImportInstance(Amazon.EC2.Model.ImportInstanceRequest)">
- <summary>
- Import Instance
- </summary>
- <param name="request">Import Instance request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Import Instance Response from the service</returns>
- <remarks>
- Creates a new import instance task using metadata from the specified disk image. For more information, go to Importing Your Virtual Machines and Volumes into Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ImportVolume(Amazon.EC2.Model.ImportVolumeRequest)">
- <summary>
- Import Volume
- </summary>
- <param name="request">Import Volume request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Import Volume Response from the service</returns>
- <remarks>
- Creates a new import volume task using metadata from the specified disk image. For more information, go to Importing Your Virtual Machines and Volumes into Amazon EC2 in the Amazon Elastic Compute Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AuthorizeSecurityGroupEgress(Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest)">
- <summary>
- Authorize Security Group Egress
- </summary>
- <param name="request">Authorize Security Group Egress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Authorize Security Group Egress Response from the service</returns>
- <remarks>
- This action applies only to security groups in a VPC; it's not supported for standard (EC2) security groups.
- For information about Amazon Virtual Private Cloud and VPC security groups, go to the Amazon Virtual
- Private Cloud User Guide.
- The action adds one or more egress rules to a VPC security group. Specifically, this permits instances
- in a security group to send traffic to either one or more destination CIDR IP address ranges, or to one or
- more destination security groups in the same VPC.
- Each rule consists of the protocol (e.g., TCP), plus either a CIDR range, or a source group. For the TCP
- and UDP protocols, you must also specify the destination port or port range. For the ICMP protocol, you
- must also specify the ICMP type and code.You can use -1 as a wildcard for the ICMP type or code.
- Rule changes are propagated to instances within the security group as quickly as possible. However, a
- small delay might occur.
- Adding hundreds of rules to a security group might cause problems when you access the instance.
- We recommend you condense your rules as much as possible.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.RevokeSecurityGroupEgress(Amazon.EC2.Model.RevokeSecurityGroupEgressRequest)">
- <summary>
- Revoke Security Group Egress
- </summary>
- <param name="request">Revoke Security Group Egress request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Revoke Security Group Egress Response from the service</returns>
- <remarks>
- This action applies only to security groups in a VPC. It doesn't work with standard (EC2) security groups.
- For information about Amazon Virtual Private Cloud and VPC security groups, go to the Amazon Virtual
- Private Cloud User Guide.
- The action removes one or more egress rules from a VPC security group. The values that you specify in
- the revoke request (e.g., ports, etc.) must match the existing rule's values in order for the rule to be
- revoked.
- Each rule consists of the protocol, and the CIDR range or destination security group. For the TCP and
- UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you
- must also specify the ICMP type and code.
- Rule changes are propagated to instances within the security group as quickly as possible. However, a
- small delay might occur.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateInternetGateway(Amazon.EC2.Model.CreateInternetGatewayRequest)">
- <summary>
- Create Internet Gateway
- </summary>
- <param name="request">Create Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Internet Gateway Response from the service</returns>
- <remarks>
- Creates a new Internet gateway in your AWS account. After creating the Internet gateway, you then attach
- it to a VPC using AttachInternetGateway. For more information about your VPC and Internet gateway,
- go to Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeInternetGateways(Amazon.EC2.Model.DescribeInternetGatewaysRequest)">
- <summary>
- Describe Internet Gateways
- </summary>
- <param name="request">Describe Internet Gateways request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Internet Gateways Response from the service</returns>
- <remarks>
- Gives you information about your Internet gateways.You can filter the results to return information only
- about Internet gateways that match criteria you specify. For example, you could get information only
- about gateways with particular tags. The Internet gateway must match at least one of the specified values
- for it to be included in the results.
- You can specify multiple filters (e.g., the Internet gateway is attached to a particular VPC and is tagged
- with a particular value). The result includes information for a particular Internet gateway only if the gateway
- matches all your filters. If there's no match, no special message is returned; the response is simply empty.
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteInternetGateway(Amazon.EC2.Model.DeleteInternetGatewayRequest)">
- <summary>
- Delete Internet Gateway
- </summary>
- <param name="request">Delete Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Internet Gateway Response from the service</returns>
- <remarks>
- Deletes an Internet gateway from your AWS account. The gateway must not be attached to a VPC. For
- more information about your VPC and Internet gateway, go to Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AttachInternetGateway(Amazon.EC2.Model.AttachInternetGatewayRequest)">
- <summary>
- Attach Internet Gateway
- </summary>
- <param name="request">Attach Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Attach Internet Gateway Response from the service</returns>
- <remarks>
- Attaches an Internet gateway to a VPC, enabling connectivity between the Internet and the VPC. For
- more information about your VPC and Internet gateway, go to the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DetachInternetGateway(Amazon.EC2.Model.DetachInternetGatewayRequest)">
- <summary>
- Detach Internet Gateway
- </summary>
- <param name="request">Detach Internet Gateway request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Detach Internet Gateway Response from the service</returns>
- <remarks>
- Detaches an Internet gateway from a VPC, disabling connectivity between the Internet and the VPC.The
- VPC must not contain any running instances with elastic IP addresses. For more information about your
- VPC and Internet gateway, go to Amazon Virtual Private Cloud User Guide.
- For more information about Amazon Virtual Private Cloud and Internet gateways, go to the Amazon Virtual
- Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateRouteTable(Amazon.EC2.Model.CreateRouteTableRequest)">
- <summary>
- Create Route Table
- </summary>
- <param name="request">Create Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Route Table Response from the service</returns>
- <remarks>
- Creates a new route table within a VPC. After you create a new route table, you can add routes and
- associate the table with a subnet. For more information about route tables, go to Route Tables in the
- Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeRouteTables(Amazon.EC2.Model.DescribeRouteTablesRequest)">
- <summary>
- Describe Route Tables
- </summary>
- <param name="request">Describe Route Tables request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Route Tables Response from the service</returns>
- <remarks>
- Gives you information about your route tables.You can filter the results to return information only about
- tables that match criteria you specify. For example, you could get information only about a table associated
- with a particular subnet.You can specify multiple values for the filter. The table must match at least one
- of the specified values for it to be included in the results.
- You can specify multiple filters (e.g., the table has a particular route, and is associated with a particular
- subnet). The result includes information for a particular table only if it matches all your filters. If there's
- no match, no special message is returned; the response is simply empty.
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteRouteTable(Amazon.EC2.Model.DeleteRouteTableRequest)">
- <summary>
- Delete Route Table
- </summary>
- <param name="request">Delete Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Route Table Response from the service</returns>
- <remarks>
- Deletes a route table from a VPC. The route table must not be associated with a subnet.You can't delete
- the main route table. For more information about route tables, go to Route Tables in the Amazon Virtual
- Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AssociateRouteTable(Amazon.EC2.Model.AssociateRouteTableRequest)">
- <summary>
- Associate Route Table
- </summary>
- <param name="request">Associate Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Associate Route Table Response from the service</returns>
- <remarks>
- Associates a subnet with a route table. The subnet and route table must be in the same VPC. This
- association causes traffic originating from the subnet to be routed according to the routes in the route
- table. The action returns an association ID, which you need if you want to disassociate the route table
- from the subnet later. A route table can be associated with multiple subnets.
- For more information about route tables, go to Route Tables in the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ReplaceRouteTableAssociation(Amazon.EC2.Model.ReplaceRouteTableAssociationRequest)">
- <summary>
- Replace Route Table Association
- </summary>
- <param name="request">Replace Route Table Association request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Route Table Association Response from the service</returns>
- <remarks>
- Changes the route table associated with a given subnet in a VPC. After you execute this action, the subnet
- uses the routes in the new route table it's associated with. For more information about route tables, go
- to Route Tables in the Amazon Virtual Private Cloud User Guide.
- You can also use this to change which table is the main route table in the VPC.You just specify the main
- route table's association ID and the route table that you want to be the new main route table.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DisassociateRouteTable(Amazon.EC2.Model.DisassociateRouteTableRequest)">
- <summary>
- Disassociate Route Table
- </summary>
- <param name="request">Disassociate Route Table request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Disassociate Route Table Response from the service</returns>
- <remarks>
- Disassociates a subnet from a route table.
- After you perform this action, the subnet no longer uses the routes in the route table. Instead it uses the
- routes in the VPC's main route table. For more information about route tables, go to Route Tables in the
- Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateRoute(Amazon.EC2.Model.CreateRouteRequest)">
- <summary>
- Create Route
- </summary>
- <param name="request">Create Route request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Route Response from the service</returns>
- <remarks>
- Creates a new route in a route table within a VPC. The route's target can be either a gateway attached
- to the VPC or a NAT instance in the VPC.
- When determining how to route traffic, we use the route with the most specific match. For example, let's
- say the traffic is destined for 192.0.2.3, and the route table includes the following two routes:
- 192.0.2.0/24 (goes to some target A)
- 192.0.2.0/28 (goes to some target B)
- Both routes apply to the traffic destined for 192.0.2.3. However, the second route in the list is more specific,
- so we use that route to determine where to target the traffic.
- For more information about route tables, go to Route Tables in the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ReplaceRoute(Amazon.EC2.Model.ReplaceRouteRequest)">
- <summary>
- Replace Route
- </summary>
- <param name="request">Replace Route request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Route Response from the service</returns>
- <remarks>
- Replaces an existing route within a route table in a VPC. For more information about route tables, go to
- Route Tables in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteRoute(Amazon.EC2.Model.DeleteRouteRequest)">
- <summary>
- Delete Route
- </summary>
- <param name="request">Delete Route request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Route Response from the service</returns>
- <remarks>
- Deletes a route from a route table in a VPC. For more information about route tables, go to Route Tables
- in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateNetworkAcl(Amazon.EC2.Model.CreateNetworkAclRequest)">
- <summary>
- Create Network Acl
- </summary>
- <param name="request">Create Network Acl request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Network Acl Response from the service</returns>
- <remarks>
- Creates a new network ACL in a VPC. Network ACLs provide an optional layer of security (on top of
- security groups) for the instances in your VPC. For more information about network ACLs, go to Network
- ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DescribeNetworkAcls(Amazon.EC2.Model.DescribeNetworkAclsRequest)">
- <summary>
- Describe Network Acls
- </summary>
- <param name="request">Describe Network Acls request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Describe Network Acls Response from the service</returns>
- <remarks>
- Gives you information about the network ACLs in your VPC.You can filter the results to return information
- only about ACLs that match criteria you specify. For example, you could get information only the ACL
- associated with a particular subnet. The ACL must match at least one of the specified values for it to be
- included in the results.
- You can specify multiple filters (e.g., the ACL is associated with a particular subnet and has an egress
- entry that denies traffic to a particular port). The result includes information for a particular ACL only if it
- matches all your filters. If there's no match, no special message is returned; the response is simply empty.
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteNetworkAcl(Amazon.EC2.Model.DeleteNetworkAclRequest)">
- <summary>
- Delete Network Acl
- </summary>
- <param name="request">Delete Network Acl request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Network Acl Response from the service</returns>
- <remarks>
- Deletes a network ACL from a VPC. The ACL must not have any subnets associated with it.You can't
- delete the default network ACL. For more information about network ACLs, go to Network ACLs in the
- Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ReplaceNetworkAclAssociation(Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest)">
- <summary>
- Replace Network Acl Association
- </summary>
- <param name="request">Replace Network Acl Association request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Network Acl Association Response from the service</returns>
- <remarks>
- Changes which network ACL a subnet is associated with. By default when you create a subnet, it's
- automatically associated with the default network ACL. For more information about network ACLs, go to
- Network ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.CreateNetworkAclEntry(Amazon.EC2.Model.CreateNetworkAclEntryRequest)">
- <summary>
- Create Network Acl Entry
- </summary>
- <param name="request">Create Network Acl Entry request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Create Network Acl Entry Response from the service</returns>
- <remarks>
- Creates an entry (i.e., rule) in a network ACL with a rule number you specify. Each network ACL has a
- set of numbered ingress rules and a separate set of numbered egress rules. When determining whether
- a packet should be allowed in or out of a subnet associated with the ACL, Amazon VPC processes the
- entries in the ACL according to the rule numbers, in ascending order.
- We recommend that you leave room between the rules (e.g., 100, 110, 120, etc.), and not number
- them sequentially (101, 102, 103, etc.). This allows you to easily add a new rule between existing
- ones without having to renumber the rules.
- After you add an entry, you can't modify it; you must either replace it, or create a new entry and delete
- the old one.
- For more information about network ACLs, go to Network ACLs in the Amazon Virtual Private Cloud User
- Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ReplaceNetworkAclEntry(Amazon.EC2.Model.ReplaceNetworkAclEntryRequest)">
- <summary>
- Replace Network Acl Entry
- </summary>
- <param name="request">Replace Network Acl Entry request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Replace Network Acl Entry Response from the service</returns>
- <remarks>
- Replaces an entry (i.e., rule) in a network ACL. For more information about network ACLs, go to Network
- ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.DeleteNetworkAclEntry(Amazon.EC2.Model.DeleteNetworkAclEntryRequest)">
- <summary>
- Delete Network Acl Entry
- </summary>
- <param name="request">Delete Network Acl Entry request</param>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.EC2.AmazonEC2Exception"></exception>
- <returns>Delete Network Acl Entry Response from the service</returns>
- <remarks>
- Deletes an ingress or egress entry (i.e., rule) from a network ACL. For more information about network
- ACLs, go to Network ACLs in the Amazon Virtual Private Cloud User Guide.
- </remarks>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConfigureWebRequest(System.Int32,Amazon.EC2.AmazonEC2Config)">
- Configure HttpClient with set of defaults as well as configuration
- from AmazonEC2Config instance
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.Invoke``1(System.Collections.Generic.IDictionary{System.String,System.String})">
- Invoke request and return response
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ReportAnyErrors(System.String,System.Net.HttpStatusCode)">
- Look for additional error strings in the response and return formatted exception
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.PauseOnRetry(System.Int32,System.Int32,System.Net.HttpStatusCode)">
- Exponential sleep on failed request
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.AddRequiredParameters(System.Collections.Generic.IDictionary{System.String,System.String})">
- Add authentication related and version parameters
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertActivateLicense(Amazon.EC2.Model.ActivateLicenseRequest)">
- Convert ActivateLicenseRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAllocateAddress(Amazon.EC2.Model.AllocateAddressRequest)">
- Convert AllocateAddressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAttachVpnGateway(Amazon.EC2.Model.AttachVpnGatewayRequest)">
- Convert AttachVpnGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAssociateDhcpOptions(Amazon.EC2.Model.AssociateDhcpOptionsRequest)">
- Convert AssociateDhcpOptionsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAssociateAddress(Amazon.EC2.Model.AssociateAddressRequest)">
- Convert AssociateAddressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAuthorizeSecurityGroupIngress(Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest)">
- Convert AuthorizeSecurityGroupIngressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertBundleInstance(Amazon.EC2.Model.BundleInstanceRequest)">
- Convert BundleInstanceRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCancelBundleTask(Amazon.EC2.Model.CancelBundleTaskRequest)">
- Convert CancelBundleTaskRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertConfirmProductInstance(Amazon.EC2.Model.ConfirmProductInstanceRequest)">
- Convert ConfirmProductInstanceRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreatePlacementGroup(Amazon.EC2.Model.CreatePlacementGroupRequest)">
- Convert CreatePlacementGroupRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateImage(Amazon.EC2.Model.CreateImageRequest)">
- Convert CreateImageRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateKeyPair(Amazon.EC2.Model.CreateKeyPairRequest)">
- Convert CreateKeyPairRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertImportKeyPair(Amazon.EC2.Model.ImportKeyPairRequest)">
- Convert ImportKeyPairRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateTags(Amazon.EC2.Model.CreateTagsRequest)">
- Convert CreateTagsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeTags(Amazon.EC2.Model.DescribeTagsRequest)">
- Convert DescribeTagsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteTags(Amazon.EC2.Model.DeleteTagsRequest)">
- Convert DeleteTagsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateSubnet(Amazon.EC2.Model.CreateSubnetRequest)">
- Convert CreateSubnetRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateVpnConnection(Amazon.EC2.Model.CreateVpnConnectionRequest)">
- Convert CreateVpnConnectionRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateVpnGateway(Amazon.EC2.Model.CreateVpnGatewayRequest)">
- Convert CreateVpnGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateDhcpOptions(Amazon.EC2.Model.CreateDhcpOptionsRequest)">
- Convert CreateDhcpOptionsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateVpc(Amazon.EC2.Model.CreateVpcRequest)">
- Convert CreateVpcRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateCustomerGateway(Amazon.EC2.Model.CreateCustomerGatewayRequest)">
- Convert CreateCustomerGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateSecurityGroup(Amazon.EC2.Model.CreateSecurityGroupRequest)">
- Convert CreateSecurityGroupRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeactivateLicense(Amazon.EC2.Model.DeactivateLicenseRequest)">
- Convert DeactivateLicenseRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteKeyPair(Amazon.EC2.Model.DeleteKeyPairRequest)">
- Convert DeleteKeyPairRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeletePlacementGroup(Amazon.EC2.Model.DeletePlacementGroupRequest)">
- Convert DeletePlacementGroupRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteVpc(Amazon.EC2.Model.DeleteVpcRequest)">
- Convert DeleteVpcRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteVpnGateway(Amazon.EC2.Model.DeleteVpnGatewayRequest)">
- Convert DeleteVpnGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteVpnConnection(Amazon.EC2.Model.DeleteVpnConnectionRequest)">
- Convert DeleteVpnConnectionRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteDhcpOptions(Amazon.EC2.Model.DeleteDhcpOptionsRequest)">
- Convert DeleteDhcpOptionsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteCustomerGateway(Amazon.EC2.Model.DeleteCustomerGatewayRequest)">
- Convert DeleteCustomerGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteSecurityGroup(Amazon.EC2.Model.DeleteSecurityGroupRequest)">
- Convert DeleteSecurityGroupRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteSubnet(Amazon.EC2.Model.DeleteSubnetRequest)">
- Convert DeleteSubnetRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeVpcs(Amazon.EC2.Model.DescribeVpcsRequest)">
- Convert DescribeVpcsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeVpnGateways(Amazon.EC2.Model.DescribeVpnGatewaysRequest)">
- Convert DescribeVpnGatewaysRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeDhcpOptions(Amazon.EC2.Model.DescribeDhcpOptionsRequest)">
- Convert DescribeDhcpOptionsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeVpnConnections(Amazon.EC2.Model.DescribeVpnConnectionsRequest)">
- Convert DescribeVpnConnectionsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeCustomerGateways(Amazon.EC2.Model.DescribeCustomerGatewaysRequest)">
- Convert DescribeCustomerGatewaysRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeReservedInstancesOfferings(Amazon.EC2.Model.DescribeReservedInstancesOfferingsRequest)">
- Convert DescribeReservedInstancesOfferingsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeReservedInstances(Amazon.EC2.Model.DescribeReservedInstancesRequest)">
- Convert DescribeReservedInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeSubnets(Amazon.EC2.Model.DescribeSubnetsRequest)">
- Convert DescribeSubnetsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertPurchaseReservedInstancesOffering(Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest)">
- Convert PurchaseReservedInstancesOfferingRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeregisterImage(Amazon.EC2.Model.DeregisterImageRequest)">
- Convert DeregisterImageRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeAddresses(Amazon.EC2.Model.DescribeAddressesRequest)">
- Convert DescribeAddressesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeAvailabilityZones(Amazon.EC2.Model.DescribeAvailabilityZonesRequest)">
- Convert DescribeAvailabilityZonesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeBundleTasks(Amazon.EC2.Model.DescribeBundleTasksRequest)">
- Convert DescribeBundleTasksRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeImageAttribute(Amazon.EC2.Model.DescribeImageAttributeRequest)">
- Convert DescribeImageAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeInstanceAttribute(Amazon.EC2.Model.DescribeInstanceAttributeRequest)">
- Convert DescribeInstanceAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeSnapshotAttribute(Amazon.EC2.Model.DescribeSnapshotAttributeRequest)">
- Convert DescribeSnapshotAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeImages(Amazon.EC2.Model.DescribeImagesRequest)">
- Convert DescribeImagesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeInstances(Amazon.EC2.Model.DescribeInstancesRequest)">
- Convert DescribeInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeKeyPairs(Amazon.EC2.Model.DescribeKeyPairsRequest)">
- Convert DescribeKeyPairsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeLicenses(Amazon.EC2.Model.DescribeLicensesRequest)">
- Convert DescribeLicensesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribePlacementGroups(Amazon.EC2.Model.DescribePlacementGroupsRequest)">
- Convert DescribePlacementGroupsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeSecurityGroups(Amazon.EC2.Model.DescribeSecurityGroupsRequest)">
- Convert DescribeSecurityGroupsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDisassociateAddress(Amazon.EC2.Model.DisassociateAddressRequest)">
- Convert DisassociateAddressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertGetConsoleOutput(Amazon.EC2.Model.GetConsoleOutputRequest)">
- Convert GetConsoleOutputRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertGetPasswordData(Amazon.EC2.Model.GetPasswordDataRequest)">
- Convert GetPasswordDataRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertModifyImageAttribute(Amazon.EC2.Model.ModifyImageAttributeRequest)">
- Convert ModifyImageAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertModifyInstanceAttribute(Amazon.EC2.Model.ModifyInstanceAttributeRequest)">
- Convert ModifyInstanceAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertModifySnapshotAttribute(Amazon.EC2.Model.ModifySnapshotAttributeRequest)">
- Convert ModifySnapshotAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertMonitorInstances(Amazon.EC2.Model.MonitorInstancesRequest)">
- Convert MonitorInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertUnmonitorInstances(Amazon.EC2.Model.UnmonitorInstancesRequest)">
- Convert UnmonitorInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertRebootInstances(Amazon.EC2.Model.RebootInstancesRequest)">
- Convert RebootInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertRegisterImage(Amazon.EC2.Model.RegisterImageRequest)">
- Convert RegisterImageRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertReleaseAddress(Amazon.EC2.Model.ReleaseAddressRequest)">
- Convert ReleaseAddressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertResetImageAttribute(Amazon.EC2.Model.ResetImageAttributeRequest)">
- Convert ResetImageAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertResetInstanceAttribute(Amazon.EC2.Model.ResetInstanceAttributeRequest)">
- Convert ResetInstanceAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertResetSnapshotAttribute(Amazon.EC2.Model.ResetSnapshotAttributeRequest)">
- Convert ResetSnapshotAttributeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertRevokeSecurityGroupIngress(Amazon.EC2.Model.RevokeSecurityGroupIngressRequest)">
- Convert RevokeSecurityGroupIngressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertRunInstances(Amazon.EC2.Model.RunInstancesRequest)">
- Convert RunInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertStopInstances(Amazon.EC2.Model.StopInstancesRequest)">
- Convert StopInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertStartInstances(Amazon.EC2.Model.StartInstancesRequest)">
- Convert StartInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertTerminateInstances(Amazon.EC2.Model.TerminateInstancesRequest)">
- Convert TerminateInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteVolume(Amazon.EC2.Model.DeleteVolumeRequest)">
- Convert DeleteVolumeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateVolume(Amazon.EC2.Model.CreateVolumeRequest)">
- Convert CreateVolumeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeVolumes(Amazon.EC2.Model.DescribeVolumesRequest)">
- Convert DescribeVolumesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDetachVolume(Amazon.EC2.Model.DetachVolumeRequest)">
- Convert DetachVolumeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDetachVpnGateway(Amazon.EC2.Model.DetachVpnGatewayRequest)">
- Convert DetachVpnGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeSnapshots(Amazon.EC2.Model.DescribeSnapshotsRequest)">
- Convert DescribeSnapshotsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteSnapshot(Amazon.EC2.Model.DeleteSnapshotRequest)">
- Convert DeleteSnapshotRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateSnapshot(Amazon.EC2.Model.CreateSnapshotRequest)">
- Convert CreateSnapshotRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAttachVolume(Amazon.EC2.Model.AttachVolumeRequest)">
- Convert AttachVolumeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeRegions(Amazon.EC2.Model.DescribeRegionsRequest)">
- Convert DescribeRegionsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertRequestSpotInstances(Amazon.EC2.Model.RequestSpotInstancesRequest)">
- Convert RequestSpotInstancesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeSpotInstanceRequests(Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest)">
- Convert DescribeSpotInstanceRequestsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCancelSpotInstanceRequests(Amazon.EC2.Model.CancelSpotInstanceRequestsRequest)">
- Convert CancelSpotInstanceRequestsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeSpotPriceHistory(Amazon.EC2.Model.DescribeSpotPriceHistoryRequest)">
- Convert DescribeSpotPriceHistoryRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateSpotDatafeedSubscription(Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest)">
- Convert CreateSpotDatafeedSubscriptionRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeSpotDatafeedSubscription(Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionRequest)">
- Convert DescribeSpotDatafeedSubscriptionRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteSpotDatafeedSubscription(Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionRequest)">
- Convert DeleteSpotDatafeedSubscriptionRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertImportInstance(Amazon.EC2.Model.ImportInstanceRequest)">
- Convert ImportInstanceRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertImportVolume(Amazon.EC2.Model.ImportVolumeRequest)">
- Convert ImportVolumeRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeConversionTasks(Amazon.EC2.Model.DescribeConversionTasksRequest)">
- Convert DescribeConversionTasksRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCancelConversionTask(Amazon.EC2.Model.CancelConversionTaskRequest)">
- Convert CancelConversionTaskRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAuthorizeSecurityGroupEgress(Amazon.EC2.Model.AuthorizeSecurityGroupEgressRequest)">
- Convert AuthorizeSecurityGroupEgressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertRevokeSecurityGroupEgress(Amazon.EC2.Model.RevokeSecurityGroupEgressRequest)">
- Convert RevokeSecurityGroupEgressRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateInternetGateway(Amazon.EC2.Model.CreateInternetGatewayRequest)">
- Convert CreateInternetGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeInternetGateways(Amazon.EC2.Model.DescribeInternetGatewaysRequest)">
- Convert DescribeInternetGatewaysRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteInternetGateway(Amazon.EC2.Model.DeleteInternetGatewayRequest)">
- Convert DeleteInternetGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAttachInternetGateway(Amazon.EC2.Model.AttachInternetGatewayRequest)">
- Convert AttachInternetGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDetachInternetGateway(Amazon.EC2.Model.DetachInternetGatewayRequest)">
- Convert DetachInternetGatewayRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateRouteTable(Amazon.EC2.Model.CreateRouteTableRequest)">
- Convert CreateRouteTableRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeRouteTables(Amazon.EC2.Model.DescribeRouteTablesRequest)">
- Convert DescribeRouteTablesRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteRouteTable(Amazon.EC2.Model.DeleteRouteTableRequest)">
- Convert DeleteRouteTableRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertAssociateRouteTable(Amazon.EC2.Model.AssociateRouteTableRequest)">
- Convert AssociateRouteTableRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertReplaceRouteTableAssociation(Amazon.EC2.Model.ReplaceRouteTableAssociationRequest)">
- Convert ReplaceRouteTableAssociationRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDisassociateRouteTable(Amazon.EC2.Model.DisassociateRouteTableRequest)">
- Convert DisassociateRouteTableRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateRoute(Amazon.EC2.Model.CreateRouteRequest)">
- Convert CreateRouteRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertReplaceRoute(Amazon.EC2.Model.ReplaceRouteRequest)">
- Convert ReplaceRouteRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteRoute(Amazon.EC2.Model.DeleteRouteRequest)">
- Convert DeleteRouteRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateNetworkAcl(Amazon.EC2.Model.CreateNetworkAclRequest)">
- Convert CreateNetworkAclRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDescribeNetworkAcls(Amazon.EC2.Model.DescribeNetworkAclsRequest)">
- Convert DescribeNetworkAclsRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteNetworkAcl(Amazon.EC2.Model.DeleteNetworkAclRequest)">
- Convert DeleteNetworkAclRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertReplaceNetworkAclAssociation(Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest)">
- Convert ReplaceNetworkAclAssociationRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertCreateNetworkAclEntry(Amazon.EC2.Model.CreateNetworkAclEntryRequest)">
- Convert CreateNetworkAclEntryRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertReplaceNetworkAclEntry(Amazon.EC2.Model.ReplaceNetworkAclEntryRequest)">
- Convert ReplaceNetworkAclEntryRequest to name value pairs
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Client.ConvertDeleteNetworkAclEntry(Amazon.EC2.Model.DeleteNetworkAclEntryRequest)">
- Convert DeleteNetworkAclEntryRequest to name value pairs
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.PutMetricAlarmResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PutMetricAlarm operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.EnableAlarmActionsRequestMarshaller">
- <summary>
- Enable Alarm Actions Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.InvalidNextTokenException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.InvalidNextTokenException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidNextTokenException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="P:Amazon.CloudFront.Model.PostInvalidationResponse.Status">
- <summary>
- Gets and Sets the Status property. Valid Values are InProgress and Completed
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.PostInvalidationResponse.Id">
- <summary>
- Gets and Sets the Id property which is the invalidation id
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.PostInvalidationResponse.CreateTime">
- <summary>
- Gets and Sets the CreateTime property which is the date and time the invalidation request was first made.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.PostInvalidationResponse.InvalidationBatch">
- <summary>
- Gets and Sets the InvalidationBatch property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest">
- <summary>
- The ListOriginAccessIdentitiesRequest contains the parameters used for the ListOriginAccessIdentities operation.
- All parameters to this request object are optional.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property for this request.
- All keys returned will be lexiographically after the marker.
- </summary>
- <param name="marker">the value that Marker is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest.WithMaxItems(System.String)">
- <summary>
- Sets the MaxItems property for this request.
- Limits the result set of keys to MaxItems.
- </summary>
- <param name="maxItems">the value that MaxItems is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest.Marker">
- <summary>
- Gets and sets the Marker property.
- All keys returned will be lexiographically after the marker.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListOriginAccessIdentitiesRequest.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- Limits the result set of keys to MaxItems.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.InvalidationSummary">
- <summary>
- Contains a list of invalidation summaries.
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/InvalidationListDatatype.html"/>
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.InvalidationSummary.Id">
- <summary>
- Gets and Sets the id of the invalidation.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.InvalidationSummary.Status">
- <summary>
- Gets and Sets the status of the invalidation.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetOriginAccessIdentityConfigResponse">
- <summary>
- The GetOriginAccessIdentityConfigResponse contains the Origin Access Identity's configuration
- and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetOriginAccessIdentityConfigResponse.OriginAccessIdentityConfig">
- <summary>
- Gets and Sets the OriginAccessIdentityConfig property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetOriginAccessIdentityConfigResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Origin Access Identity's Configuration ETag is also
- set if possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.ErrorResponse">
- <summary>
- This class contains all the errors returned by the CloudFront service.
- The errors are parsed from the Response XML provided by the HTTPWebResponse
- embedded in the WebException thrown during Response retrieval.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.ErrorResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.ErrorResponse.Error">
- <summary>
- Gets and sets the Error property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ErrorResponse.RequestId">
- <summary>
- Gets and sets the RequestId property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DeleteStackResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteStack operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.StackSummary">
- <summary>
- <para>The StackSummary Data Type</para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackSummary.WithStackId(System.String)">
- <summary>
- Sets the StackId property
- </summary>
- <param name="stackId">The value to set for the StackId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackSummary.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackSummary.WithTemplateDescription(System.String)">
- <summary>
- Sets the TemplateDescription property
- </summary>
- <param name="templateDescription">The value to set for the TemplateDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackSummary.WithCreationTime(System.DateTime)">
- <summary>
- Sets the CreationTime property
- </summary>
- <param name="creationTime">The value to set for the CreationTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackSummary.WithDeletionTime(System.DateTime)">
- <summary>
- Sets the DeletionTime property
- </summary>
- <param name="deletionTime">The value to set for the DeletionTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackSummary.WithStackStatus(System.String)">
- <summary>
- Sets the StackStatus property
- </summary>
- <param name="stackStatus">The value to set for the StackStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackSummary.StackId">
- <summary>
- Unique stack identifier.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackSummary.StackName">
- <summary>
- The name associated with the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackSummary.TemplateDescription">
- <summary>
- The template description of the template used to create the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackSummary.CreationTime">
- <summary>
- The time the stack was created.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackSummary.DeletionTime">
- <summary>
- The time the stack was deleted.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackSummary.StackStatus">
- <summary>
- The status of the stack when it was deleted.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, ROLLBACK_IN_PROGRESS, ROLLBACK_FAILED, ROLLBACK_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Output">
- <summary>
- <para> The Output data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Output.WithOutputKey(System.String)">
- <summary>
- Sets the OutputKey property
- </summary>
- <param name="outputKey">The value to set for the OutputKey property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Output.WithOutputValue(System.String)">
- <summary>
- Sets the OutputValue property
- </summary>
- <param name="outputValue">The value to set for the OutputValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Output.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Output.OutputKey">
- <summary>
- The key associated with the output.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Output.OutputValue">
- <summary>
- The value associated with the output.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Output.Description">
- <summary>
- User defined description associated with the output.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackResourceRequest">
- <summary>
- Container for the parameters to the DescribeStackResource operation.
- <para> Returns the description for the specified resource in the specified stack. </para> <para>For deleted stacks, DescribeStackResource
- returns resource information for up to 90 days after the stack has been deleted. </para> <para> You must specify <c>StackName</c> and
- <c>LogicalResourceId</c> .
- </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStackResource(Amazon.CloudFormation.Model.DescribeStackResourceRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourceRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourceRequest.WithLogicalResourceId(System.String)">
- <summary>
- Sets the LogicalResourceId property
- </summary>
- <param name="logicalResourceId">The value to set for the LogicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourceRequest.StackName">
- <summary>
- The name or the unique identifier associated with the stack. Default: There is no default value.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourceRequest.LogicalResourceId">
- <summary>
- The logical name of the resource as specified in the template.<br></br> Default: There is on default value.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackEventsRequest">
- <summary>
- Container for the parameters to the DescribeStackEvents operation.
- <para> Returns all the stack related events for the AWS account. If <c>StackName</c> is specified, returns events related to all the stacks
- with the given name. If <c>StackName</c> is not specified, returns all the events for the account. For more information about a stack's
- event history, go to the AWS CloudFormation User Guide. </para> <para><b>NOTE:</b>Events are returned, even if the stack never existed or
- has been successfully deleted.</para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStackEvents(Amazon.CloudFormation.Model.DescribeStackEventsRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackEventsRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackEventsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsRequest.StackName">
- <summary>
- The name or the unique identifier associated with the stack.<br></br> Default: There is no default value.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsRequest.NextToken">
- <summary>
- String that identifies the start of the next list of events, if there is one.<br></br> Default: There is no default value.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.UpdateAutoScalingGroupResponse">
- <summary>
- Returns information about the UpdateAutoScalingGroup response metadata.
- The UpdateAutoScalingGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.UpdateAutoScalingGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateAutoScalingGroup operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.SuspendProcessesRequestMarshaller">
- <summary>
- Suspend Processes Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.PutScheduledUpdateGroupActionResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PutScheduledUpdateGroupAction operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.LaunchConfigurationUnmarshaller">
- <summary>
- LaunchConfiguration Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.EnabledMetricUnmarshaller">
- <summary>
- EnabledMetric Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteScheduledActionResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteScheduledAction operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.CreateLaunchConfigurationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateLaunchConfiguration operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.SetInstanceHealthResponse">
- <summary>
- Returns information about the SetInstanceHealth response metadata.
- The SetInstanceHealth operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResult">
- <summary>
- <para>The output of the DescribeNotificationConfigurations action.</para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResult.WithNotificationConfigurations(Amazon.AutoScaling.Model.NotificationConfiguration[])">
- <summary>
- Adds elements to the NotificationConfigurations collection
- </summary>
- <param name="notificationConfigurations">The values to add to the NotificationConfigurations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResult.WithNotificationConfigurations(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.NotificationConfiguration})">
- <summary>
- Adds elements to the NotificationConfigurations collection
- </summary>
- <param name="notificationConfigurations">The values to add to the NotificationConfigurations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResult.NotificationConfigurations">
- <summary>
- The list of notification configurations.<i>Should we be clearer?</i>>
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResult.NextToken">
- <summary>
- A string that is used to mark the start of the next batch of returned results for pagination.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest">
- <summary>
- Container for the parameters to the DescribeNotificationConfigurations operation.
- <para> Returns a list of notification actions associated with Auto Scaling groups for specified events. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeNotificationConfigurations(Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest.WithAutoScalingGroupNames(System.String[])">
- <summary>
- Adds elements to the AutoScalingGroupNames collection
- </summary>
- <param name="autoScalingGroupNames">The values to add to the AutoScalingGroupNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest.WithAutoScalingGroupNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AutoScalingGroupNames collection
- </summary>
- <param name="autoScalingGroupNames">The values to add to the AutoScalingGroupNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest.AutoScalingGroupNames">
- <summary>
- The name of the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest.NextToken">
- <summary>
- A string that is used to mark the start of the next batch of returned results for pagination.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest.MaxRecords">
- <summary>
- Maximum number of records to be returned.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 50</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesRequest">
- <summary>
- Container for the parameters to the DescribeMetricCollectionTypes operation.
- <para> Returns a list of metrics and a corresponding list of granularities for each metric. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeMetricCollectionTypes(Amazon.AutoScaling.Model.DescribeMetricCollectionTypesRequest)"/>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Principal">
- <summary>
- A principal is an AWS account which is being allowed or denied access to a
- resource through an access control policy. The principal is a property of the
- Statement object, not directly the <see cref="T:Amazon.Auth.AccessControlPolicy.Policy"/> object.
- <para>
- The principal is A in the statement
- "A has permission to do B to C where D applies."
- </para>
- <para>
- In an access control policy statement, you can set the principal to all
- authenticated AWS users through the <see cref="F:Amazon.Auth.AccessControlPolicy.Principal.AllUsers"/> member. This
- is useful when you don't want to restrict access based on the identity of the
- requester, but instead on other identifying characteristics such as the
- requester's IP address.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.Principal.AWS_PROVIDER">
- <summary>
- The default Principal provider for AWS accounts.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.Principal.CANONICAL_USER_PROVIDER">
- <summary>
- Principal provider for Canonical User IDs.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.Principal.AllUsers">
- <summary>
- Principal instance that includes all users, including anonymous users.
- <para>
- This is useful when you don't want to restrict access based on the
- identity of the requester, but instead on other identifying
- characteristics such as the requester's IP address.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Principal.#ctor(System.String)">
- <summary>
- Constructs a new principal with the specified AWS account ID.
- </summary>
- <param name="accountId">An AWS account ID.</param>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Principal.Provider">
- <summary>
- Gets and sets the provider for this principal, which indicates in what group of
- users this principal resides.
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Principal.Id">
- <summary>
- Gets the unique ID for this principal.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.SendMessageRequest">
- <summary>
- The SendMessage action delivers a message to the specified queue.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageRequest.WithMessageBody(System.String)">
- <summary>
- Sets the MessageBody property
- </summary>
- <param name="messageBody">The message to send. The maximum allowed message size is 8 KB.
- The following list shows the characters (in Unicode) allowed in your message, according to the W3C XML specification
- (for more information, go to http://www.w3.org/TR/REC-xml/#charsets). If you send any characters not included in the
- list, your request will be rejected.
-
- #x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF]</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageRequest.IsSetMessageBody">
- <summary>
- Checks if MessageBody property is set
- </summary>
- <returns>true if MessageBody property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.SendMessageRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.SendMessageRequest.MessageBody">
- <summary>
- Gets and sets the MessageBody property.
- The message to send. The maximum allowed message size is 8 KB.
- The following list shows the characters (in Unicode) allowed in your message, according to the W3C XML specification
- (for more information, go to http://www.w3.org/TR/REC-xml/#charsets). If you send any characters not included in the
- list, your request will be rejected.
-
- #x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF]
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.RemovePermissionResponse">
- <summary>
- Returns a list of messages and metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.RemovePermissionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.RemovePermissionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.RemovePermissionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.RemovePermissionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.Message">
- <summary>
- An element containing the information about the message.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.Message.WithMessageId(System.String)">
- <summary>
- Sets the MessageId property
- </summary>
- <param name="messageId">Unique ID associated with the message.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.IsSetMessageId">
- <summary>
- Checks if MessageId property is set
- </summary>
- <returns>true if MessageId property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.WithReceiptHandle(System.String)">
- <summary>
- Sets the ReceiptHandle property
- </summary>
- <param name="receiptHandle">A string associated with a specific instance of receiving the message.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.IsSetReceiptHandle">
- <summary>
- Checks if ReceiptHandle property is set
- </summary>
- <returns>true if ReceiptHandle property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.WithMD5OfBody(System.String)">
- <summary>
- Sets the MD5OfBody property
- </summary>
- <param name="MD5OfBody">An MD5 digest of the non-URL-encoded message body string.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.IsSetMD5OfBody">
- <summary>
- Checks if MD5OfBody property is set
- </summary>
- <returns>true if MD5OfBody property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.WithBody(System.String)">
- <summary>
- Sets the Body property
- </summary>
- <param name="body">The message's contents (not URL encoded).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.IsSetBody">
- <summary>
- Checks if Body property is set
- </summary>
- <returns>true if Body property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.WithAttribute(Amazon.SQS.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Name and value pair of an attribute associated with the queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Message.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.Message.MessageId">
- <summary>
- Gets and sets the MessageId property.
- Unique ID associated with the message.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Message.ReceiptHandle">
- <summary>
- Gets and sets the ReceiptHandle property.
- A string associated with a specific instance of receiving the message.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Message.MD5OfBody">
- <summary>
- Gets and sets the MD5OfBody property.
- An MD5 digest of the non-URL-encoded message body string.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Message.Body">
- <summary>
- Gets and sets the Body property.
- The message's contents (not URL encoded).
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Message.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.SubscribeRequest">
- <summary>
- The Subscribe action prepares to subscribe an endpoint by sending the endpoint a confirmation message. To actually create a
- subscription, the endpoint owner must call the ConfirmSubscription
- action with the token from the confirmation message. Confirmation tokens are
- valid for twenty-four hours.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The ARN of topic you want to subscribe to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeRequest.WithProtocol(System.String)">
- <summary>
- Sets the Protocol property
- </summary>
- <param name="protocol">The protocol you want to use. Supported protocols include:
- <ul>
- <li>http -- delivery of JSON-encoded message via HTTP POST</li>
- <li>https -- delivery of JSON-encoded message via HTTPS POST</li>
- <li>email -- delivery of message via SMTP</li>
- <li>email-json -- delivery of JSON-encoded message via SMTP</li>
- <li>sqs -- delivery of JSON-encoded message to an Amazon SQS queue</li>
- </ul></param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeRequest.IsSetProtocol">
- <summary>
- Checks if Protocol property is set
- </summary>
- <returns>true if Protocol property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeRequest.WithEndpoint(System.String)">
- <summary>
- Sets the Endpoint property
- </summary>
- <param name="endpoint">The endpoint that you want to receive notifications. Endpoints vary by protocol:
- <ul>
- <li>For the http protocol, the endpoint is an URL beginning with "http://"</li>
- <li>For the https protocol, the endpoint is a URL beginning with "https://"</li>
- <li>For the email protocol, the endpoint is an e-mail address</li>
- <li>For the email-json protocol, the endpoint is an e-mail address</li>
- <li>For the sqs protocol, the endpoint is the ARN of an Amazon SQS queue</li>
- </ul></param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeRequest.IsSetEndpoint">
- <summary>
- Checks if Endpoint property is set
- </summary>
- <returns>true if Endpoint property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SubscribeRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The ARN of topic you want to subscribe to.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SubscribeRequest.Protocol">
- <summary>
- Gets and sets the Protocol property.
- The protocol you want to use. Supported protocols include:
- <ul>
- <li>http -- delivery of JSON-encoded message via HTTP POST</li>
- <li>https -- delivery of JSON-encoded message via HTTPS POST</li>
- <li>email -- delivery of message via SMTP</li>
- <li>email-json -- delivery of JSON-encoded message via SMTP</li>
- <li>sqs -- delivery of JSON-encoded message to an Amazon SQS queue</li>
- </ul>
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SubscribeRequest.Endpoint">
- <summary>
- Gets and sets the Endpoint property.
- The endpoint that you want to receive notifications. Endpoints vary by protocol:
- <ul>
- <li>For the http protocol, the endpoint is an URL beginning with "http://"</li>
- <li>For the https protocol, the endpoint is a URL beginning with "https://"</li>
- <li>For the email protocol, the endpoint is an e-mail address</li>
- <li>For the email-json protocol, the endpoint is an e-mail address</li>
- <li>For the sqs protocol, the endpoint is the ARN of an Amazon SQS queue</li>
- </ul>
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.GetTopicAttributesResponse">
- <summary>
- Encapsulates the metadata and result of the GetTopicAttributes action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesResponse.IsSetGetTopicAttributesResult">
- <summary>
- Checks if GetTopicAttributesResult property is set
- </summary>
- <returns>true if GetTopicAttributesResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.GetTopicAttributesResponse.GetTopicAttributesResult">
- <summary>
- Gets and sets the GetTopicAttributesResult property.
- Encapsulates the result of the GetTopicAttributes action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.GetTopicAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest">
- <summary>
- The GetTopicAttribtues action returns all of the properties of a topic customers have created. Topic
- properties returned might differ based on the authorization of the user.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The ARN of the topic whose properties you want to get.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The ARN of the topic whose properties you want to get.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.GetSendQuotaResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetSendQuota operation
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.GetSendQuotaResponse">
- <summary>
- Returns information about the GetSendQuotaResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.GetSendQuotaResponse.GetSendQuotaResult">
- <summary>
- Gets and sets the GetSendQuotaResult property.
- Represents the user's current activity limits returned from a successful GetSendQuota request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.AmazonSimpleEmailServiceConfig">
- <summary>
- Configuration for accessing Amazon Simple Email Service service
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.AmazonSimpleEmailServiceConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.ReplaceableItem">
- <summary>
- Items represent individual objects that contain one or more attribute name-value pairs.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableItem.WithItemName(System.String)">
- <summary>
- Sets the ItemName property
- </summary>
- <param name="itemName">The name of the item.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableItem.IsSetItemName">
- <summary>
- Checks if ItemName property is set
- </summary>
- <returns>true if ItemName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableItem.WithAttribute(Amazon.SimpleDB.Model.ReplaceableAttribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableItem.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ReplaceableItem.ItemName">
- <summary>
- Gets and sets the ItemName property.
- The name of the item.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ReplaceableItem.Attribute">
- <summary>
- Gets and sets the Attribute property.
- An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DeleteAttributesResponse">
- <summary>
- Returns metadata about the response, including box usage and request ID.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteAttributesResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.SetACLRequest">
- <summary>
- The SetACLRequest contains the parameters used for the SetACL operation.
- The BucketName is always required, the Key is optional and is to be set
- if you want the ACL for an object instead of a bucket.
-
- You can either set ACLs using CannedACLs or by providing an S3AccessControlList.
- <br />Required Parameters: BucketName
- <br />Optional Parameters: Key, CannedACL, ACL
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is either the S3 Bucket whose ACL you want to set,
- or the S3 Bucket that has the S3 Object whose ACL
- you want to set.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object whose ACL you
- want to set.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.WithCannedACL(Amazon.S3.Model.S3CannedACL)">
- <summary>
- Sets the CannedACL property for this request.
- The S3 Object or S3 Bucket will be set to this
- CannedACL.
- </summary>
- <param name="acl">The Canned ACL to be set on the object</param>
- <returns>The request with the CannedACL set</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.IsSetCannedACL">
- <summary>
- Checks if the S3CannedACL property is set.
- </summary>
- <returns>true if there is the S3CannedACL property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.RemoveCannedACL">
- <summary>
- Resets the S3CannedACL associated with this request
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.WithACL(Amazon.S3.Model.S3AccessControlList)">
- <summary>
- Sets the ACL property for this request.
- The S3 Object or S3 Bucket will be set to this
- S3AccessControlList.
- </summary>
- <param name="acl">The Canned ACL to be set on the object</param>
- <returns>The request with the ACL set</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.IsSetACL">
- <summary>
- Checks if the ACL property is set.
- </summary>
- <returns>true if ACL property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.WithVersionId(System.String)">
- <summary>
- Sets the VersionId property for this request.
- This is the Version Id of the S3 Object for
- which the ACL will be set. This property
- is ignored if the ACL is to be set on a Bucket.
- </summary>
- <param name="versionId">The value that VersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetACLRequest.IsSetVersionId">
- <summary>
- Checks if VersionId property is set.
- </summary>
- <returns>true if VersionId property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.SetACLRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetACLRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetACLRequest.CannedACL">
- <summary>
- Gets and sets the CannedACL property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetACLRequest.ACL">
- <summary>
- Gets and sets the ACL property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetACLRequest.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the Version Id of the S3 Object for
- which the ACL will be set. This property
- is ignored if the ACL is to be set on a Bucket.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ListBucketsResponse">
- <summary>
- The ListBucketsResponse contains the ListBucketsResult and
- any headers or metadata returned by S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListBucketsResponse.Bucket">
- <summary>
- Gets the Bucket property. This property has been deprecated -
- please use the Buckets property of ListBucketsResponse.
- <see cref="P:Amazon.S3.Model.ListBucketsResponse.Buckets"/>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListBucketsResponse.Buckets">
- <summary>
- Gets the Buckets property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListBucketsResponse.Owner">
- <summary>
- Gets and sets the Owner property.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RevokeDBSecurityGroupIngressResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RevokeDBSecurityGroupIngress operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ParameterUnmarshaller">
- <summary>
- Parameter Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeOrderableDBInstanceOptionsResultUnmarshaller">
- <summary>
- DescribeOrderableDBInstanceOptionsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeOrderableDBInstanceOptionsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeOrderableDBInstanceOptions operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBParameterGroupsResultUnmarshaller">
- <summary>
- DescribeDBParameterGroupsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBEngineVersionsResultUnmarshaller">
- <summary>
- DescribeDBEngineVersionsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBInstanceReadReplicaResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateDBInstanceReadReplica operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.StorageQuotaExceededException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.StorageQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new StorageQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest">
- <summary>
- Container for the parameters to the RestoreDBInstanceToPointInTime operation.
- <para> Creates a new DB Instance from a point-in-time system snapshot. The target database is created from the source database restore point
- with the same configuration as the original source database, except that the new RDS instance is created with the default security group.
- </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.RestoreDBInstanceToPointInTime(Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithSourceDBInstanceIdentifier(System.String)">
- <summary>
- Sets the SourceDBInstanceIdentifier property
- </summary>
- <param name="sourceDBInstanceIdentifier">The value to set for the SourceDBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithTargetDBInstanceIdentifier(System.String)">
- <summary>
- Sets the TargetDBInstanceIdentifier property
- </summary>
- <param name="targetDBInstanceIdentifier">The value to set for the TargetDBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithRestoreTime(System.DateTime)">
- <summary>
- Sets the RestoreTime property
- </summary>
- <param name="restoreTime">The value to set for the RestoreTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithUseLatestRestorableTime(System.Boolean)">
- <summary>
- Sets the UseLatestRestorableTime property
- </summary>
- <param name="useLatestRestorableTime">The value to set for the UseLatestRestorableTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithAutoMinorVersionUpgrade(System.Boolean)">
- <summary>
- Sets the AutoMinorVersionUpgrade property
- </summary>
- <param name="autoMinorVersionUpgrade">The value to set for the AutoMinorVersionUpgrade property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithLicenseModel(System.String)">
- <summary>
- Sets the LicenseModel property
- </summary>
- <param name="licenseModel">The value to set for the LicenseModel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithDBName(System.String)">
- <summary>
- Sets the DBName property
- </summary>
- <param name="dBName">The value to set for the DBName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.SourceDBInstanceIdentifier">
- <summary>
- The identifier of the source DB Instance from which to restore. Constraints: <ul> <li>Must be the identifier of an existing database
- instance</li> <li>Must contain from 1 to 63 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end
- with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.TargetDBInstanceIdentifier">
- <summary>
- The name of the new database instance to be created. Constraints: <ul> <li>Must contain from 1 to 63 alphanumeric characters or hyphens</li>
- <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.RestoreTime">
- <summary>
- The date and time from to restore from. Valid Values: Value must be a UTC time Constraints: <ul> <li>Must be after the latest restorable
- time for the DB Instance</li> <li>Cannot be specified if UseLatestRestorableTime parameter is true</li> </ul> Example:
- <c>2009-09-07T23:45:00Z</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.UseLatestRestorableTime">
- <summary>
- Specifies whether (<c>true</c>) or not (<c>false</c>) the DB Instance is restored from the latest backup time. Default: <c>false</c>
- Constraints: Cannot be specified if RestoreTime parameter is provided.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.DBInstanceClass">
- <summary>
- The compute and memory capacity of the Amazon RDS DB instance. Valid Values: <c>db.m1.small | db.m1.large | db.m1.xlarge | db.m2.2xlarge |
- db.m2.4xlarge</c> Default: The same DBInstanceClass as the original DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.Port">
- <summary>
- The port number on which the database accepts connections. Constraints: Value must be <c>1115-65535</c> Default: The same port as the
- original DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.AvailabilityZone">
- <summary>
- The EC2 Availability Zone that the database instance will be created in. Default: A random, system-chosen Availability Zone. Constraint: You
- cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to true. Example: <c>us-east-1a</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.MultiAZ">
- <summary>
- Specifies if the DB Instance is a Multi-AZ deployment. Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ
- parameter is set to <c>true</c>.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.AutoMinorVersionUpgrade">
- <summary>
- Indicates that minor version upgrades will be applied automatically to the DB Instance during the maintenance window.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.LicenseModel">
- <summary>
- License model information for the restored DB Instance. Default: Same as source. Valid values: <c>license-included</c> |
- <c>bring-your-own-license</c> | <c>general-public-license</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.DBName">
- <summary>
- The database name for the restored DB Instance. <note> This parameter is not used for the MySQL engine. </note>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest.Engine">
- <summary>
- The database engine to use for the new instance. Default: The same as source Constraint: Must be compatible with the engine of the source
- Example: <c>oracle-ee</c>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ResetDBParameterGroupResponse">
- <summary>
- Returns information about the ResetDBParameterGroupResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ResetDBParameterGroupResponse.ResetDBParameterGroupResult">
- <summary>
- Gets and sets the ResetDBParameterGroupResult property.
- Contains the result of a successful invocation of the ModifyDBParameterGroup or ResetDBParameterGroup action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest">
- <summary>
- Container for the parameters to the DescribeReservedDBInstancesOfferings operation.
- <para> Lists available reserved DB Instance offerings. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeReservedDBInstancesOfferings(Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.WithReservedDBInstancesOfferingId(System.String)">
- <summary>
- Sets the ReservedDBInstancesOfferingId property
- </summary>
- <param name="reservedDBInstancesOfferingId">The value to set for the ReservedDBInstancesOfferingId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.WithDuration(System.String)">
- <summary>
- Sets the Duration property
- </summary>
- <param name="duration">The value to set for the Duration property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The value to set for the ProductDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.ReservedDBInstancesOfferingId">
- <summary>
- The offering identifier filter value. Specify this parameter to show only the available offering that matches the specified reservation
- identifier. Example: <c>438012d3-4052-4cc7-b2e3-8d3372e0e706</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.DBInstanceClass">
- <summary>
- The DB Instance class filter value. Specify this parameter to show only the available offerings matching the specified DB Instance class.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.Duration">
- <summary>
- Duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration. Valid Values: <c>1
- | 3 | 31536000 | 94608000</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.ProductDescription">
- <summary>
- Product description filter value. Specify this parameter to show only the available offerings matching the specified product description.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.MultiAZ">
- <summary>
- The Multi-AZ filter value. Specify this parameter to show only the available offerings matching the specified Multi-AZ parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more than the <c>MaxRecords</c> value is available, a marker is included in the
- response so that the following results can be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest.Marker">
- <summary>
- The marker provided in the previous request. If this parameter is specified, the response includes records beyond the marker only, up to
- <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBSnapshotsRequest">
- <summary>
- Container for the parameters to the DescribeDBSnapshots operation.
- <para> Returns information about DBSnapshots. This API supports pagination. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeDBSnapshots(Amazon.RDS.Model.DescribeDBSnapshotsRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSnapshotsRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSnapshotsRequest.WithDBSnapshotIdentifier(System.String)">
- <summary>
- Sets the DBSnapshotIdentifier property
- </summary>
- <param name="dBSnapshotIdentifier">The value to set for the DBSnapshotIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSnapshotsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSnapshotsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSnapshotsRequest.DBInstanceIdentifier">
- <summary>
- The unique identifier for the Amazon RDS DB snapshot. This value is stored as a lowercase string. Constraints: <ul> <li>Must contain from 1
- to 63 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two
- consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSnapshotsRequest.DBSnapshotIdentifier">
- <summary>
- The DB Instance identifier. This parameter isn't case sensitive. Constraints: <ul> <li>Must be 1 to 255 alphanumeric characters</li>
- <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSnapshotsRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSnapshotsRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeDBInstances request. If this parameter is specified, the response includes only records
- beyond the marker, up to the value specified by <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.AuthorizationQuotaExceededException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.AuthorizationQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new AuthorizationQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.AmazonRDSClient">
- <summary>
- Implemenation for accessing AmazonRDS.
-
- Amazon Relational Database Service <para> Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up,
- operate, and scale a relational database in the cloud. It provides cost-efficient, resizable capacity for an industry-standard relational
- database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses
- unique. </para> <para> Amazon RDS gives you access to the capabilities of a familiar MySQL or Oracle database server. This means the code,
- applications, and tools you already use today with your existing MySQL or Oracle databases work with Amazon RDS without modification. Amazon
- RDS automatically backs up your database and maintains the database software that powers your DB Instance. Amazon RDS is flexible: you can
- scale your database instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services,
- there are no up-front investments, and you pay only for the resources you use. </para>
- </summary>
- </member>
- <member name="T:Amazon.RDS.AmazonRDS">
- <summary>
- Interface for accessing AmazonRDS.
-
- Amazon Relational Database Service <para> Amazon Relational Database Service (Amazon RDS) is a web service that makes it easier to set up,
- operate, and scale a relational database in the cloud. It provides cost-efficient, resizable capacity for an industry-standard relational
- database and manages common database administration tasks, freeing up developers to focus on what makes their applications and businesses
- unique. </para> <para> Amazon RDS gives you access to the capabilities of a familiar MySQL or Oracle database server. This means the code,
- applications, and tools you already use today with your existing MySQL or Oracle databases work with Amazon RDS without modification. Amazon
- RDS automatically backs up your database and maintains the database software that powers your DB Instance. Amazon RDS is flexible: you can
- scale your database instance's compute resources and storage capacity to meet your application's demand. As with all Amazon Web Services,
- there are no up-front investments, and you pay only for the resources you use. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeDBInstances(Amazon.RDS.Model.DescribeDBInstancesRequest)">
- <summary>
- <para> Returns information about provisioned RDS instances. This API supports pagination. </para>
- </summary>
-
- <param name="describeDBInstancesRequest">Container for the necessary parameters to execute the DescribeDBInstances service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeDBInstances service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeEvents(Amazon.RDS.Model.DescribeEventsRequest)">
- <summary>
- <para> Returns events related to DB Instances, DB Security Groups, DB Snapshots and DB Parameter Groups for the past 14 days. Events
- specific to a particular DB Instance, database security group, database snapshot or database parameter group can be obtained by providing
- the name as a parameter. By default, the past hour of events are returned. </para>
- </summary>
-
- <param name="describeEventsRequest">Container for the necessary parameters to execute the DescribeEvents service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeEvents service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeDBParameters(Amazon.RDS.Model.DescribeDBParametersRequest)">
- <summary>
- <para> Returns the detailed parameter list for a particular DBParameterGroup. </para>
- </summary>
-
- <param name="describeDBParametersRequest">Container for the necessary parameters to execute the DescribeDBParameters service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeDBParameters service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.AuthorizeDBSecurityGroupIngress(Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest)">
- <summary>
- <para> Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 Security Groups can be added to the
- DBSecurityGroup if the application using the database is running on EC2 instances. Second, IP ranges are available if the application
- accessing your database is running on the Internet. Required parameters for this API are one of CIDR range or (EC2SecurityGroupName AND
- EC2SecurityGroupOwnerId). </para> <para><b>NOTE:</b> You cannot authorize ingress from an EC2 security group in one Region to an Amazon RDS
- DB Instance in another. </para> <para>For an overview of CIDR ranges, go to the Wikipedia Tutorial. </para>
- </summary>
-
- <param name="authorizeDBSecurityGroupIngressRequest">Container for the necessary parameters to execute the AuthorizeDBSecurityGroupIngress
- service method on AmazonRDS.</param>
-
- <returns>The response from the AuthorizeDBSecurityGroupIngress service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- <exception cref="T:Amazon.RDS.Model.AuthorizationAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.AuthorizationQuotaExceededException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeDBSecurityGroups(Amazon.RDS.Model.DescribeDBSecurityGroupsRequest)">
- <summary>
- <para> Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of
- the specified DBSecurityGroup. </para> <para>For an overview of CIDR ranges, go to the Wikipedia Tutorial. </para>
- </summary>
-
- <param name="describeDBSecurityGroupsRequest">Container for the necessary parameters to execute the DescribeDBSecurityGroups service method
- on AmazonRDS.</param>
-
- <returns>The response from the DescribeDBSecurityGroups service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.ResetDBParameterGroup(Amazon.RDS.Model.ResetDBParameterGroupRequest)">
- <summary>
- <para> Modifies the parameters of a DBParameterGroup to the engine/system default value. To reset specific parameters submit a list of the
- following: ParameterName and ApplyMethod. To reset the entire DBParameterGroup specify the DBParameterGroup name and ResetAllParameters
- parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to
- take effect on the next DB instance restart or RebootDBInstance request. </para>
- </summary>
-
- <param name="resetDBParameterGroupRequest">Container for the necessary parameters to execute the ResetDBParameterGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the ResetDBParameterGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBParameterGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.RestoreDBInstanceToPointInTime(Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest)">
- <summary>
- <para> Creates a new DB Instance from a point-in-time system snapshot. The target database is created from the source database restore point
- with the same configuration as the original source database, except that the new RDS instance is created with the default security group.
- </para>
- </summary>
-
- <param name="restoreDBInstanceToPointInTimeRequest">Container for the necessary parameters to execute the RestoreDBInstanceToPointInTime
- service method on AmazonRDS.</param>
-
- <returns>The response from the RestoreDBInstanceToPointInTime service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.PointInTimeRestoreNotEnabledException"/>
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeDBEngineVersions(Amazon.RDS.Model.DescribeDBEngineVersionsRequest)">
- <summary>
- <para> Returns a list of the available DB engines. </para>
- </summary>
-
- <param name="describeDBEngineVersionsRequest">Container for the necessary parameters to execute the DescribeDBEngineVersions service method
- on AmazonRDS.</param>
-
- <returns>The response from the DescribeDBEngineVersions service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.CreateDBParameterGroup(Amazon.RDS.Model.CreateDBParameterGroupRequest)">
- <summary>
- <para> Creates a new database parameter group. </para>
- </summary>
-
- <param name="createDBParameterGroupRequest">Container for the necessary parameters to execute the CreateDBParameterGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBParameterGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.ModifyDBInstance(Amazon.RDS.Model.ModifyDBInstanceRequest)">
- <summary>
- <para> Modify settings for a DB Instance. You can change one or more database configuration parameters by specifying these parameters and
- the new values in the request. </para>
- </summary>
-
- <param name="modifyDBInstanceRequest">Container for the necessary parameters to execute the ModifyDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the ModifyDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.RestoreDBInstanceFromDBSnapshot(Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest)">
- <summary>
- <para> Restores a DB Instance to an arbitrary point-in-time. Users can restore to any point in time before the latestRestorableTime for up
- to backupRetentionPeriod days. The target database is created from the source database with the same configuration as the original database
- except that the DB instance is created with the default DB security group. </para>
- </summary>
-
- <param name="restoreDBInstanceFromDBSnapshotRequest">Container for the necessary parameters to execute the RestoreDBInstanceFromDBSnapshot
- service method on AmazonRDS.</param>
-
- <returns>The response from the RestoreDBInstanceFromDBSnapshot service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSnapshotStateException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.CreateDBSecurityGroup(Amazon.RDS.Model.CreateDBSecurityGroupRequest)">
- <summary>
- <para> Creates a new database security group. Database Security groups control access to a database instance. </para>
- </summary>
-
- <param name="createDBSecurityGroupRequest">Container for the necessary parameters to execute the CreateDBSecurityGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBSecurityGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DeleteDBSecurityGroup(Amazon.RDS.Model.DeleteDBSecurityGroupRequest)">
- <summary>
- <para> Deletes a database security group. </para> <para><b>NOTE:</b>The specified database security group must not be associated with any DB
- instances.</para>
- </summary>
-
- <param name="deleteDBSecurityGroupRequest">Container for the necessary parameters to execute the DeleteDBSecurityGroup service method on
- AmazonRDS.</param>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeOrderableDBInstanceOptions(Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest)">
- <summary>
- <para> Returns a list of orderable DB Instance options for the specified engine. </para>
- </summary>
-
- <param name="describeOrderableDBInstanceOptionsRequest">Container for the necessary parameters to execute the
- DescribeOrderableDBInstanceOptions service method on AmazonRDS.</param>
-
- <returns>The response from the DescribeOrderableDBInstanceOptions service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeReservedDBInstancesOfferings(Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest)">
- <summary>
- <para> Lists available reserved DB Instance offerings. </para>
- </summary>
-
- <param name="describeReservedDBInstancesOfferingsRequest">Container for the necessary parameters to execute the
- DescribeReservedDBInstancesOfferings service method on AmazonRDS.</param>
-
- <returns>The response from the DescribeReservedDBInstancesOfferings service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstancesOfferingNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.CreateDBInstanceReadReplica(Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest)">
- <summary>
- <para> Creates a DB Instance that acts as a Read Replica of a source DB Instance. </para> <para> All Read Replica DB Instances are created
- as Single-AZ deployments with backups disabled. All other DB Instance attributes (including DB Security Groups and DB Parameter Groups) are
- inherited from the source DB Instance, except as specified below. </para> <para><b>IMPORTANT:</b> The source DB Instance must have backup
- retention enabled. </para>
- </summary>
-
- <param name="createDBInstanceReadReplicaRequest">Container for the necessary parameters to execute the CreateDBInstanceReadReplica service
- method on AmazonRDS.</param>
-
- <returns>The response from the CreateDBInstanceReadReplica service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.RevokeDBSecurityGroupIngress(Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest)">
- <summary>
- <para> Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 Security Groups. Required parameters for this API
- are one of CIDRIP or (EC2SecurityGroupName AND EC2SecurityGroupOwnerId). </para>
- </summary>
-
- <param name="revokeDBSecurityGroupIngressRequest">Container for the necessary parameters to execute the RevokeDBSecurityGroupIngress service
- method on AmazonRDS.</param>
-
- <returns>The response from the RevokeDBSecurityGroupIngress service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- <exception cref="T:Amazon.RDS.Model.AuthorizationNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.CreateDBSnapshot(Amazon.RDS.Model.CreateDBSnapshotRequest)">
- <summary>
- <para> Creates a DBSnapshot. The source DBInstance must be in "available" state. </para>
- </summary>
-
- <param name="createDBSnapshotRequest">Container for the necessary parameters to execute the CreateDBSnapshot service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBSnapshot service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.SnapshotQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.RebootDBInstance(Amazon.RDS.Model.RebootDBInstanceRequest)">
- <summary>
- <para> Reboots a previously provisioned RDS instance. This API results in the application of modified DBParameterGroup parameters with
- ApplyStatus of pending-reboot to the RDS instance. This action is taken as soon as possible, and results in a momentary outage to the RDS
- instance during which the RDS instance status is set to rebooting. A DBInstance event is created when the reboot is completed. </para>
- </summary>
-
- <param name="rebootDBInstanceRequest">Container for the necessary parameters to execute the RebootDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the RebootDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeDBParameterGroups(Amazon.RDS.Model.DescribeDBParameterGroupsRequest)">
- <summary>
- <para> Returns a list of DBParameterGroup descriptions. If a DBParameterGroupName is specified, the list will contain only the descriptions
- of the specified DBParameterGroup. </para>
- </summary>
-
- <param name="describeDBParameterGroupsRequest">Container for the necessary parameters to execute the DescribeDBParameterGroups service
- method on AmazonRDS.</param>
-
- <returns>The response from the DescribeDBParameterGroups service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.CreateDBInstance(Amazon.RDS.Model.CreateDBInstanceRequest)">
- <summary>
- <para> Creates a new DB instance. </para>
- </summary>
-
- <param name="createDBInstanceRequest">Container for the necessary parameters to execute the CreateDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DeleteDBInstance(Amazon.RDS.Model.DeleteDBInstanceRequest)">
- <summary>
- <para> The DeleteDBInstance API deletes a previously provisioned RDS instance. A successful response from the web service indicates the
- request was received correctly. If a final DBSnapshot is requested the status of the RDS instance will be "deleting" until the DBSnapshot is
- created. DescribeDBInstance is used to monitor the status of this operation. This cannot be canceled or reverted once submitted. </para>
- </summary>
-
- <param name="deleteDBInstanceRequest">Container for the necessary parameters to execute the DeleteDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the DeleteDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.SnapshotQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DeleteDBParameterGroup(Amazon.RDS.Model.DeleteDBParameterGroupRequest)">
- <summary>
- <para> Deletes a specified DBParameterGroup. The DBParameterGroup cannot be associated with any RDS instances to be deleted. </para>
- <para><b>NOTE:</b> The specified database parameter group cannot be associated with any DB Instances. </para>
- </summary>
-
- <param name="deleteDBParameterGroupRequest">Container for the necessary parameters to execute the DeleteDBParameterGroup service method on
- AmazonRDS.</param>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBParameterGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.ModifyDBParameterGroup(Amazon.RDS.Model.ModifyDBParameterGroupRequest)">
- <summary>
- <para> Modifies the parameters of a DBParameterGroup. To modify more than one parameter submit a list of the following: ParameterName,
- ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request. </para>
- </summary>
-
- <param name="modifyDBParameterGroupRequest">Container for the necessary parameters to execute the ModifyDBParameterGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the ModifyDBParameterGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBParameterGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeDBSnapshots(Amazon.RDS.Model.DescribeDBSnapshotsRequest)">
- <summary>
- <para> Returns information about DBSnapshots. This API supports pagination. </para>
- </summary>
-
- <param name="describeDBSnapshotsRequest">Container for the necessary parameters to execute the DescribeDBSnapshots service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeDBSnapshots service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSnapshotNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.PurchaseReservedDBInstancesOffering(Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest)">
- <summary>
- <para> Purchases a reserved DB Instance offering. </para>
- </summary>
-
- <param name="purchaseReservedDBInstancesOfferingRequest">Container for the necessary parameters to execute the
- PurchaseReservedDBInstancesOffering service method on AmazonRDS.</param>
-
- <returns>The response from the PurchaseReservedDBInstancesOffering service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstancesOfferingNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstanceAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeEngineDefaultParameters(Amazon.RDS.Model.DescribeEngineDefaultParametersRequest)">
- <summary>
- <para> Returns the default engine and system parameter information for the specified database engine. </para>
- </summary>
-
- <param name="describeEngineDefaultParametersRequest">Container for the necessary parameters to execute the DescribeEngineDefaultParameters
- service method on AmazonRDS.</param>
-
- <returns>The response from the DescribeEngineDefaultParameters service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DescribeReservedDBInstances(Amazon.RDS.Model.DescribeReservedDBInstancesRequest)">
- <summary>
- <para> Returns information about reserved DB Instances for this account, or about a specified reserved DB Instance. </para>
- </summary>
-
- <param name="describeReservedDBInstancesRequest">Container for the necessary parameters to execute the DescribeReservedDBInstances service
- method on AmazonRDS.</param>
-
- <returns>The response from the DescribeReservedDBInstances service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstanceNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDS.DeleteDBSnapshot(Amazon.RDS.Model.DeleteDBSnapshotRequest)">
- <summary>
- <para> Deletes a DBSnapshot. </para> <para><b>NOTE:</b>The DBSnapshot must be in the available state to be deleted.</para>
- </summary>
-
- <param name="deleteDBSnapshotRequest">Container for the necessary parameters to execute the DeleteDBSnapshot service method on
- AmazonRDS.</param>
-
- <returns>The response from the DeleteDBSnapshot service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.InvalidDBSnapshotStateException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonRDSClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.#ctor(System.String,System.String,Amazon.RDS.AmazonRDSConfig)">
- <summary>
- Constructs AmazonRDSClient with AWS Access Key ID, AWS Secret Key and an
- AmazonRDSClient Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonRDSClient Configuration Object</param>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeDBInstances(Amazon.RDS.Model.DescribeDBInstancesRequest)">
- <summary>
- <para> Returns information about provisioned RDS instances. This API supports pagination. </para>
- </summary>
-
- <param name="describeDBInstancesRequest">Container for the necessary parameters to execute the DescribeDBInstances service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeDBInstances service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeEvents(Amazon.RDS.Model.DescribeEventsRequest)">
- <summary>
- <para> Returns events related to DB Instances, DB Security Groups, DB Snapshots and DB Parameter Groups for the past 14 days. Events
- specific to a particular DB Instance, database security group, database snapshot or database parameter group can be obtained by providing
- the name as a parameter. By default, the past hour of events are returned. </para>
- </summary>
-
- <param name="describeEventsRequest">Container for the necessary parameters to execute the DescribeEvents service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeEvents service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeDBParameters(Amazon.RDS.Model.DescribeDBParametersRequest)">
- <summary>
- <para> Returns the detailed parameter list for a particular DBParameterGroup. </para>
- </summary>
-
- <param name="describeDBParametersRequest">Container for the necessary parameters to execute the DescribeDBParameters service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeDBParameters service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.AuthorizeDBSecurityGroupIngress(Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest)">
- <summary>
- <para> Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 Security Groups can be added to the
- DBSecurityGroup if the application using the database is running on EC2 instances. Second, IP ranges are available if the application
- accessing your database is running on the Internet. Required parameters for this API are one of CIDR range or (EC2SecurityGroupName AND
- EC2SecurityGroupOwnerId). </para> <para><b>NOTE:</b> You cannot authorize ingress from an EC2 security group in one Region to an Amazon RDS
- DB Instance in another. </para> <para>For an overview of CIDR ranges, go to the Wikipedia Tutorial. </para>
- </summary>
-
- <param name="authorizeDBSecurityGroupIngressRequest">Container for the necessary parameters to execute the AuthorizeDBSecurityGroupIngress
- service method on AmazonRDS.</param>
-
- <returns>The response from the AuthorizeDBSecurityGroupIngress service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- <exception cref="T:Amazon.RDS.Model.AuthorizationAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.AuthorizationQuotaExceededException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeDBSecurityGroups(Amazon.RDS.Model.DescribeDBSecurityGroupsRequest)">
- <summary>
- <para> Returns a list of DBSecurityGroup descriptions. If a DBSecurityGroupName is specified, the list will contain only the descriptions of
- the specified DBSecurityGroup. </para> <para>For an overview of CIDR ranges, go to the Wikipedia Tutorial. </para>
- </summary>
-
- <param name="describeDBSecurityGroupsRequest">Container for the necessary parameters to execute the DescribeDBSecurityGroups service method
- on AmazonRDS.</param>
-
- <returns>The response from the DescribeDBSecurityGroups service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.ResetDBParameterGroup(Amazon.RDS.Model.ResetDBParameterGroupRequest)">
- <summary>
- <para> Modifies the parameters of a DBParameterGroup to the engine/system default value. To reset specific parameters submit a list of the
- following: ParameterName and ApplyMethod. To reset the entire DBParameterGroup specify the DBParameterGroup name and ResetAllParameters
- parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to
- take effect on the next DB instance restart or RebootDBInstance request. </para>
- </summary>
-
- <param name="resetDBParameterGroupRequest">Container for the necessary parameters to execute the ResetDBParameterGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the ResetDBParameterGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBParameterGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.RestoreDBInstanceToPointInTime(Amazon.RDS.Model.RestoreDBInstanceToPointInTimeRequest)">
- <summary>
- <para> Creates a new DB Instance from a point-in-time system snapshot. The target database is created from the source database restore point
- with the same configuration as the original source database, except that the new RDS instance is created with the default security group.
- </para>
- </summary>
-
- <param name="restoreDBInstanceToPointInTimeRequest">Container for the necessary parameters to execute the RestoreDBInstanceToPointInTime
- service method on AmazonRDS.</param>
-
- <returns>The response from the RestoreDBInstanceToPointInTime service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.PointInTimeRestoreNotEnabledException"/>
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeDBEngineVersions(Amazon.RDS.Model.DescribeDBEngineVersionsRequest)">
- <summary>
- <para> Returns a list of the available DB engines. </para>
- </summary>
-
- <param name="describeDBEngineVersionsRequest">Container for the necessary parameters to execute the DescribeDBEngineVersions service method
- on AmazonRDS.</param>
-
- <returns>The response from the DescribeDBEngineVersions service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.CreateDBParameterGroup(Amazon.RDS.Model.CreateDBParameterGroupRequest)">
- <summary>
- <para> Creates a new database parameter group. </para>
- </summary>
-
- <param name="createDBParameterGroupRequest">Container for the necessary parameters to execute the CreateDBParameterGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBParameterGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.ModifyDBInstance(Amazon.RDS.Model.ModifyDBInstanceRequest)">
- <summary>
- <para> Modify settings for a DB Instance. You can change one or more database configuration parameters by specifying these parameters and
- the new values in the request. </para>
- </summary>
-
- <param name="modifyDBInstanceRequest">Container for the necessary parameters to execute the ModifyDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the ModifyDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.RestoreDBInstanceFromDBSnapshot(Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest)">
- <summary>
- <para> Restores a DB Instance to an arbitrary point-in-time. Users can restore to any point in time before the latestRestorableTime for up
- to backupRetentionPeriod days. The target database is created from the source database with the same configuration as the original database
- except that the DB instance is created with the default DB security group. </para>
- </summary>
-
- <param name="restoreDBInstanceFromDBSnapshotRequest">Container for the necessary parameters to execute the RestoreDBInstanceFromDBSnapshot
- service method on AmazonRDS.</param>
-
- <returns>The response from the RestoreDBInstanceFromDBSnapshot service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSnapshotStateException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.CreateDBSecurityGroup(Amazon.RDS.Model.CreateDBSecurityGroupRequest)">
- <summary>
- <para> Creates a new database security group. Database Security groups control access to a database instance. </para>
- </summary>
-
- <param name="createDBSecurityGroupRequest">Container for the necessary parameters to execute the CreateDBSecurityGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBSecurityGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DeleteDBSecurityGroup(Amazon.RDS.Model.DeleteDBSecurityGroupRequest)">
- <summary>
- <para> Deletes a database security group. </para> <para><b>NOTE:</b>The specified database security group must not be associated with any DB
- instances.</para>
- </summary>
-
- <param name="deleteDBSecurityGroupRequest">Container for the necessary parameters to execute the DeleteDBSecurityGroup service method on
- AmazonRDS.</param>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeOrderableDBInstanceOptions(Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest)">
- <summary>
- <para> Returns a list of orderable DB Instance options for the specified engine. </para>
- </summary>
-
- <param name="describeOrderableDBInstanceOptionsRequest">Container for the necessary parameters to execute the
- DescribeOrderableDBInstanceOptions service method on AmazonRDS.</param>
-
- <returns>The response from the DescribeOrderableDBInstanceOptions service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeReservedDBInstancesOfferings(Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsRequest)">
- <summary>
- <para> Lists available reserved DB Instance offerings. </para>
- </summary>
-
- <param name="describeReservedDBInstancesOfferingsRequest">Container for the necessary parameters to execute the
- DescribeReservedDBInstancesOfferings service method on AmazonRDS.</param>
-
- <returns>The response from the DescribeReservedDBInstancesOfferings service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstancesOfferingNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.CreateDBInstanceReadReplica(Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest)">
- <summary>
- <para> Creates a DB Instance that acts as a Read Replica of a source DB Instance. </para> <para> All Read Replica DB Instances are created
- as Single-AZ deployments with backups disabled. All other DB Instance attributes (including DB Security Groups and DB Parameter Groups) are
- inherited from the source DB Instance, except as specified below. </para> <para><b>IMPORTANT:</b> The source DB Instance must have backup
- retention enabled. </para>
- </summary>
-
- <param name="createDBInstanceReadReplicaRequest">Container for the necessary parameters to execute the CreateDBInstanceReadReplica service
- method on AmazonRDS.</param>
-
- <returns>The response from the CreateDBInstanceReadReplica service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.RevokeDBSecurityGroupIngress(Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest)">
- <summary>
- <para> Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 Security Groups. Required parameters for this API
- are one of CIDRIP or (EC2SecurityGroupName AND EC2SecurityGroupOwnerId). </para>
- </summary>
-
- <param name="revokeDBSecurityGroupIngressRequest">Container for the necessary parameters to execute the RevokeDBSecurityGroupIngress service
- method on AmazonRDS.</param>
-
- <returns>The response from the RevokeDBSecurityGroupIngress service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException"/>
- <exception cref="T:Amazon.RDS.Model.AuthorizationNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.CreateDBSnapshot(Amazon.RDS.Model.CreateDBSnapshotRequest)">
- <summary>
- <para> Creates a DBSnapshot. The source DBInstance must be in "available" state. </para>
- </summary>
-
- <param name="createDBSnapshotRequest">Container for the necessary parameters to execute the CreateDBSnapshot service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBSnapshot service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.SnapshotQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.RebootDBInstance(Amazon.RDS.Model.RebootDBInstanceRequest)">
- <summary>
- <para> Reboots a previously provisioned RDS instance. This API results in the application of modified DBParameterGroup parameters with
- ApplyStatus of pending-reboot to the RDS instance. This action is taken as soon as possible, and results in a momentary outage to the RDS
- instance during which the RDS instance status is set to rebooting. A DBInstance event is created when the reboot is completed. </para>
- </summary>
-
- <param name="rebootDBInstanceRequest">Container for the necessary parameters to execute the RebootDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the RebootDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeDBParameterGroups(Amazon.RDS.Model.DescribeDBParameterGroupsRequest)">
- <summary>
- <para> Returns a list of DBParameterGroup descriptions. If a DBParameterGroupName is specified, the list will contain only the descriptions
- of the specified DBParameterGroup. </para>
- </summary>
-
- <param name="describeDBParameterGroupsRequest">Container for the necessary parameters to execute the DescribeDBParameterGroups service
- method on AmazonRDS.</param>
-
- <returns>The response from the DescribeDBParameterGroups service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.CreateDBInstance(Amazon.RDS.Model.CreateDBInstanceRequest)">
- <summary>
- <para> Creates a new DB instance. </para>
- </summary>
-
- <param name="createDBInstanceRequest">Container for the necessary parameters to execute the CreateDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the CreateDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException"/>
- <exception cref="T:Amazon.RDS.Model.StorageQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSecurityGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DeleteDBInstance(Amazon.RDS.Model.DeleteDBInstanceRequest)">
- <summary>
- <para> The DeleteDBInstance API deletes a previously provisioned RDS instance. A successful response from the web service indicates the
- request was received correctly. If a final DBSnapshot is requested the status of the RDS instance will be "deleting" until the DBSnapshot is
- created. DescribeDBInstance is used to monitor the status of this operation. This cannot be canceled or reverted once submitted. </para>
- </summary>
-
- <param name="deleteDBInstanceRequest">Container for the necessary parameters to execute the DeleteDBInstance service method on
- AmazonRDS.</param>
-
- <returns>The response from the DeleteDBInstance service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBInstanceNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBInstanceStateException"/>
- <exception cref="T:Amazon.RDS.Model.SnapshotQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DeleteDBParameterGroup(Amazon.RDS.Model.DeleteDBParameterGroupRequest)">
- <summary>
- <para> Deletes a specified DBParameterGroup. The DBParameterGroup cannot be associated with any RDS instances to be deleted. </para>
- <para><b>NOTE:</b> The specified database parameter group cannot be associated with any DB Instances. </para>
- </summary>
-
- <param name="deleteDBParameterGroupRequest">Container for the necessary parameters to execute the DeleteDBParameterGroup service method on
- AmazonRDS.</param>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBParameterGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.ModifyDBParameterGroup(Amazon.RDS.Model.ModifyDBParameterGroupRequest)">
- <summary>
- <para> Modifies the parameters of a DBParameterGroup. To modify more than one parameter submit a list of the following: ParameterName,
- ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request. </para>
- </summary>
-
- <param name="modifyDBParameterGroupRequest">Container for the necessary parameters to execute the ModifyDBParameterGroup service method on
- AmazonRDS.</param>
-
- <returns>The response from the ModifyDBParameterGroup service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBParameterGroupNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.InvalidDBParameterGroupStateException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeDBSnapshots(Amazon.RDS.Model.DescribeDBSnapshotsRequest)">
- <summary>
- <para> Returns information about DBSnapshots. This API supports pagination. </para>
- </summary>
-
- <param name="describeDBSnapshotsRequest">Container for the necessary parameters to execute the DescribeDBSnapshots service method on
- AmazonRDS.</param>
-
- <returns>The response from the DescribeDBSnapshots service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.DBSnapshotNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.PurchaseReservedDBInstancesOffering(Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest)">
- <summary>
- <para> Purchases a reserved DB Instance offering. </para>
- </summary>
-
- <param name="purchaseReservedDBInstancesOfferingRequest">Container for the necessary parameters to execute the
- PurchaseReservedDBInstancesOffering service method on AmazonRDS.</param>
-
- <returns>The response from the PurchaseReservedDBInstancesOffering service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstancesOfferingNotFoundException"/>
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstanceQuotaExceededException"/>
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstanceAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeEngineDefaultParameters(Amazon.RDS.Model.DescribeEngineDefaultParametersRequest)">
- <summary>
- <para> Returns the default engine and system parameter information for the specified database engine. </para>
- </summary>
-
- <param name="describeEngineDefaultParametersRequest">Container for the necessary parameters to execute the DescribeEngineDefaultParameters
- service method on AmazonRDS.</param>
-
- <returns>The response from the DescribeEngineDefaultParameters service method, as returned by AmazonRDS.</returns>
-
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DescribeReservedDBInstances(Amazon.RDS.Model.DescribeReservedDBInstancesRequest)">
- <summary>
- <para> Returns information about reserved DB Instances for this account, or about a specified reserved DB Instance. </para>
- </summary>
-
- <param name="describeReservedDBInstancesRequest">Container for the necessary parameters to execute the DescribeReservedDBInstances service
- method on AmazonRDS.</param>
-
- <returns>The response from the DescribeReservedDBInstances service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.ReservedDBInstanceNotFoundException"/>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSClient.DeleteDBSnapshot(Amazon.RDS.Model.DeleteDBSnapshotRequest)">
- <summary>
- <para> Deletes a DBSnapshot. </para> <para><b>NOTE:</b>The DBSnapshot must be in the available state to be deleted.</para>
- </summary>
-
- <param name="deleteDBSnapshotRequest">Container for the necessary parameters to execute the DeleteDBSnapshot service method on
- AmazonRDS.</param>
-
- <returns>The response from the DeleteDBSnapshot service method, as returned by AmazonRDS.</returns>
-
- <exception cref="T:Amazon.RDS.Model.InvalidDBSnapshotStateException"/>
- <exception cref="T:Amazon.RDS.Model.DBSnapshotNotFoundException"/>
- </member>
- <member name="T:Amazon.ImportExport.Model.CancelJobResult">
- <summary>
- <para> Output structure for the CancelJob operation. </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.CancelJobResult.WithSuccess(System.Boolean)">
- <summary>
- Sets the Success property
- </summary>
- <param name="success">The value to set for the Success property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.CancelJobResult.Success">
- <summary>
- Specifies whether (true) or not (false) AWS Import/Export updated your
- job.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateLoginProfileRequest">
- <summary>
- Container for the parameters to the UpdateLoginProfile operation.
- <para>Updates the login profile for the specified User. Use this API
- to change the User's password.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateLoginProfile(Amazon.IdentityManagement.Model.UpdateLoginProfileRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateLoginProfileRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateLoginProfileRequest.WithPassword(System.String)">
- <summary>
- Sets the Password property
- </summary>
- <param name="password">The value to set for the Password property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateLoginProfileRequest.UserName">
- <summary>
- Name of the User whose login profile you want to update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateLoginProfileRequest.Password">
- <summary>
- The new password for the User name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UploadSigningCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UploadSigningCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateAccessKeyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateAccessKey operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetGroup operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteUserRequestMarshaller">
- <summary>
- Delete User Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateLoginProfileResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateLoginProfile operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.AddUserToGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for AddUserToGroup operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ServerCertificateMetadata">
- <summary>
- <para>ServerCertificateMetadata contains information about a server
- certificate without its certificate body, certificate chain, and
- private key.</para> <para>This data type is used as a response element
- in the action UploadServerCertificate and
- ListServerCertificates.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificateMetadata.WithPath(System.String)">
- <summary>
- Sets the Path property
- </summary>
- <param name="path">The value to set for the Path property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificateMetadata.WithServerCertificateName(System.String)">
- <summary>
- Sets the ServerCertificateName property
- </summary>
- <param name="serverCertificateName">The value to set for the ServerCertificateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificateMetadata.WithServerCertificateId(System.String)">
- <summary>
- Sets the ServerCertificateId property
- </summary>
- <param name="serverCertificateId">The value to set for the ServerCertificateId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificateMetadata.WithArn(System.String)">
- <summary>
- Sets the Arn property
- </summary>
- <param name="arn">The value to set for the Arn property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificateMetadata.WithUploadDate(System.DateTime)">
- <summary>
- Sets the UploadDate property
- </summary>
- <param name="uploadDate">The value to set for the UploadDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificateMetadata.Path">
- <summary>
- Path to the server certificate. For more information about paths, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificateMetadata.ServerCertificateName">
- <summary>
- The name that identifies the server certificate.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificateMetadata.ServerCertificateId">
- <summary>
- The stable and unique string identifying the server certificate. For more information about IDs, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>16 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificateMetadata.Arn">
- <summary>
- The Amazon Resource Name (ARN) specifying the server certificate. For more information about ARNs and how to use them in policies, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>20 - 2048</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificateMetadata.UploadDate">
- <summary>
- The date when the server certificate was uploaded.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest">
- <summary>
- Container for the parameters to the RemoveUserFromGroup operation.
- <para>Removes the specified User from the specified group.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.RemoveUserFromGroup(Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest.GroupName">
- <summary>
- Name of the group to update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest.UserName">
- <summary>
- Name of the User to remove.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.MalformedPolicyDocumentException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.MalformedPolicyDocumentException.#ctor(System.String)">
- <summary>
- Constructs a new MalformedPolicyDocumentException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetLoginProfileResponse">
- <summary>
- Returns information about the GetLoginProfileResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetLoginProfileResponse.GetLoginProfileResult">
- <summary>
- Gets and sets the GetLoginProfileResult property.
- Contains the result of a successful invocation of the GetLoginProfile action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteAccountAliasRequest">
- <summary>
- Container for the parameters to the DeleteAccountAlias operation.
- <para>Deletes the specified AWS Account alias. For information about
- using an AWS Account alias, see Using an Alias for Your AWS Account ID
- in <i>Using AWS Identity and Access Management</i> .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteAccountAlias(Amazon.IdentityManagement.Model.DeleteAccountAliasRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteAccountAliasRequest.WithAccountAlias(System.String)">
- <summary>
- Sets the AccountAlias property
- </summary>
- <param name="accountAlias">The value to set for the AccountAlias property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteAccountAliasRequest.AccountAlias">
- <summary>
- Name of the account alias to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>3 - 63</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateAccessKeyRequest">
- <summary>
- Container for the parameters to the CreateAccessKey operation.
- <para>Creates a new AWS Secret Access Key and corresponding AWS Access
- Key ID for the specified User. The default status for new keys is
- <c>Active</c> .</para> <para>If you do not specify a User name, IAM
- determines the User name implicitly based on the AWS Access Key ID
- signing the request. Because this action works for access keys under
- the AWS Account, you can use this API to manage root credentials even
- if the AWS Account has no associated Users.</para> <para>For
- information about limits on the number of keys you can create, see
- Limitations on IAM Entities in <i>Using AWS Identity and Access
- Management</i> .</para> <para><b>IMPORTANT:</b>To ensure the security
- of your AWS Account, the Secret Access Key is accessible only during
- key and User creation. You must save the key (for example, in a text
- file) if you want to be able to access it again. If a secret key is
- lost, you can delete the access keys for the associated User and then
- create new keys.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateAccessKey(Amazon.IdentityManagement.Model.CreateAccessKeyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateAccessKeyRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateAccessKeyRequest.UserName">
- <summary>
- The User name that the new key will belong to.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.AddUserToGroupResponse">
- <summary>
- Returns information about the AddUserToGroup response metadata.
- The AddUserToGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.AddJobFlowStepsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for AddJobFlowSteps operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.TerminateJobFlowsRequest">
- <summary>
- Container for the parameters to the TerminateJobFlows operation.
- <para> TerminateJobFlows shuts a list of job flows down. When a job
- flow is shut down, any step not yet completed is canceled and the EC2
- instances on which the job flow is running are stopped. Any log files
- not already saved are uploaded to Amazon S3 if a LogUri was specified
- when the job flow was created. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.TerminateJobFlows(Amazon.ElasticMapReduce.Model.TerminateJobFlowsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.TerminateJobFlowsRequest.WithJobFlowIds(System.String[])">
- <summary>
- Adds elements to the JobFlowIds collection
- </summary>
- <param name="jobFlowIds">The values to add to the JobFlowIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.TerminateJobFlowsRequest.JobFlowIds">
- <summary>
- A list of job flows to be shutdown.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.KeyValue">
- <summary>
- <para>A key value pair.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.KeyValue.WithKey(System.String)">
- <summary>
- Sets the Key property
- </summary>
- <param name="key">The value to set for the Key property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.KeyValue.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value to set for the Value property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.KeyValue.Key">
- <summary>
- The unique identifier of a key value pair.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.KeyValue.Value">
- <summary>
- The value part of the identified key.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.BootstrapActionConfig">
- <summary>
- <para>Configuration of a bootstrap action.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.BootstrapActionConfig.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.BootstrapActionConfig.WithScriptBootstrapAction(Amazon.ElasticMapReduce.Model.ScriptBootstrapActionConfig)">
- <summary>
- Sets the ScriptBootstrapAction property
- </summary>
- <param name="scriptBootstrapAction">The value to set for the ScriptBootstrapAction property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.BootstrapActionConfig.Name">
- <summary>
- The name of the bootstrap action.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.BootstrapActionConfig.ScriptBootstrapAction">
- <summary>
- The script run by the bootstrap action.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.AddJobFlowStepsResponse">
- <summary>
- Returns information about the AddJobFlowSteps response metadata.
- The AddJobFlowSteps operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.RegisterInstancesWithLoadBalancerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RegisterInstancesWithLoadBalancer operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.EnableAvailabilityZonesForLoadBalancerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for EnableAvailabilityZonesForLoadBalancer operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerResult">
- <summary>
- <para> The output for the DisableAvailabilityZonesForLoadBalancer action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerResult.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerResult.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerResult.AvailabilityZones">
- <summary>
- A list of updated Availability Zones for the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersResult">
- <summary>
- <para> The output for the DeleteLoadBalancerListeners action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest">
- <summary>
- Container for the parameters to the CreateAppCookieStickinessPolicy operation.
- <para> Generates a stickiness policy with sticky session lifetimes that follow that of an application-generated cookie. This policy can be
- associated only with HTTP/HTTPS listeners. </para> <para> This policy is similar to the policy created by CreateLBCookieStickinessPolicy,
- except that the lifetime of the special Elastic Load Balancing cookie follows the lifetime of the application-generated cookie specified in
- the policy configuration. The load balancer only inserts a new stickiness cookie when the application response includes a new application
- cookie. </para> <para> If the application cookie is explicitly removed or expires, the session stops being sticky until a new application
- cookie is issued. </para> <para><b>NOTE:</b> An application client must receive and send two cookies: the application-generated cookie and
- the special Elastic Load Balancing cookie named AWSELB. This is the default behavior for many common web browsers. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateAppCookieStickinessPolicy(Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.#ctor">
- <summary>
- Default constructor for a new CreateAppCookieStickinessPolicyRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.#ctor(System.String,System.String,System.String)">
- <summary>
- Constructs a new CreateAppCookieStickinessPolicyRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- <param name="policyName"> The name of the policy being created. The name must be unique within the set of policies for this Load Balancer.
- </param>
- <param name="cookieName"> Name of the application cookie used for stickiness. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.WithCookieName(System.String)">
- <summary>
- Sets the CookieName property
- </summary>
- <param name="cookieName">The value to set for the CookieName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.PolicyName">
- <summary>
- The name of the policy being created. The name must be unique within the set of policies for this Load Balancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest.CookieName">
- <summary>
- Name of the application cookie used for stickiness.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckResponse">
- <summary>
- Returns information about the ConfigureHealthCheckResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckResponse.ConfigureHealthCheckResult">
- <summary>
- Gets and sets the ConfigureHealthCheckResult property.
- The output for the ConfigureHealthCheck action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingConfig">
- <summary>
- Configuration for accessing Elastic Load Balancing service
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateEnvironmentResultUnmarshaller">
- <summary>
- UpdateEnvironmentResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.LoadBalancerDescriptionUnmarshaller">
- <summary>
- LoadBalancerDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.EnvironmentResourcesDescriptionUnmarshaller">
- <summary>
- EnvironmentResourcesDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEventsRequestMarshaller">
- <summary>
- Describe Events Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteConfigurationTemplateRequestMarshaller">
- <summary>
- Delete Configuration Template Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteApplicationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteApplication operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateConfigurationTemplateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateConfigurationTemplate operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateApplicationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateApplication operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoResult">
- <summary>
- <para>Result message containing a description of the requested environment info.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoResult.WithEnvironmentInfo(Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription[])">
- <summary>
- Adds elements to the EnvironmentInfo collection
- </summary>
- <param name="environmentInfo">The values to add to the EnvironmentInfo collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoResult.WithEnvironmentInfo(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription})">
- <summary>
- Adds elements to the EnvironmentInfo collection
- </summary>
- <param name="environmentInfo">The values to add to the EnvironmentInfo collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoResult.EnvironmentInfo">
- <summary>
- The <a>EnvironmentInfoDescription</a> of the environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest">
- <summary>
- Container for the parameters to the DescribeConfigurationOptions operation.
- <para> Describes the configuration options that are used in a particular configuration template or environment, or that a specified solution
- stack defines. The description includes the values the options, their default values, and an indication of the required action on a running
- environment if an option value is changed. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeConfigurationOptions(Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.WithOptions(Amazon.ElasticBeanstalk.Model.OptionSpecification[])">
- <summary>
- Adds elements to the Options collection
- </summary>
- <param name="options">The values to add to the Options collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.WithOptions(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.OptionSpecification})">
- <summary>
- Adds elements to the Options collection
- </summary>
- <param name="options">The values to add to the Options collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.ApplicationName">
- <summary>
- The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration
- options associated with either the configuration template or environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.TemplateName">
- <summary>
- The name of the configuration template whose configuration options you want to describe.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.EnvironmentName">
- <summary>
- The name of the environment whose configuration options you want to describe.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.SolutionStackName">
- <summary>
- The name of the solution stack whose configuration options you want to describe.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationOptionsRequest.Options">
- <summary>
- If specified, restricts the descriptions to only the specified options.
-
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.VpnConnection">
- <summary>
- VPN Connection
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.WithVpnConnectionId(System.String)">
- <summary>
- Sets the VpnConnectionId property
- </summary>
- <param name="vpnConnectionId">The ID of the VPN connection</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.IsSetVpnConnectionId">
- <summary>
- Checks if VpnConnectionId property is set
- </summary>
- <returns>true if VpnConnectionId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.WithVpnConnectionState(System.String)">
- <summary>
- Sets the VpnConnectionState property
- </summary>
- <param name="vpnConnectionState">The current state of the VPN connection
- (pending, available, deleting, deleted)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.IsSetVpnConnectionState">
- <summary>
- Checks if VpnConnectionState property is set
- </summary>
- <returns>true if VpnConnectionState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.WithCustomerGatewayConfiguration(System.String)">
- <summary>
- Sets the CustomerGatewayConfiguration property
- </summary>
- <param name="customerGatewayConfiguration">Configuration information for the VPN
- connection's customer gateway (in the
- native XML format).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.IsSetCustomerGatewayConfiguration">
- <summary>
- Checks if CustomerGatewayConfiguration property is set
- </summary>
- <returns>true if CustomerGatewayConfiguration property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The type of VPN connection (ipsec.1).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.WithCustomerGatewayId(System.String)">
- <summary>
- Sets the CustomerGatewayId property
- </summary>
- <param name="customerGatewayId">ID of the customer gateway at your end of the
- VPN connection</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.IsSetCustomerGatewayId">
- <summary>
- Checks if CustomerGatewayId property is set
- </summary>
- <returns>true if CustomerGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.WithVpnGatewayId(System.String)">
- <summary>
- Sets the VpnGatewayId property
- </summary>
- <param name="vpnGatewayId">ID of the VPN gateway at the VPC end of the VPN
- connection</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.IsSetVpnGatewayId">
- <summary>
- Checks if VpnGatewayId property is set
- </summary>
- <returns>true if VpnGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">Tag property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpnConnection.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.VpnConnection.VpnConnectionId">
- <summary>
- Gets and sets the VpnConnectionId property.
- The ID of the VPN connection
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnConnection.VpnConnectionState">
- <summary>
- Gets and sets the VpnConnectionState property.
- The current state of the VPN connection
- (pending, available, deleting, deleted)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnConnection.CustomerGatewayConfiguration">
- <summary>
- Gets and sets the CustomerGatewayConfiguration property.
- Configuration information for the VPN
- connection's customer gateway (in the
- native XML format).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnConnection.Type">
- <summary>
- Gets and sets the Type property.
- The type of VPN connection (ipsec.1).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnConnection.CustomerGatewayId">
- <summary>
- Gets and sets the CustomerGatewayId property.
- ID of the customer gateway at your end of the
- VPN connection
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnConnection.VpnGatewayId">
- <summary>
- Gets and sets the VpnGatewayId property.
- ID of the VPN gateway at the VPC end of the VPN
- connection
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpnConnection.Tag">
- <summary>
- Gets and sets the Tag property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.TerminateInstancesResponse">
- <summary>
- Terminate Instances Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesResponse.IsSetTerminateInstancesResult">
- <summary>
- Checks if TerminateInstancesResult property is set
- </summary>
- <returns>true if TerminateInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.TerminateInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.TerminateInstancesResponse.TerminateInstancesResult">
- <summary>
- Gets and sets the TerminateInstancesResult property.
- Terminate Instances Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.S3Storage">
- <summary>
- S3 Storage
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.WithBucket(System.String)">
- <summary>
- Sets the Bucket property
- </summary>
- <param name="bucket">The bucket in which to store the AMI. You can
- specify a bucket that you
- already own or a new bucket that Amazon
- EC2 creates on your behalf. If you
- specify a bucket that belongs
- to someone else, Amazon EC2 returns an
- error.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.IsSetBucket">
- <summary>
- Checks if Bucket property is set
- </summary>
- <returns>true if Bucket property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.WithPrefix(System.String)">
- <summary>
- Sets the Prefix property
- </summary>
- <param name="prefix">Specifies the beginning of the file name of the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.IsSetPrefix">
- <summary>
- Checks if Prefix property is set
- </summary>
- <returns>true if Prefix property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.WithAWSAccessKeyId(System.String)">
- <summary>
- Sets the AWSAccessKeyId property
- </summary>
- <param name="AWSAccessKeyId">The Access Key ID of the owner of the Amazon S3 bucket.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.IsSetAWSAccessKeyId">
- <summary>
- Checks if AWSAccessKeyId property is set
- </summary>
- <returns>true if AWSAccessKeyId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.WithUploadPolicy(System.String)">
- <summary>
- Sets the UploadPolicy property
- </summary>
- <param name="uploadPolicy">A Base64-encoded Amazon S3 upload policy that
- gives Amazon EC2 permission to upload items into
- Amazon S3 on the user's behalf</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.IsSetUploadPolicy">
- <summary>
- Checks if UploadPolicy property is set
- </summary>
- <returns>true if UploadPolicy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.WithUploadPolicySignature(System.String)">
- <summary>
- Sets the UploadPolicySignature property
- </summary>
- <param name="uploadPolicySignature">The signature of the Base64 encoded JSON
- document.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.S3Storage.IsSetUploadPolicySignature">
- <summary>
- Checks if UploadPolicySignature property is set
- </summary>
- <returns>true if UploadPolicySignature property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.S3Storage.Bucket">
- <summary>
- Gets and sets the Bucket property.
- The bucket in which to store the AMI. You can
- specify a bucket that you
- already own or a new bucket that Amazon
- EC2 creates on your behalf. If you
- specify a bucket that belongs
- to someone else, Amazon EC2 returns an
- error.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.S3Storage.Prefix">
- <summary>
- Gets and sets the Prefix property.
- Specifies the beginning of the file name of the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.S3Storage.AWSAccessKeyId">
- <summary>
- Gets and sets the AWSAccessKeyId property.
- The Access Key ID of the owner of the Amazon S3 bucket.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.S3Storage.UploadPolicy">
- <summary>
- Gets and sets the UploadPolicy property.
- A Base64-encoded Amazon S3 upload policy that
- gives Amazon EC2 permission to upload items into
- Amazon S3 on the user's behalf
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.S3Storage.UploadPolicySignature">
- <summary>
- Gets and sets the UploadPolicySignature property.
- The signature of the Base64 encoded JSON
- document.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RevokeSecurityGroupEgressResponse">
- <summary>
- The Response for the
- RevokeSecurityGroupEgress operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupEgressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupEgressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupEgressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupEgressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RevokeSecurityGroupEgressRequest">
- <summary>
- This action applies only to security groups in a VPC. It doesn't work with standard (EC2) security groups.
- For information about Amazon Virtual Private Cloud and VPC security groups, go to the Amazon Virtual
- Private Cloud User Guide.
-
- The action removes one or more egress rules from a VPC security group. The values that you specify in
- the revoke request (e.g., ports, etc.) must match the existing rule's values in order for the rule to be
- revoked.
-
- Each rule consists of the protocol, and the CIDR range or destination security group. For the TCP and
- UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you
- must also specify the ICMP type and code.
-
- Rule changes are propagated to instances within the security group as quickly as possible. However, a
- small delay might occur.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupEgressRequest.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="groupId">ID of the VPC security group to modify.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupEgressRequest.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupEgressRequest.WithIpPermissions(Amazon.EC2.Model.IpPermissionSpecification[])">
- <summary>
- Sets the IpPermissions property
- </summary>
- <param name="list">Set of IP permissions associated with the
- security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupEgressRequest.IsSetIpPermissions">
- <summary>
- Checks if IpPermissions property is set
- </summary>
- <returns>true if IpPermissions property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupEgressRequest.GroupId">
- <summary>
- Gets and sets the GroupId property.
- ID of the VPC security group to modify.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupEgressRequest.IpPermissions">
- <summary>
- Gets and sets the IpPermissions property.
- Set of IP permissions associated with the
- security group.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ResetInstanceAttributeResponse">
- <summary>
- Information returned by a ResetInstanceAttribute
- request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResetInstanceAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetInstanceAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetInstanceAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResetInstanceAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReleaseAddressResponse">
- <summary>
- Release Address Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReleaseAddressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReleaseAddressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReleaseAddressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReleaseAddressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.PlacementGroupInfo">
- <summary>
- Represents a placement group into which multiple Amazon EC2
- instances can be launched. A placement group ensures that
- Amazon EC2 instances are physically located close enough to
- support HPC features, such as higher IO network connections between
- instances in the group.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.PlacementGroupInfo.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The name of the PlacementGroup.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PlacementGroupInfo.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PlacementGroupInfo.WithStrategy(System.String)">
- <summary>
- Sets the Strategy property
- </summary>
- <param name="strategy">The strategy to use when allocating Amazon EC2
- instances for the
- PlacementGroup.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PlacementGroupInfo.IsSetStrategy">
- <summary>
- Checks if Strategy property is set
- </summary>
- <returns>true if Strategy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PlacementGroupInfo.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The state of this PlacementGroup.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PlacementGroupInfo.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.PlacementGroupInfo.GroupName">
- <summary>
- Gets and sets the GroupName property.
- The name of the PlacementGroup.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.PlacementGroupInfo.Strategy">
- <summary>
- Gets and sets the Strategy property.
- The strategy to use when allocating Amazon EC2
- instances for the
- PlacementGroup.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.PlacementGroupInfo.State">
- <summary>
- Gets and sets the State property.
- The state of this PlacementGroup.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.LaunchSpecification">
- <summary>
- Specifies additional launch instance information.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">The AMI ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">The name of the key pair.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithSecurityGroup(System.String[])">
- <summary>
- Sets the SecurityGroup property
- </summary>
- <param name="list">The Security Groups to associate the launched
- instance with.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetSecurityGroup">
- <summary>
- Checks if SecurityGroup property is set
- </summary>
- <returns>true if SecurityGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithSecurityGroupId(System.String[])">
- <summary>
- Sets the SecurityGroupId property
- </summary>
- <param name="list">IDs of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetSecurityGroupId">
- <summary>
- Checks if SecurityGroupId property is set
- </summary>
- <returns>true if SecurityGroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithUserData(System.String)">
- <summary>
- Sets the UserData property
- </summary>
- <param name="userData">MIME, Base64-encoded user data.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetUserData">
- <summary>
- Checks if UserData property is set
- </summary>
- <returns>true if UserData property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithAddressingType(System.String)">
- <summary>
- Sets the AddressingType property
- </summary>
- <param name="addressingType">Deprecated.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetAddressingType">
- <summary>
- Checks if AddressingType property is set
- </summary>
- <returns>true if AddressingType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">Specifies the instance type. Valid values are:
- m1.small | m1.large | m1.xlarge |
- c1.medium | c1.xlarge |
- m2.2xlarge | m2.4xlarge.
- Default: m1.small</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithPlacement(Amazon.EC2.Model.Placement)">
- <summary>
- Sets the Placement property
- </summary>
- <param name="placement">Specifies the placement constraints.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetPlacement">
- <summary>
- Checks if Placement property is set
- </summary>
- <returns>true if Placement property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">The ID of the kernel to select.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetKernelId">
- <summary>
- Checks if KernelId property is set
- </summary>
- <returns>true if KernelId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">The ID of the RAM disk to select. Some kernels
- require additional drivers at launch. Check the kernel
- requirements for information on whether you need to
- specify a RAM
- disk.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetRamdiskId">
- <summary>
- Checks if RamdiskId property is set
- </summary>
- <returns>true if RamdiskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithBlockDeviceMapping(Amazon.EC2.Model.BlockDeviceMapping[])">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="list">Specifies how block devices are exposed to the
- instance. Each mapping is made up of a virtualName
- and a deviceName.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithMonitoring(Amazon.EC2.Model.MonitoringSpecification)">
- <summary>
- Sets the Monitoring property
- </summary>
- <param name="monitoring">Specifies whether to enable monitoring for the Spot Instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetMonitoring">
- <summary>
- Checks if Monitoring property is set
- </summary>
- <returns>true if Monitoring property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">Specifies the Amazon VPC subnet ID within which to
- launch the instance(s) for Amazon Virtual Private Cloud.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchSpecification.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.ImageId">
- <summary>
- Gets and sets the ImageId property.
- The AMI ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.KeyName">
- <summary>
- Gets and sets the KeyName property.
- The name of the key pair.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.SecurityGroup">
- <summary>
- Gets and sets the SecurityGroup property.
- The Security Groups to associate the launched
- instance with.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.SecurityGroupId">
- <summary>
- Gets and sets the SecurityGroupId property.
- IDs of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.UserData">
- <summary>
- Gets and sets the UserData property.
- MIME, Base64-encoded user data.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.AddressingType">
- <summary>
- Gets and sets the AddressingType property.
- Deprecated.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- Specifies the instance type. Valid values are:
- m1.small | m1.large | m1.xlarge |
- c1.medium | c1.xlarge |
- m2.2xlarge | m2.4xlarge.
- Default: m1.small
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.Placement">
- <summary>
- Gets and sets the Placement property.
- Specifies the placement constraints.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.KernelId">
- <summary>
- Gets and sets the KernelId property.
- The ID of the kernel to select.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.RamdiskId">
- <summary>
- Gets and sets the RamdiskId property.
- The ID of the RAM disk to select. Some kernels
- require additional drivers at launch. Check the kernel
- requirements for information on whether you need to
- specify a RAM
- disk.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- Specifies how block devices are exposed to the
- instance. Each mapping is made up of a virtualName
- and a deviceName.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.Monitoring">
- <summary>
- Gets and sets the Monitoring property.
- Specifies whether to enable monitoring for the Spot Instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchSpecification.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- Specifies the Amazon VPC subnet ID within which to
- launch the instance(s) for Amazon Virtual Private Cloud.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceEbsBlockDeviceParameter">
- <summary>
- Information about the instance EBS block device.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDeviceParameter.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the Amazon EBS volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDeviceParameter.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDeviceParameter.WithDeleteOnTermination(System.Boolean)">
- <summary>
- Sets the DeleteOnTermination property
- </summary>
- <param name="deleteOnTermination">Specifies whether the Amazon EBS volume is
- deleted on instance termination.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDeviceParameter.IsSetDeleteOnTermination">
- <summary>
- Checks if DeleteOnTermination property is set
- </summary>
- <returns>true if DeleteOnTermination property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceEbsBlockDeviceParameter.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the Amazon EBS volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceEbsBlockDeviceParameter.DeleteOnTermination">
- <summary>
- Gets and sets the DeleteOnTermination property.
- Specifies whether the Amazon EBS volume is
- deleted on instance termination.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.GetConsoleOutputRequest">
- <summary>
- Retrieves console output for the specified
- instance.
-
- Instance console output is buffered and posted shortly
- after instance boot,
- reboot, and termination. Amazon EC2 preserves
- the most recent 64 KB output which
- will be available for at least
- one hour after the most recent post
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">ID of the instance for which you want console
- output.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.GetConsoleOutputRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- ID of the instance for which you want console
- output.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DiskImageType">
- <summary>
- Details about the image.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageType.WithImage(Amazon.EC2.Model.DiskImageDetailType)">
- <summary>
- Sets the Image property
- </summary>
- <param name="image">Details about the format of the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageType.IsSetImage">
- <summary>
- Checks if Image property is set
- </summary>
- <returns>true if Image property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageType.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Optional description of the disk image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageType.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageType.WithVolume(Amazon.EC2.Model.DiskImageVolumeType)">
- <summary>
- Sets the Volume property
- </summary>
- <param name="volume">Details about the size of the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageType.IsSetVolume">
- <summary>
- Checks if Volume property is set
- </summary>
- <returns>true if Volume property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageType.Image">
- <summary>
- Gets and sets the Image property.
- Details about the format of the image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageType.Description">
- <summary>
- Gets and sets the Description property.
- Optional description of the disk image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageType.Volume">
- <summary>
- Gets and sets the Volume property.
- Details about the size of the image.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DhcpConfiguration">
- <summary>
- DHCP Configuration
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpConfiguration.WithKey(System.String)">
- <summary>
- Sets the Key property
- </summary>
- <param name="key">The name of a DHCP option.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpConfiguration.IsSetKey">
- <summary>
- Checks if Key property is set
- </summary>
- <returns>true if Key property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpConfiguration.WithValue(System.String[])">
- <summary>
- Sets the Value property
- </summary>
- <param name="list">A value for the DHCP option.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpConfiguration.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DhcpConfiguration.Key">
- <summary>
- Gets and sets the Key property.
- The name of a DHCP option.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DhcpConfiguration.Value">
- <summary>
- Gets and sets the Value property.
- A value for the DHCP option.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DetachInternetGatewayRequest">
- <summary>
- Detaches an Internet gateway from a VPC, disabling connectivity between the Internet and the VPC.The
- VPC must not contain any running instances with elastic IP addresses. For more information about your
- VPC and Internet gateway, go to Amazon Virtual Private Cloud User Guide.
-
- For more information about Amazon Virtual Private Cloud and Internet gateways, go to the Amazon Virtual
- Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DetachInternetGatewayRequest.WithInternetGatewayId(System.String)">
- <summary>
- Sets the InternetGatewayId property
- </summary>
- <param name="internetGatewayId">The ID of the Internet gateway to attach.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachInternetGatewayRequest.IsSetInternetGatewayId">
- <summary>
- Checks if InternetGatewayId property is set
- </summary>
- <returns>true if InternetGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachInternetGatewayRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachInternetGatewayRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DetachInternetGatewayRequest.InternetGatewayId">
- <summary>
- Gets and sets the InternetGatewayId property.
- The ID of the Internet gateway to attach.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DetachInternetGatewayRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotPriceHistoryResponse">
- <summary>
- The list of cancelled Spot Instance requests.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResponse.IsSetDescribeSpotPriceHistoryResult">
- <summary>
- Checks if DescribeSpotPriceHistoryResult property is set
- </summary>
- <returns>true if DescribeSpotPriceHistoryResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryResponse.DescribeSpotPriceHistoryResult">
- <summary>
- Gets and sets the DescribeSpotPriceHistoryResult property.
- The Result containing the Spot Price history data.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSubnetRequest">
- <summary>
- Deletes a subnet from a VPC. You must terminate all running instances in
- the subnet before deleting it, otherwise Amazon VPC returns an error.
-
- AWS might delete any subnet if you leave it inactive for an extended
- period of time (inactive means that there are no running
- Amazon EC2 instances in the subnet).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSubnetRequest.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">The ID of the subnet you want to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSubnetRequest.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSubnetRequest.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- The ID of the subnet you want to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSnapshotResponse">
- <summary>
- Delete Snapshot Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSnapshotResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSnapshotResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSnapshotResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSnapshotResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpnGatewayResponse">
- <summary>
- Create Vpn Gateway Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayResponse.IsSetCreateVpnGatewayResult">
- <summary>
- Checks if CreateVpnGatewayResult property is set
- </summary>
- <returns>true if CreateVpnGatewayResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnGatewayResponse.CreateVpnGatewayResult">
- <summary>
- Gets and sets the CreateVpnGatewayResult property.
- Create Vpn Gateway Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpcRequest">
- <summary>
- Creates a VPC with the CIDR block you specify.
- The smallest VPC you can create uses a /28 netmask (16 IP
- addresses), and the largest uses a /18 netmask (16,384 IP addresses).
- To help you decide how big to make your VPC, go to the
- topic about creating VPCs in the Amazon Virtual Private Cloud
- Developer Guide.
-
- By default, each instance you launch in the VPC has the default DHCP
- options (the standard EC2 host name, no domain name, no DNS server, no NTP
- server, and no NetBIOS server or node type).
-
- AWS might delete any VPC that you create with this operation
- if you leave it inactive for an extended period of time (inactive
- means that there are no running Amazon EC2 instances in the VPC).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcRequest.WithCidrBlock(System.String)">
- <summary>
- Sets the CidrBlock property
- </summary>
- <param name="cidrBlock">A valid CIDR block.
-
- Constraints: Must contain the slash followed by one or two digits (e.g., /28)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcRequest.IsSetCidrBlock">
- <summary>
- Checks if CidrBlock property is set
- </summary>
- <returns>true if CidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcRequest.IsSetInstanceTenancy">
- <summary>
- Checks if InstanceTenancy property is set
- </summary>
- <returns>true if InstanceTenancy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcRequest.WithInstanceTenancy(System.String)">
- <summary>
- Sets the InstanceTenancy property
-
- Valid Values: default | dedicated
- </summary>
- <param name="instanceTenancy">The allowed tenancy of instances launched into the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpcRequest.CidrBlock">
- <summary>
- Gets and sets the CidrBlock property.
- A valid CIDR block.
-
- Constraints: Must contain the slash followed by one or two digits (e.g., /28)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpcRequest.InstanceTenancy">
- <summary>
- Gets and sets the InstanceTenancy property.
- The allowed tenancy of instances launched into the VPC. A value of default means instances
- can be launched with any tenancy; a value of dedicated means instances must be launched
- with tenancy as dedicated.
-
- Valid Values: default | dedicated
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateRouteResponse">
- <summary>
- The Response for the
- CreateRoute operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelSpotInstanceRequestsResponse">
- <summary>
- The Response from the CancelSpotInstanceRequests
- operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsResponse.IsSetCancelSpotInstanceRequestsResult">
- <summary>
- Checks if CancelSpotInstanceRequestsResult property is set
- </summary>
- <returns>true if CancelSpotInstanceRequestsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelSpotInstanceRequestsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CancelSpotInstanceRequestsResponse.CancelSpotInstanceRequestsResult">
- <summary>
- Gets and sets the CancelSpotInstanceRequestsResult property.
- The Cancel Spot Instance Requests Result.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Attachment">
- <summary>
- Volume Attachment
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.WithDevice(System.String)">
- <summary>
- Sets the Device property
- </summary>
- <param name="device">Specifies how the device is exposed to the instance (e.g., /dev/sdh).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.IsSetDevice">
- <summary>
- Checks if Device property is set
- </summary>
- <returns>true if Device property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">Attachment state. Valid Values: attaching |
- attached | detaching | detached</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.IsSetStatus">
- <summary>
- Checks if Status property is set
- </summary>
- <returns>true if Status property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.WithAttachTime(System.String)">
- <summary>
- Sets the AttachTime property
- </summary>
- <param name="attachTime">Time stamp when the association was created.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.IsSetAttachTime">
- <summary>
- Checks if AttachTime property is set
- </summary>
- <returns>true if AttachTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.WithDeleteOnTermination(System.Boolean)">
- <summary>
- Sets the DeleteOnTermination property
- </summary>
- <param name="deleteOnTermination">Determines whether the EBS block device is
- deleted on instance termination.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Attachment.IsSetDeleteOnTermination">
- <summary>
- Checks if DeleteOnTermination property is set
- </summary>
- <returns>true if DeleteOnTermination property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Attachment.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Attachment.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Attachment.Device">
- <summary>
- Gets and sets the Device property.
- Specifies how the device is exposed to the instance (e.g., /dev/sdh).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Attachment.Status">
- <summary>
- Gets and sets the Status property.
- Attachment state. Valid Values: attaching |
- attached | detaching | detached
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Attachment.AttachTime">
- <summary>
- Gets and sets the AttachTime property.
- Time stamp when the association was created.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Attachment.DeleteOnTermination">
- <summary>
- Gets and sets the DeleteOnTermination property.
- Determines whether the EBS block device is
- deleted on instance termination.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateRouteTableResponse">
- <summary>
- The Response for the
- AssociateRouteTable operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableResponse.IsSetAssociateRouteTableResult">
- <summary>
- Checks if AssociateRouteTableResult property is set
- </summary>
- <returns>true if AssociateRouteTableResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateRouteTableResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateRouteTableResponse.AssociateRouteTableResult">
- <summary>
- Gets and sets the AssociateRouteTableResult property.
- AssociateRouteTable Result
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.PutMetricAlarmRequestMarshaller">
- <summary>
- Put Metric Alarm Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.ListMetricsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListMetrics operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.GetMetricStatisticsResponse">
- <summary>
- Returns information about the GetMetricStatisticsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsResponse.GetMetricStatisticsResult">
- <summary>
- Gets and sets the GetMetricStatisticsResult property.
- The output for the GetMetricStatistics action.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmsResponse">
- <summary>
- Returns information about the DescribeAlarmsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsResponse.DescribeAlarmsResult">
- <summary>
- Gets and sets the DescribeAlarmsResult property.
- The output for the DescribeAlarms action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetInvalidationResponse">
- <summary>
- The GetInvalidationResponse contains the details of a particular invalidation
- and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationResponse.Status">
- <summary>
- Gets and Sets the Status property. Valid Values are InProgress and Completed
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationResponse.Id">
- <summary>
- Gets and Sets the Id property which is the invalidation id
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationResponse.CreateTime">
- <summary>
- Gets and Sets the CreateTime property which is the date and time the invalidation request was first made.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationResponse.InvalidationBatch">
- <summary>
- Gets and Sets the InvalidationBatch property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetDistributionConfigRequest">
- <summary>
- The GetDistributionConfigRequest contains the parameters used for the GetDistributionConfig operation.
- <br />Required Parameters: Id
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetDistributionConfigRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The distribution's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetDistributionConfigRequest.Id">
- <summary>
- Gets and sets the Id property for the Distribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.DeleteOriginAccessIdentityResponse">
- <summary>
- The DeleteOriginAccessIdentityResponse contains any headers returned by CloudFront.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity">
- <summary>
- A CloudFrontOriginAccessIdentity describes the information about a CloudFront Origin
- Access Identity. It is used as a response element when Creating a new CloudFront Origin Access
- Identity and when an Origin Access Identity's details are retrieved.
- <para>An origin access identity consists of the following items:
- <list type="number">
- <item>Id</item>
- <item>S3 Canonical User Id</item>
- <item>The Configuration for the Origin Access Identity</item>
- </list>
- </para>
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/OAIConfigDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.IsSetId">
- <summary>
- Checks if Id property is set.
- </summary>
- <returns>true if Id property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.IsSetS3CanonicalUserId">
- <summary>
- Checks if S3CanonicalUserId property is set.
- </summary>
- <returns>true if S3CanonicalUserId property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.IsSetConfig">
- <summary>
- Checks if OriginAccessIdentityConfig property is set
- </summary>
- <returns>true if OriginAccessIdentityConfig property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.ToString">
- <summary>
- Creates an XML representation of this CloudFront
- Origin Access Identity.
- </summary>
- <returns>
- XML representation of the Origin Access Identity
- </returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.IsSetETag">
- <summary>
- Checks if the ETag property is set.
- </summary>
- <returns>true if ETag property is set.</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.Id">
- <summary>
- Gets and sets the Id property. This is the Id returned by CloudFront
- when the distribution is created and is unique to the Distribution.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.S3CanonicalUserId">
- <summary>
- Gets and sets the Status property.
- The current status of the Distribution can either be Deployed or In Progres
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.OriginAccessIdentityConfig">
- <summary>
- Gets and sets the current Origin Access Identity Configuration.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.ETag">
- <summary>
- Gets and sets the ETag property of this
- Origin Access Identity's Information.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig">
- <summary>
- The CloudFrontOriginAccessIdentityConfig complex type describes an origin access identity's configuration information.
- <para>An origin access identity configuration objects consists of the following items:
- <list type="number">
- <item>Caller Reference</item>
- <item>Comment</item>
- </list>
- </para>
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionConfigDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.ToString">
- <summary>
- Creates an XML representation of the CloudFront
- distribution configuration. The resulting XML
- can be sent to CloudFront when creating or updating
- a distribution.
- </summary>
- <returns>
- XML representation of the distribution's configuration
- </returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.WithComment(System.String)">
- <summary>
- Sets the Comment property.
- </summary>
- <param name="comment">Comment property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.IsSetComment">
- <summary>
- Checks if Comment property is set.
- </summary>
- <returns>true if Comment property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.WithCallerReference(System.String)">
- <summary>
- Sets the CallerReference property
- </summary>
- <param name="callerReference">CallerReference property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.IsSetCallerReference">
- <summary>
- Checks if CallerReference property is set
- </summary>
- <returns>true if CallerReference property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.IsSetETag">
- <summary>
- Checks if the ETag property is set.
- </summary>
- <returns>true if ETag property is set.</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.Comment">
- <summary>
- Gets and sets the Comment property.
- Any comments you want to include about the distribution.
- The maximum length of the comment is 128 characters
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.CallerReference">
- <summary>
- Gets and sets the CallerReference property.
- A unique number that ensures the request can't be replayed.
- If the CallerReference is new (no matter the content of the
- CloudFrontOriginAccessIdentityConfig object), a new distribution
- is created. The default value set by the AWS SDK for NET is the
- UtcNow timestamp.
- </summary>
- <remarks>
- <para>If the CallerReference is a value you already sent in a previous request to
- create an identity, and the content of the CloudFrontOriginAccessIdentityConfig is
- identical to the original request (ignoring white space), the response includes
- the same information returned to the original request.</para>
- <para>If the CallerReference is a value you already sent in a previous request to
- create an identity but the content of the CloudFrontOriginAccessIdentityConfig is different from the
- original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists error.</para>
- </remarks>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig.ETag">
- <summary>
- Gets and sets the ETag property of this
- Origin Access Identity Configuration.
- The ETag is the current version of the
- configuration.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ValidateTemplateResultUnmarshaller">
- <summary>
- ValidateTemplateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.GetTemplateRequestMarshaller">
- <summary>
- Get Template Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackResourceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeStackResource operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.AmazonCloudFormationConfig">
- <summary>
- Configuration for accessing AWS CloudFormation service
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.AmazonCloudFormationConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.SetInstanceHealthResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SetInstanceHealth operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.PutScalingPolicyRequestMarshaller">
- <summary>
- Put Scaling Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.PutNotificationConfigurationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PutNotificationConfiguration operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.MetricCollectionTypeUnmarshaller">
- <summary>
- MetricCollectionType Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.EnableMetricsCollectionRequestMarshaller">
- <summary>
- Enable Metrics Collection Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScheduledActionsRequestMarshaller">
- <summary>
- Describe Scheduled Actions Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribePoliciesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribePolicies operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeNotificationConfigurationsResultUnmarshaller">
- <summary>
- DescribeNotificationConfigurationsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeLaunchConfigurationsRequestMarshaller">
- <summary>
- Describe Launch Configurations Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeletePolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeletePolicy operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest">
- <summary>
- Container for the parameters to the TerminateInstanceInAutoScalingGroup operation.
- <para> Terminates the specified instance. Optionally, the desired group size can be adjusted. </para> <para><b>NOTE:</b> This call simply
- registers a termination request. The termination of the instance cannot happen immediately. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.TerminateInstanceInAutoScalingGroup(Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The value to set for the InstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest.WithShouldDecrementDesiredCapacity(System.Boolean)">
- <summary>
- Sets the ShouldDecrementDesiredCapacity property
- </summary>
- <param name="shouldDecrementDesiredCapacity">The value to set for the ShouldDecrementDesiredCapacity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest.InstanceId">
- <summary>
- The ID of the EC2 instance to be terminated.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupRequest.ShouldDecrementDesiredCapacity">
- <summary>
- Specifies whether (<i>true</i>) or not (<i>false</i>) terminating this instance should also decrement the size of the
- <a>AutoScalingGroup</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.EnabledMetric">
- <summary>
- <para> The EnabledMetric data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.EnabledMetric.WithMetric(System.String)">
- <summary>
- Sets the Metric property
- </summary>
- <param name="metric">The value to set for the Metric property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.EnabledMetric.WithGranularity(System.String)">
- <summary>
- Sets the Granularity property
- </summary>
- <param name="granularity">The value to set for the Granularity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.EnabledMetric.Metric">
- <summary>
- The name of the enabled metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.EnabledMetric.Granularity">
- <summary>
- The granularity of the enabled metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribePoliciesResult">
- <summary>
- <para> The PoliciesType data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesResult.WithScalingPolicies(Amazon.AutoScaling.Model.ScalingPolicy[])">
- <summary>
- Adds elements to the ScalingPolicies collection
- </summary>
- <param name="scalingPolicies">The values to add to the ScalingPolicies collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesResult.WithScalingPolicies(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.ScalingPolicy})">
- <summary>
- Adds elements to the ScalingPolicies collection
- </summary>
- <param name="scalingPolicies">The values to add to the ScalingPolicies collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribePoliciesResult.ScalingPolicies">
- <summary>
- A list of scaling policies.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribePoliciesResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResponse">
- <summary>
- Returns information about the DescribeAutoScalingGroupsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResponse.DescribeAutoScalingGroupsResult">
- <summary>
- Gets and sets the DescribeAutoScalingGroupsResult property.
- The AutoScalingGroupsType data type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteScheduledActionResponse">
- <summary>
- Returns information about the DeleteScheduledAction response metadata.
- The DeleteScheduledAction operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteNotificationConfigurationResponse">
- <summary>
- Returns information about the DeleteNotificationConfiguration response metadata.
- The DeleteNotificationConfiguration operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteAutoScalingGroupResponse">
- <summary>
- Returns information about the DeleteAutoScalingGroup response metadata.
- The DeleteAutoScalingGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.CreateAutoScalingGroupResponse">
- <summary>
- Returns information about the CreateAutoScalingGroup response metadata.
- The CreateAutoScalingGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.Util.AWSSDKUtils">
- <summary>
- This class defines utilities and constants that can be used by
- all the client libraries of the SDK.
- </summary>
- </member>
- <member name="F:Amazon.Util.AWSSDKUtils.ValidUrlCharacters">
- <summary>
- The Set of accepted and valid Url characters.
- Characters outside of this set will be encoded
- </summary>
- </member>
- <member name="F:Amazon.Util.AWSSDKUtils.UrlEncodedContent">
- <summary>
- The string representing Url Encoded Content in HTTP requests
- </summary>
- </member>
- <member name="F:Amazon.Util.AWSSDKUtils.GMTDateFormat">
- <summary>
- The GMT Date Format string. Used when parsing date objects
- </summary>
- </member>
- <member name="F:Amazon.Util.AWSSDKUtils.ISO8601DateFormat">
- <summary>
- The ISO8601Date Format string. Used when parsing date objects
- </summary>
- </member>
- <member name="F:Amazon.Util.AWSSDKUtils.ISO8601DateFormatNoMS">
- <summary>
- The ISO8601Date Format string. Used when parsing date objects
- </summary>
- </member>
- <member name="F:Amazon.Util.AWSSDKUtils.RFC822DateFormat">
- <summary>
- The RFC822Date Format string. Used when parsing date objects
- </summary>
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.GetParametersAsString(System.Collections.Generic.IDictionary{System.String,System.String})">
- Convert Dictionary of paremeters to Url encoded query string
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.PreserveStackTrace(System.Exception)">
- <summary>
- This method is used preserve the stacktrace used from clients that support async calls. This
- make sure that exceptions thrown during EndXXX methods has the orignal stacktrace that happen
- in the background thread.
- </summary>
- <param name="exception"></param>
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.Join(System.Collections.Generic.List{System.String})">
- <summary>
- Returns a new string created by joining each of the strings in the
- specified list together, with a comma between them.
- </summary>
- <parma name="strings">The list of strings to join into a single, comma delimited
- string list.</parma>
- <returns> A new string created by joining each of the strings in the
- specified list together, with a comma between strings.</returns>
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.GetFormattedTimestampISO8601(System.Int32)">
- <summary>
- Gets the ISO8601 formatted timestamp that is minutesFromNow
- in the future.
- </summary>
- <param name="minutesFromNow">The number of minutes from the current instant
- for which the timestamp is needed.</param>
- <returns>The ISO8601 formatted future timestamp.</returns>
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.GetFormattedTimestampRFC822(System.Int32)">
- <summary>
- Gets the RFC822 formatted timestamp that is minutesFromNow
- in the future.
- </summary>
- <param name="minutesFromNow">The number of minutes from the current instant
- for which the timestamp is needed.</param>
- <returns>The ISO8601 formatted future timestamp.</returns>
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.HMACSign(System.String,System.Security.SecureString,System.Security.Cryptography.KeyedHashAlgorithm)">
- <summary>
- Computes RFC 2104-compliant HMAC signature
- </summary>
- <param name="data">The data to be signed</param>
- <param name="key">The secret signing key</param>
- <param name="algorithm">The algorithm to sign the data with</param>
- <exception cref="T:System.ArgumentNullException"/>
- <returns>A string representing the HMAC signature</returns>
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.HMACSign(System.String,System.String,System.Security.Cryptography.KeyedHashAlgorithm)">
- <summary>
- Computes RFC 2104-compliant HMAC signature
- </summary>
- <param name="data">The data to be signed</param>
- <param name="key">The secret signing key</param>
- <param name="algorithm">The algorithm to sign the data with</param>
- <exception cref="T:System.ArgumentNullException"/>
- <returns>A string representing the HMAC signature</returns>
- </member>
- <member name="M:Amazon.Util.AWSSDKUtils.UrlEncode(System.String,System.Boolean)">
- <summary>
- URL encodes a string. If the path property is specified,
- the accepted path characters {/+:} are not encoded.
- </summary>
- <param name="data">The string to encode</param>
- <param name="path">Whether the string is a URL path or not</param>
- <returns></returns>
- </member>
- <member name="P:Amazon.Util.AWSSDKUtils.SDKUserAgent">
- <summary>
- The AWS SDK User Agent
- </summary>
- </member>
- <member name="P:Amazon.Util.AWSSDKUtils.FormattedCurrentTimestampGMT">
- <summary>
- Formats the current date as a GMT timestamp
- </summary>
- <returns>A GMT formatted string representation
- of the current date and time
- </returns>
- </member>
- <member name="P:Amazon.Util.AWSSDKUtils.FormattedCurrentTimestampISO8601">
- <summary>
- Formats the current date as ISO 8601 timestamp
- </summary>
- <returns>An ISO 8601 formatted string representation
- of the current date and time
- </returns>
- </member>
- <member name="P:Amazon.Util.AWSSDKUtils.FormattedCurrentTimestampRFC822">
- <summary>
- Formats the current date as ISO 8601 timestamp
- </summary>
- <returns>An ISO 8601 formatted string representation
- of the current date and time
- </returns>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.DeleteTopicRequest">
- <summary>
- Deletes a topic and all its subscriptions.
- Deleting a topic might
- prevent some messages previously sent to the topic from being delivered to
- subscribers. This operation is idempotent, so deleting a topic that does not
- exist will not result in an error.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.DeleteTopicRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The Amazon Reference Name (ARN) of the topic the client wants to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.DeleteTopicRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.DeleteTopicRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The Amazon Reference Name (ARN) of the topic the client wants to delete.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.AmazonSimpleNotificationService">
- <summary>
- Amazon Simple Notification Service
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.ConfirmSubscription(Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest)">
- <summary>
- Confirm Subscription
- </summary>
- <param name="request">Confirm Subscription request</param>
- <returns>Confirm Subscription Response from the service</returns>
- <remarks>
- The ConfirmSubscription action verifies an endpoint owner's intent to receive messages by validating
- the token sent to the endpoint by an earlier Subscribe action. If the
- token is valid, the action creates a new subscription and returns its
- Amazon Resource Name (ARN). This call requires an AWS signature only when the AuthenticateOnUnsubscribe flag is set to "true".
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.GetTopicAttributes(Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest)">
- <summary>
- Get Topic Attributes
- </summary>
- <param name="request">Get Topic Attributes request</param>
- <returns>Get Topic Attributes Response from the service</returns>
- <remarks>
- The GetTopicAttribtues action returns all of the properties of a topic customers have created. Topic
- properties returned might differ based on the authorization of the user.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.Subscribe(Amazon.SimpleNotificationService.Model.SubscribeRequest)">
- <summary>
- Subscribe
- </summary>
- <param name="request">Subscribe request</param>
- <returns>Subscribe Response from the service</returns>
- <remarks>
- The Subscribe action prepares to subscribe an endpoint by sending the endpoint a confirmation message. To actually create a
- subscription, the endpoint owner must call the ConfirmSubscription
- action with the token from the confirmation message. Confirmation tokens are
- valid for twenty-four hours.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.SetTopicAttributes(Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest)">
- <summary>
- Set Topic Attributes
- </summary>
- <param name="request">Set Topic Attributes request</param>
- <returns>Set Topic Attributes Response from the service</returns>
- <remarks>
- The SetTopicAttributes action allows a topic owner to set an attribute of the topic to a new value.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.DeleteTopic(Amazon.SimpleNotificationService.Model.DeleteTopicRequest)">
- <summary>
- Delete Topic
- </summary>
- <param name="request">Delete Topic request</param>
- <returns>Delete Topic Response from the service</returns>
- <remarks>
- The DeleteTopic action deletes a topic and all its subscriptions. Deleting a topic might
- prevent some messages previously sent to the topic from being delivered to
- subscribers. This action is idempotent, so deleting a topic that does not
- exist will not result in an error.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.RemovePermission(Amazon.SimpleNotificationService.Model.RemovePermissionRequest)">
- <summary>
- Remove Permission
- </summary>
- <param name="request">Remove Permission request</param>
- <returns>Remove Permission Response from the service</returns>
- <remarks>
- The RemovePermission action removes a statement from a topic's access control policy.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.ListSubscriptions(Amazon.SimpleNotificationService.Model.ListSubscriptionsRequest)">
- <summary>
- List Subscriptions
- </summary>
- <param name="request">List Subscriptions request</param>
- <returns>List Subscriptions Response from the service</returns>
- <remarks>
- The ListSubscriptions action returns a list of the requester's subscriptions. Each call returns a limited list
- of subscriptions. If there are more subscriptions, a NextToken is also returned. Use the NextToken parameter in a
- new ListSubscriptions call to get further results.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.AddPermission(Amazon.SimpleNotificationService.Model.AddPermissionRequest)">
- <summary>
- Add Permission
- </summary>
- <param name="request">Add Permission request</param>
- <returns>Add Permission Response from the service</returns>
- <remarks>
- The AddPermission action adds a statement to a topic's access control policy, granting access for the specified AWS accounts to the specified actions.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.CreateTopic(Amazon.SimpleNotificationService.Model.CreateTopicRequest)">
- <summary>
- Create Topic
- </summary>
- <param name="request">Create Topic request</param>
- <returns>Create Topic Response from the service</returns>
- <remarks>
- The CreateTopic action creates a topic to which notifications can be published. Users can create
- at most 25 topics. This action is idempotent, so if the requester
- already owns a topic with the specified name, that topic's ARN will be
- returned without creating a new topic.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.ListTopics(Amazon.SimpleNotificationService.Model.ListTopicsRequest)">
- <summary>
- List Topics
- </summary>
- <param name="request">List Topics request</param>
- <returns>List Topics Response from the service</returns>
- <remarks>
- The ListTopics action returns a list of the requester's topics. Each call returns a limited list of topics. If
- there are more topics, a NextToken is also returned. Use the NextToken parameter in a new ListTopics call to get
- further results.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.Unsubscribe(Amazon.SimpleNotificationService.Model.UnsubscribeRequest)">
- <summary>
- Unsubscribe
- </summary>
- <param name="request">Unsubscribe request</param>
- <returns>Unsubscribe Response from the service</returns>
- <remarks>
- The Unsubscribe action deletes a subscription. If the subscription requires authentication for
- deletion, only the owner of the subscription or the its topic's owner
- can unsubscribe, and an AWS signature is required. If the
- Unsubscribe call does not require authentication and the requester is not
- the subscription owner, a final cancellation message is delivered to the
- endpoint, so that the endpoint owner can easily resubscribe to the topic if
- the Unsubscribe request was unintended.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.ListSubscriptionsByTopic(Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest)">
- <summary>
- List Subscriptions By Topic
- </summary>
- <param name="request">List Subscriptions By Topic request</param>
- <returns>List Subscriptions By Topic Response from the service</returns>
- <remarks>
- The ListSubscriptionsByTopic action returns a list of the subscriptions to a specific topic. Each call returns
- a limited list of subscriptions. If there are more subscriptions, a NextToken is also returned. Use the NextToken
- parameter in a new ListSubscriptionsByTopic call to get further results.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationService.Publish(Amazon.SimpleNotificationService.Model.PublishRequest)">
- <summary>
- Publish
- </summary>
- <param name="request">Publish request</param>
- <returns>Publish Response from the service</returns>
- <remarks>
- The Publish action sends a message to all of a topic's subscribed endpoints. When a
- messageId is returned, the message has been saved and Amazon SNS will attempt to deliver it
- to the topic's subscribers shortly. The format of the outgoing message to each
- subscribed endpoint depends on the notification protocol selected.
- </remarks>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.SendEmailRequestMarshaller">
- <summary>
- Send Email Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.ListDomainsResult">
- <summary>
- Lists all domains associated with the account. It returns domain names up to the limit set by MaxNumberOfDomains.
- A NextToken is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times
- with the NextToken returns up to MaxNumberOfDomains more domain names each time.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResult.WithDomainName(System.String[])">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="list">Domain name that matches the expression.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResult.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">An opaque token indicating that there are more than MaxNumberOfDomains domains still available.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsResult.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ListDomainsResult.DomainName">
- <summary>
- Gets and sets the DomainName property.
- Domain name that matches the expression.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ListDomainsResult.NextToken">
- <summary>
- Gets and sets the NextToken property.
- An opaque token indicating that there are more than MaxNumberOfDomains domains still available.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DeleteDomainRequest">
- <summary>
- Deletes a domain. Any items (and their attributes) in the domain are deleted, as well. The
- operation might take 10 or more seconds to complete. Running DeleteDomain on a domain that
- does not exist or running the function multiple times using the same domain name will not result in an error response.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteDomainRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteDomainRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteDomainRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain to delete.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.Owner">
- <summary>
- Represents an Owner of an S3 Bucket.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.Owner.WithId(System.String)">
- <summary>
- Sets the Id property.
- </summary>
- <param name="id">Id property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.Owner.WithDisplayName(System.String)">
- <summary>
- Sets the DisplayName property.
- </summary>
- <param name="displayName">DisplayName property</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.S3.Model.Owner.Id">
- <summary>
- Gets and sets the Id property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.Owner.DisplayName">
- <summary>
- Gets and sets the DisplayName property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ComparatorGrant">
- <summary>
- IComparable class that is used when sorting a lit of grants.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.ComparatorGrant.Compare(Amazon.S3.Model.S3Grant,Amazon.S3.Model.S3Grant)">
- <summary>
- Compares the string representation of the grants
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Grant">
- <summary>
- Represents a grant for an bucket/object ACL. A grant contains
- a S3Grantee and a S3Permission for that S3Grantee.
-
- For more information on Grants/ACLs refer:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/index.html?RESTAuthentication.html"/>
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Grant.ToString">
- <summary>
- Creates a string representation of a Grant.
- </summary>
- <returns>The string representation of the Grant.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grant.WithGrantee(Amazon.S3.Model.S3Grantee)">
- <summary>
- Sets the S3Grantee property.
- </summary>
- <param name="grantee">S3Grantee property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grant.IsSetGrantee">
- <summary>
- Checks if S3Grantee property is set.
- </summary>
- <returns>true if S3Grantee property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grant.WithPermission(Amazon.S3.Model.S3Permission)">
- <summary>
- Sets the S3Permission property.
- </summary>
- <param name="permission">S3Permission property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grant.IsSetPermission">
- <summary>
- Checks if S3Permission property is set.
- </summary>
- <returns>true if S3Permission property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3Grant.Grantee">
- <summary>
- Gets and sets the Grantee property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Grant.Permission">
- <summary>
- Gets and sets the Permission property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PartStreamWrapper">
- <summary>
- This class is used to wrap a stream for a particular segment of a stream. It
- makes that segment look like you are reading from beginning to end of the stream.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ListMultipartUploadsRequest">
- <summary>
- The ListMultipartUploadsRequest contains the parameters used for the ListMultipartUploads method.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.WithMaxUploads(System.Int32)">
- <summary>
- Sets the MaxUploads property for this request.
- </summary>
- <param name="maxUploads">The value that MaxUploads is set to</param>
- <returns>the request with the MaxUploads set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.IsSetMaxUploads">
- <summary>
- Checks if MaxUploads property is set.
- </summary>
- <returns>true if MaxUploads property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.WithKeyMarker(System.String)">
- <summary>
- Sets the KeyMarker property for this request.
- </summary>
- <param name="keyMarker">The value that KeyMarker is set to</param>
- <returns>the request with the KeyMarker set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.IsSetKeyMarker">
- <summary>
- Checks if KeyMarker property is set.
- </summary>
- <returns>true if KeyMarker property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.WithUploadIdMarker(System.String)">
- <summary>
- Sets the UploadIdMarker property for this request.
- </summary>
- <param name="uploadIdMarker">The value that UploadIdMarker is set to</param>
- <returns>the request with the UploadIdMarker set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.IsSetUploadIdMarker">
- <summary>
- Checks if UploadIdMarker property is set.
- </summary>
- <returns>true if UploadIdMarker property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.WithPrefix(System.String)">
- <summary>
- Sets the Prefix property for this request.
- All keys matched will have this prefix.
- </summary>
- <param name="prefix">The value that Prefix is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.IsSetPrefix">
- <summary>
- Checks if Prefix property is set
- </summary>
- <returns>true if Prefix property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.WithDelimiter(System.String)">
- <summary>
- Sets the Delimiter property for this request.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- These rolled-up keys are not returned elsewhere in the response.
- </summary>
- <param name="delimiter">the value that Delimiter is set to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListMultipartUploadsRequest.IsSetDelimiter">
- <summary>
- Checks if Delimiter property is set
- </summary>
- <returns>true if Delimiter property is set</returns>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsRequest.MaxUploads">
- <summary>
- Gets and sets the MaxUploads property.
- <para>
- Sets the maximum number of multipart uploads to return in the response
- body
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsRequest.KeyMarker">
- <summary>
- Gets and sets the KeyMarker property.
- <para>
- Together with UploadIdMarker, specifies the multipart upload after
- which listing should begin.
- </para>
- <para>
- If UploadIdMarker is not specified, only the keys lexicographically
- greater than the specified key-marker will be included in the list.
- </para>
- <para>
- If UploadIdMarker is specified, any multipart uploads for a key
- equal to the key-marker may also be included, provided those multipart
- uploads have upload IDs lexicographically greater than the specified
- UploadIdMarker.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsRequest.UploadIdMarker">
- <summary>
- Gets and sets the UploadIdMarker property.
- <para>
- Together with KeyMarker, specifies the multipart upload after which
- listing should begin. If KeyMarker is not specified, the
- UploadIdMarker parameter is ignored. Otherwise, any multipart
- uploads for a key equal to the KeyMarker may be included in the list
- only if they have an upload ID lexicographically greater than the specified
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsRequest.Prefix">
- <summary>
- Gets and sets the Prefix property.
- All keys matched will have this prefix.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListMultipartUploadsRequest.Delimiter">
- <summary>
- Gets and sets the Delimiter property.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- </summary>
- <remarks>
- These rolled-up keys are not returned elsewhere in the response.
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.Dispose(System.Boolean)">
- <summary>
- Implements the Dispose pattern for the AmazonS3Client
- </summary>
- <param name="fDisposing">Whether this object is being disposed via a call to Dispose
- or garbage collected.</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.Finalize">
- <summary>
- The destructor for the client class.
- </summary>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonS3Client with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.#ctor(System.String,System.String,Amazon.S3.AmazonS3Config)">
- <summary>
- Constructs AmazonS3Client with AWS Access Key ID, AWS Secret Key and an
- AmazonS3 Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="config">The S3 Configuration Object</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.#ctor(System.String,System.Security.SecureString,Amazon.S3.AmazonS3Config)">
- <summary>
- Constructs an AmazonS3Client with AWS Access Key ID, AWS Secret Key and an
- Amazon S3 Configuration object
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key as a SecureString</param>
- <param name="config">The S3 Configuration Object</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetPreSignedURL(Amazon.S3.Model.GetPreSignedUrlRequest)">
- <summary>
- The GetPreSignedURL operations creates a signed http request.
- Query string authentication is useful for giving HTTP or browser
- access to resources that would normally require authentication.
- When using query string authentication, you create a query,
- specify an expiration time for the query, sign it with your
- signature, place the data in an HTTP request, and distribute
- the request to a user or embed the request in a web page.
- A PreSigned URL can be generated for GET, PUT and HEAD
- operations on your bucket, keys, and versions.
- </summary>
- <param name="request">The GetPreSignedUrlRequest that defines the
- parameters of the operation.</param>
- <returns>A string that is the signed http request.</returns>
- <exception cref="T:System.ArgumentException" />
- <exception cref="T:System.ArgumentNullException" />
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ListBuckets">
- <summary>
- The ListBuckets operation returns a list of all of the buckets
- owned by the authenticated sender of the request.
- </summary>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListBucketsResponse with the response from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginListBuckets(System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListBuckets operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListBuckets.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginListBuckets(Amazon.S3.Model.ListBucketsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListBuckets operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The ListBucketsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListBuckets.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndListBuckets(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListBuckets operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListBuckets.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListBucketsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ListBuckets(Amazon.S3.Model.ListBucketsRequest)">
- <summary>
- The ListBuckets operation returns a list of all of the buckets
- owned by the authenticated sender of the request.
- </summary>
- <param name="request">The ListBucketsRequest that defines the parameters
- of this operation</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListBucketsResponse with the response from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetBucketLocation(Amazon.S3.Model.GetBucketLocationRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketLocation operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The GetBucketLocationRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketLocation.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetBucketLocation(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketLocation operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketLocation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLocationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetBucketLocation(Amazon.S3.Model.GetBucketLocationRequest)">
- <summary>
- The GetBucketLocation operation takes in a bucket's name and lists the location
- of the bucket. This information can be used to determine the bucket's geographical
- location.
- To determine the location of a bucket, you must be the bucket owner.
- </summary>
- <param name="request">The GetBucketLocationRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLocationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetBucketLogging(Amazon.S3.Model.GetBucketLoggingRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketLogging operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The GetBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketLogging.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetBucketLogging(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketLogging operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketLogging.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetBucketLogging(Amazon.S3.Model.GetBucketLoggingRequest)">
- <summary>
- The GetBucketLogging operating gets the logging status for the bucket specified.
- For more information about S3Bucket Logging
- see <see href="http://docs.amazonwebservices.com/AmazonS3/latest/ServerLogs.html" />
- </summary>
- <param name="request">The GetBucketLoggingRequest that defines
- the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginEnableBucketLogging(Amazon.S3.Model.EnableBucketLoggingRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the EnableBucketLogging operation.
- <seealso cref="M:Amazon.S3.AmazonS3.EnableBucketLogging"/>
- </summary>
- <param name="request">The EnableBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndEnableBucketLogging.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndEnableBucketLogging(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the EnableBucketLogging operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginEnableBucketLogging.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a EnableBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EnableBucketLogging(Amazon.S3.Model.EnableBucketLoggingRequest)">
- <summary>
- The EnableBucketLogging operation will turn on bucket logging for the bucket
- specified in the request.
-
- An Amazon S3 bucket can be configured to create access log records for the
- requests made against it. An access log record contains details about the
- request such as the request type, the resource with which the request worked,
- and the time and date that the request was processed. Server access logs are
- useful for many applications, because they give bucket owners insight into
- the nature of requests made by clients not under their control.
- </summary>
- <param name="request">The EnableBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a EnableBucketLoggingResponse from S3.</returns>
- <remarks>
- Changes to the logging status for a bucket are visible in the configuration API immediately,
- but they take time to actually affect the delivery of log files. For example, if you enable
- logging for a bucket, some requests made in the following hour might be logged, while others
- might not. Or, if you change the target bucket for logging from bucket A to bucket B, some
- logs for the next hour might continue to be delivered to bucket A, while others might be delivered
- to the new target bucket B. In all cases, the new settings will eventually take effect without any
- further action on your part.
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginDisableBucketLogging(Amazon.S3.Model.DisableBucketLoggingRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DisableBucketLogging operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DisableBucketLogging"/>
- </summary>
- <param name="request">The DisableBucketLoggingRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDisableBucketLogging.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndDisableBucketLogging(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DisableBucketLogging operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDisableBucketLogging.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DisableBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.DisableBucketLogging(Amazon.S3.Model.DisableBucketLoggingRequest)">
- <summary>
- The DisableBucketLogging will turn off bucket logging for the bucket specified
- in the request.
-
- An Amazon S3 bucket can be configured to create access log records for the
- requests made against it. An access log record contains details about the
- request such as the request type, the resource with which the request worked,
- and the time and date that the request was processed. Server access logs are
- useful for many applications, because they give bucket owners insight into
- the nature of requests made by clients not under their control.
- </summary>
- <param name="request">
- The DisableBucketLoggingRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DisableBucketLoggingResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetBucketVersioning(Amazon.S3.Model.GetBucketVersioningRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketVersioning operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetBucketVersioning"/>
- </summary>
- <param name="request">The GetBucketVersioningRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketVersioning.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetBucketVersioning(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketVersioning operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketVersioning.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketVersioningResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetBucketVersioning(Amazon.S3.Model.GetBucketVersioningRequest)">
- <summary>
- The GetBucketVersioning operation takes in a bucket's name and get the versioning
- status of the bucket.
- </summary>
- <param name="request">The GetBucketVersioningRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketVersioningResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3BucketVersioningConfig"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginSetBucketVersioning(Amazon.S3.Model.SetBucketVersioningRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the SetBucketVersioning operation.
- <seealso cref="M:Amazon.S3.AmazonS3.SetBucketVersioning"/>
- </summary>
- <param name="request">The SetBucketVersioningRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSetBucketVersioning.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndSetBucketVersioning(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the SetBucketVersioning operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSetBucketVersioning.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetBucketVersioningResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.SetBucketVersioning(Amazon.S3.Model.SetBucketVersioningRequest)">
- <summary>
- The SetBucketVersioning operation takes in a bucket's name and the versioning
- status you want to set on the bucket.
- <para>Valid values for the Versioning Status are Enabled and Suspended.
- Once Versioning has been "Enabled" on a bucket, it can be "Suspended"
- but cannot be switched "Off".</para>
- </summary>
- <param name="request">The SetBucketVersioningRequest that defines the parameters of the operation.</param>
- <exception cref="T:System.ArgumentException">
- If SetBucketVersioningRequest.VersioningStatus has the value S3BucketVersioningStatus.Off
- </exception>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetBucketVersioningResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3BucketVersioningConfig"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetBucketPolicy(Amazon.S3.Model.GetBucketPolicyRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketPolicy operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetBucketPolicy"/>
- </summary>
- <param name="request">The GetBucketPolicyRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketPolicy.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetBucketPolicy(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketPolicy operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketPolicy.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketPolicyResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetBucketPolicy(Amazon.S3.Model.GetBucketPolicyRequest)">
- <summary>
- <para>
- Retrieves the policy for the specified bucket. Only the owner of the
- bucket can retrieve the policy. If no policy has been set for the bucket,
- then an error will be thrown.
- </para>
- <para>
- Bucket policies provide access control management at the bucket level for
- both the bucket resource and contained object resources. Only one policy
- can be specified per-bucket.
- </para>
- <para>
- For more information on forming bucket polices,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/"/>
- </para>
- </summary>
- <param name="request">The GetBucketPolicyRequest that defines the parameters of the operation.</param>
- <returns>Returns a GetBucketPolicyResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginPutBucketPolicy(Amazon.S3.Model.PutBucketPolicyRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutBucketPolicy operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutBucketPolicy"/>
- </summary>
- <param name="request">The PutBucketPolicyRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutBucketPolicy.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndPutBucketPolicy(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutBucketPolicy operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutBucketPolicy.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketPolicyResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.PutBucketPolicy(Amazon.S3.Model.PutBucketPolicyRequest)">
- <summary>
- <para>
- Sets the policy associated with the specified bucket. Only the owner of
- the bucket can set a bucket policy. If a policy already exists for the
- specified bucket, the new policy will replace the existing policy.
- </para>
- <para>
- Bucket policies provide access control management at the bucket level for
- both the bucket resource and contained object resources. Only one policy
- may be specified per-bucket.
- </para>
- <para>
- For more information on forming bucket polices,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/"/>
- </para>
- </summary>
- <param name="request">The PutBucketPolicyRequest that defines the parameters of the operation.</param>
- <returns>Returns a PutBucketPolicyResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginDeleteBucketPolicy(Amazon.S3.Model.DeleteBucketPolicyRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteBucketPolicy operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteBucketPolicy"/>
- </summary>
- <param name="request">The DeleteBucketPolicyRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteBucketPolicy.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndDeleteBucketPolicy(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteBucketPolicy operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteBucketPolicy.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketPolicyResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.DeleteBucketPolicy(Amazon.S3.Model.DeleteBucketPolicyRequest)">
- <summary>
- <para>
- Deletes the policy associated with the specified bucket. Only the owner
- of the bucket can delete the bucket policy.
- </para>
- <para>
- If you delete a policy that does not exist, Amazon S3 will return a
- success (not an error message).
- </para>
- <para>
- Bucket policies provide access control management at the bucket level for
- both the bucket resource and contained object resources. Only one policy
- may be specified per-bucket.
- </para>
- <para>
- For more information on forming bucket polices,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/"/>
- </para>
- </summary>
- <param name="request">The DeleteBucketPolicyRequest that defines the parameters of the operation.</param>
- <returns>Returns a DeleteBucketPolicyResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginSetNotificationConfiguration(Amazon.S3.Model.SetNotificationConfigurationRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the SetNotificationConfiguration operation.
- <seealso cref="M:Amazon.S3.AmazonS3.SetNotificationConfiguration"/>
- </summary>
- <param name="request">The SetNotificationConfigurationRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSetNotificationConfiguration.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndSetNotificationConfiguration(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the SetNotificationConfiguration operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSetNotificationConfiguration.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetNotificationConfigurationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.SetNotificationConfiguration(Amazon.S3.Model.SetNotificationConfigurationRequest)">
- <summary>
- <para>
- The notification configuration of a bucket provides near realtime notifications
- of events the user is interested in, using SNS as the delivery service.
- Notification is turned on by enabling configuration on a bucket, specifying
- the events and the SNS topic. This configuration can only be turned
- on by the bucket owner. If a notification configuration already exists for the
- specified bucket, the new notification configuration will replace the existing
- notification configuration. To remove the notification configuration pass in
- an empty request. Currently, buckets may only have a single event and topic
- configuration.
- </para>
- <para>
- S3 is eventually consistent. It may take time for the notification status
- of a bucket to be propagated throughout the system.
- </para>
- </summary>
- <param name="request">The SetNotificationConfigurationRequest that defines the parameters of the operation.</param>
- <returns>Returns a SetNotificationConfigurationResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetNotificationConfiguration(Amazon.S3.Model.GetNotificationConfigurationRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetNotificationConfiguration operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetNotificationConfiguration"/>
- </summary>
- <param name="request">The GetNotificationConfigurationRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetNotificationConfiguration.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetNotificationConfiguration(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetNotificationConfiguration operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetNotificationConfiguration.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetNotificationConfigurationResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetNotificationConfiguration(Amazon.S3.Model.GetNotificationConfigurationRequest)">
- <summary>
- <para>
- Retrieves the notification configuration for the specified bucket. Only the owner of the
- bucket can retrieve the notification configuration.
- </para>
- </summary>
- <param name="request">The GetNotificationConfigurationRequest that defines the parameters of the operation.</param>
- <returns>Returns a GetNotificationConfigurationResponse from S3.</returns>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginListObjects(Amazon.S3.Model.ListObjectsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListObjects operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListObjects"/>
- </summary>
- <param name="request">The ListObjectsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListObjects.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndListObjects(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListObjects operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListObjects.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListObjectsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ListObjects(Amazon.S3.Model.ListObjectsRequest)">
- <summary>
- The ListObjects operation lists the objects/keys in a bucket ordered
- lexicographically (from a-Z). The list can be filtered via the Marker
- property of the ListObjectsRequest.
- In order to List Objects, you must have READ access to the bucket.
- </summary>
- <param name="request">
- The ListObjectsRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListObjectsResponse from S3 with a list of S3Objects,
- headers and request parameters used to filter the list.</returns>
- <remarks>
- Since buckets can contain a virtually unlimited number of objects, the complete
- results of a list query can be extremely large. To manage large result sets,
- Amazon S3 uses pagination to split them into multiple responses. Callers should
- always check the <see cref="P:Amazon.S3.Model.ListObjectsResponse.IsTruncated" />
- to see if the returned listing
- is complete, or if callers need to make additional calls to get more results.
- The marker parameter allows callers to specify where to start the object listing.
- List performance is not substantially affected by the total number of keys in your
- bucket, nor by the presence or absence of any additional query parameters.
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginListVersions(Amazon.S3.Model.ListVersionsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListVersions operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListVersions"/>
- </summary>
- <param name="request">The ListVersionsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListVersions.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndListVersions(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListVersions operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListVersions.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListVersionsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ListVersions(Amazon.S3.Model.ListVersionsRequest)">
- <summary>
- The ListVersions operation returns a list of object versions in the bucket
- specified ordered first by key and then by version. Keys are sorted lexicographically
- (i.e. alphabetically from a-Z); versions are sorted from most to least recent.
- Both versions with data and delete markers are included in the results.
- <para>
- In order to List Versions, you must have READ access to the bucket.
- When the list is not filtered by a specific key, only the metadata
- associated with the latest version of objects in the bucket is returned.
- The use of KeyMarker and VersionIdMarker allow you to filter results.</para>
- </summary>
- <param name="request">
- The ListVersionsRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListVersionsResponse from S3 that contains a list of
- versions along with metadata and the original request parameters.</returns>
- <remarks>
- Since buckets can contain a virtually unlimited number of objects, the complete
- results of a list query can be extremely large. To manage large result sets,
- Amazon S3 uses pagination to split them into multiple responses. Callers should
- always check the <see cref="P:Amazon.S3.Model.ListVersionsResonse.IsTruncated" />
- to see if the returned listing
- is complete, or if callers need to make additional calls to get more results.
- The KeyMarker and VersionIdMarker parameters of the ListVersionsRequest object
- allow callers to specify where to start the version listing. In order to enable
- versioning on a bucket, please refer to the
- <see cref="M:Amazon.S3.AmazonS3Client.SetBucketVersioning">SetBucketVersioning</see>
- operation's details.
- <br />List performance is not substantially affected by the total number of keys in your
- bucket, nor by the presence or absence of any additional query parameters.
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetACL(Amazon.S3.Model.GetACLRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetACL operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetACL"/>
- </summary>
- <param name="request">The GetACLRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetACL.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetACL(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetACL operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetACL.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetACLResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetACL(Amazon.S3.Model.GetACLRequest)">
- <summary>
- The GetACL operation gets the S3AccessControlList for a given bucket or object.
- Each bucket and object in Amazon S3 has an ACL that defines its access control
- policy, which is a list of grants. A grant consists of one grantee and one permission.
- ACLs only grant permissions; they do not deny them.
- </summary>
- <param name="request">
- The GetACLRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetACLResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3AccessControlList"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginSetACL(Amazon.S3.Model.SetACLRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the SetACL operation.
- <seealso cref="M:Amazon.S3.AmazonS3.SetACL"/>
- </summary>
- <param name="request">The SetACLRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndSetACL.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndSetACL(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the SetACL operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginSetACL.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetACLResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.SetACL(Amazon.S3.Model.SetACLRequest)">
- <summary>
- The SetACL operation sets the S3AccessControlList for a given bucket or object.
- Each bucket and object in Amazon S3 has an ACL that defines its access control
- policy, which is a list of grants. A grant consists of one grantee and one permission.
- ACLs only grant permissions; they do not deny them.
- </summary>
- <remarks>
- Often used ACLs are defined in the S3CannedACL enumeration.
- </remarks>
- <param name="request">
- The SetACLRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a SetACLResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3AccessControlList"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginPutBucket(Amazon.S3.Model.PutBucketRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutBucket operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutBucket"/>
- </summary>
- <param name="request">The PutBucketRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutBucket.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndPutBucket(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutBucket operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutBucket.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.PutBucket(Amazon.S3.Model.PutBucketRequest)">
- <summary>
- The PutBucket operation creates a new S3 Bucket.
- Depending on your latency and legal requirements, you can specify a location
- constraint that will affect where your data physically resides.
- </summary>
- <param name="request">
- The PutBucketRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketResponse from S3.</returns>
- <remarks>
- Every object stored in Amazon S3 is contained in a bucket. Buckets
- partition the namespace of objects stored in Amazon S3 at the top level.
- Within a bucket, you can use any names for your objects, but bucket names
- must be unique across all of Amazon S3.
- <para>
- Buckets are similar to Internet domain names. Just as Amazon is the only owner
- of the domain name Amazon.com, only one person or organization can own a bucket
- within Amazon S3. The similarities between buckets and domain names is not a
- coincidence - there is a direct mapping between Amazon S3 buckets and subdomains
- of s3.amazonaws.com. Objects stored in Amazon S3 are addressable using the REST API
- under the domain bucketname.s3.amazonaws.com. For example, the object homepage.html
- stored in the Amazon S3 bucket mybucket can be addressed as
- http://mybucket.s3.amazonaws.com/homepage.html.</para>
- To conform with DNS requirements, the following constraints apply:
- <list type="bullet">
- <item>Bucket names should not contain underscores (_)</item>
- <item>Bucket names should be between 3 and 63 characters long</item>
- <item>Bucket names should not end with a dash</item>
- <item>Bucket names cannot contain two, adjacent periods</item>
- <item>Bucket names cannot contain dashes next to periods
- (e.g., "my-.bucket.com" and "my.-bucket" are invalid)</item>
- <item>Bucket names cannot contain uppercase characters</item>
- </list>
- There is no limit to the number of objects that can be stored in a bucket and no
- variation in performance when using many buckets or just a few. You can store all
- of your objects in a single bucket or organize them across several buckets.
- </remarks>
- <seealso cref="T:Amazon.S3.Model.S3Region"/>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginDeleteBucket(Amazon.S3.Model.DeleteBucketRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteBucket operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteBucket"/>
- </summary>
- <param name="request">The DeleteBucketRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteBucket.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndDeleteBucket(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteBucket operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteBucket.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.DeleteBucket(Amazon.S3.Model.DeleteBucketRequest)">
- <summary>
- The DeleteBucket operation deletes the bucket named in the request.
- All objects in the bucket must be deleted before the bucket itself can be deleted.
- Only the owner of a bucket can delete it, regardless of the bucket's access control policy.
- </summary>
- <param name="request">
- The DeleteBucketRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetObject(Amazon.S3.Model.GetObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetObject"/>
- </summary>
- <param name="request">The GetObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetObject(Amazon.S3.Model.GetObjectRequest)">
- <summary>
- The GetObject operation fetches the most recent version of an S3 object
- from the specified S3 bucket. You must have READ access to the object.
- If READ access is granted to an anonymous user, an object can be retrieved
- without an authorization header. Providing a version-id for the object will
- fetch the specific version from S3 instead of the most recent one.
- </summary>
- <param name="request">
- The GetObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectResponse from S3.</returns>
- <remarks>
- Please wrap the response you get from calling GetObject in a using clause.
- This ensures that all underlying IO resources allocated for the response
- are disposed once the response has been processed. This is one way to
- call GetObject:
- <code>
- using (GetObjectResponse response = s3Client.GetObject(request))
- {
- ... Process the response:
- Get the Stream, get the content-length, write contents to disk, etc
- }
- </code>
- To see what resources are cleaned up at the end of the using block, please
- see <see cref="M:Amazon.S3.Model.S3Response.Dispose"/>
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetObjectMetadata(Amazon.S3.Model.GetObjectMetadataRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetObjectMetadata operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetObjectMetadata"/>
- </summary>
- <param name="request">The GetObjectMetadataRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetObjectMetadata.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetObjectMetadata(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetObjectMetadata operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetObjectMetadata.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectMetadataResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetObjectMetadata(Amazon.S3.Model.GetObjectMetadataRequest)">
- <summary>
- The GetObjectMetadata operation is used to retrieve information about a specific object
- or object size, without actually fetching the object itself. This is useful if you're
- only interested in the object metadata, and don't want to waste bandwidth on the object data.
- The response is identical to the GetObject response, except that there is no response body.
- </summary>
- <param name="request">
- The GetObjectMetadataRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetObjectMetadataResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginPutObject(Amazon.S3.Model.PutObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutObject"/>
- </summary>
- <param name="request">The PutObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndPutObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.PutObject(Amazon.S3.Model.PutObjectRequest)">
- <summary>
- The PutObject operation adds an object to an S3 Bucket.
- The response indicates that the object has been successfully stored.
- Amazon S3 never stores partial objects: if you receive a successful
- response, then you can be confident that the entire object was stored.
-
- To ensure data is not corrupted over the network, use the Content-MD5
- header. When you use the Content-MD5 header, Amazon S3 checks the object
- against the provided MD5 value. If they do not match, Amazon S3 returns an error.
- Additionally, you can calculate the MD5 while putting an object to
- Amazon S3 and compare the returned Etag to the calculated MD5 value.
-
- If an object already exists in a bucket, the new object will overwrite
- it because Amazon S3 stores the last write request. However, Amazon S3
- is a distributed system. If Amazon S3 receives multiple write requests
- for the same object nearly simultaneously, all of the objects might be
- stored, even though only one wins in the end. Amazon S3 does not provide
- object locking; if you need this, make sure to build it into your application
- layer.
-
- If you specify a location constraint when creating a bucket, all objects
- added to the bucket are stored in the bucket's location.
-
- You must have WRITE access to the bucket to add an object.
- </summary>
- <param name="request">
- The PutObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentException"></exception>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <exception cref="T:System.IO.FileNotFoundException"></exception>
- <returns>Returns a PutObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginDeleteObject(Amazon.S3.Model.DeleteObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteObject"/>
- </summary>
- <param name="request">The DeleteObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndDeleteObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.DeleteObject(Amazon.S3.Model.DeleteObjectRequest)">
- <summary>
- The DeleteObject operation removes the specified object from Amazon S3.
- Once deleted, there is no method to restore or undelete an object.
-
- If you delete an object that does not exist, Amazon S3 will return a
- success (not an error message).
- </summary>
- <param name="request">
- The DeleteObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginCopyObject(Amazon.S3.Model.CopyObjectRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CopyObject operation.
- <seealso cref="M:Amazon.S3.AmazonS3.CopyObject"/>
- </summary>
- <param name="request">The CopyObjectRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCopyObject.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndCopyObject(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CopyObject operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCopyObject.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CopyObjectResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.CopyObject(Amazon.S3.Model.CopyObjectRequest)">
- <summary>
- The copy operation creates a copy of an object that is already stored in Amazon S3.
- When copying an object, you can preserve all metadata (default) or specify new metadata.
- However, the ACL is not preserved and is set to private for the user making the request.
- To override the default ACL setting, specify a new ACL when generating a copy request.
- If versioning has been enabled on the source bucket, and you want to copy a specific
- version of an object, please use
- <see cref="P:Amazon.S3.Model.CopyObjectRequest.SourceVersionId" /> to specify the
- version. By default, the most recent version of an object is copied to the
- destination bucket.
- </summary>
- <param name="request">
- The CopyObjectRequest that defines the parameters of the operation.
- </param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CopyObjectResponse from S3.</returns>
- <seealso cref="T:Amazon.S3.Model.S3AccessControlList"/>
- <remarks>
- If Versioning has been enabled on the target bucket, S3 generates a
- unique version ID for the object being copied. This version ID is different
- from the version ID of the source object. Additionally, S3 returns the version
- ID of the copied object in the x-amz-version-id response header in the response.
- If you do not enable Versioning or suspend it on the target bucket, the version ID
- S3 generates is always the string literal - "null".
- </remarks>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginInitiateMultipartUpload(Amazon.S3.Model.InitiateMultipartUploadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the InitiateMultipartUpload operation.
- <seealso cref="M:Amazon.S3.AmazonS3.InitiateMultipartUpload"/>
- </summary>
- <param name="request">The InitiateMultipartUploadRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndInitiateMultipartUpload.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndInitiateMultipartUpload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the InitiateMultipartUpload operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginInitiateMultipartUpload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a InitiateMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.InitiateMultipartUpload(Amazon.S3.Model.InitiateMultipartUploadRequest)">
- <summary>
- This method initiates a multipart upload and returns an InitiateMultipartUploadResponse
- which contains an upload ID. This upload ID associates all the
- parts in the specific upload. You specify this upload ID in each of
- your subsequent Upload Part requests. You also include
- this upload ID in the final request to either complete, or abort
- the multipart upload request.
- </summary>
- <param name="request">
- The CopyObjectRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a InitiateMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginUploadPart(Amazon.S3.Model.UploadPartRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the UploadPart operation.
- <seealso cref="M:Amazon.S3.AmazonS3.UploadPart"/>
- </summary>
- <param name="request">The UploadPartRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUploadPart.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndUploadPart(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the UploadPart operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginUploadPart.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a UploadPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.UploadPart(Amazon.S3.Model.UploadPartRequest)">
- <summary>
- This method uploads a part in a multipart upload. You must initiate a
- multipart upload before you can upload any part.
- <para>
- Your UploadPart request must include an upload ID and a part number.
- The upload ID is the ID returned by Amazon S3 in response to your
- Initiate Multipart Upload request. For more information on initiating a
- multipart upload. Part number can be any number between 1 and
- 10,000, inclusive. A part number uniquely identifies a part and also
- defines its position within the object being uploaded. If you
- upload a new part using the same part number as an existing part,
- that part is overwritten.
- </para>
- <para>
- To ensure data is not corrupted traversing the network, specify the
- Content-MD5 header in the Upload Part request. Amazon S3 checks
- the part data against the provided MD5 value. If they do not match,
- Amazon S3 returns an error.
- </para>
- <para>
- When you upload a part, the UploadPartResponse response contains an ETag property.
- You should record this ETag property value and the part
- number. After uploading all parts, you must send a CompleteMultipartUpload
- request. At that time Amazon S3 constructs a complete object by
- concatenating all the parts you uploaded, in ascending order based on
- the part numbers. The CompleteMultipartUpload request requires you to
- send all the part numbers and the corresponding ETag values.
- </para>
- </summary>
- <param name="request">
- The UploadPartRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a UploadPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginCopyPart(Amazon.S3.Model.CopyPartRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CopyPart operation.
- </summary>
- <param name="request">The CopyPartRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCopyPart.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndCopyPart(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CopyPart operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCopyPart.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CopyPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.CopyPart(Amazon.S3.Model.CopyPartRequest)">
- <summary>
- This method creates a part in a multipart upload from an existing Amazon S3 Object.
- You must initiate a multipart upload before you can copy a part.
- <para>
- Your CopyPart request must include an upload ID and a part number.
- The upload ID is the ID returned by Amazon S3 in response to your
- Initiate Multipart Upload request. Part number can be any number between 1 and
- 10,000, inclusive. A part number uniquely identifies a part and also
- defines its position within the object being uploaded. If you
- copy a part using the same part number as an existing part, that part is overwritten.
- </para>
- <para>
- When you copy a part, the CopyPartResponse response contains an ETag property.
- You should record this ETag property value and the part
- number. After uploading all parts, you must send a CompleteMultipartUpload
- request. At that time Amazon S3 constructs a complete object by
- concatenating all the parts you uploaded, in ascending order based on
- the part numbers. The CompleteMultipartUpload request requires you to
- send all the part numbers and the corresponding ETag values.
- </para>
- </summary>
- <param name="request">
- The CopyPartRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a CopyPartResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginListParts(Amazon.S3.Model.ListPartsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListParts operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListParts"/>
- </summary>
- <param name="request">The ListPartsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListParts.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndListParts(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListParts operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListParts.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListPartsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ListParts(Amazon.S3.Model.ListPartsRequest)">
- <summary>
- This method lists the parts that have been uploaded
- for a particular multipart upload.
- <para>
- This method must include the upload ID, returned by
- the InitiateMultipartUpload request. This request
- returns a maximum of 1000 uploaded parts by default. You can
- restrict the number of parts returned by specifying the
- MaxParts property on the ListPartsRequest. If your multipart
- upload consists of more parts than allowed in the
- ListParts response, the response returns a IsTruncated
- field with value true, and a NextPartNumberMarker property.
- In subsequent ListParts request you can include the
- PartNumberMarker property and set its value to the
- NextPartNumberMarker property value from the previous response.
- </para>
- </summary>
- <param name="request">
- The ListPartsRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a ListPartsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginAbortMultipartUpload(Amazon.S3.Model.AbortMultipartUploadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the AbortMultipartUpload operation.
- <seealso cref="M:Amazon.S3.AmazonS3.AbortMultipartUpload"/>
- </summary>
- <param name="request">The AbortMultipartUploadRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndAbortMultipartUpload.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndAbortMultipartUpload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the AbortMultipartUpload operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginAbortMultipartUpload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a AbortMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.AbortMultipartUpload(Amazon.S3.Model.AbortMultipartUploadRequest)">
- <summary>
- This method aborts a multipart upload. After a multipart upload is
- aborted, no additional parts can be uploaded using that upload ID.
- The storage consumed by any previously uploaded parts will be freed.
- However, if any part uploads are currently in progress, those part
- uploads may or may not succeed. As a result, it may be necessary to
- abort a given multipart upload multiple times in order to completely free
- all storage consumed by all parts.
- </summary>
- <param name="request">
- The AbortMultipartUploadRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a AbortMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginCompleteMultipartUpload(Amazon.S3.Model.CompleteMultipartUploadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the CompleteMultipartUpload operation.
- <seealso cref="M:Amazon.S3.AmazonS3.CompleteMultipartUpload"/>
- </summary>
- <param name="request">The CompleteMultipartUploadRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndCompleteMultipartUpload.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndCompleteMultipartUpload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the CompleteMultipartUpload operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginCompleteMultipartUpload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a CompleteMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.CompleteMultipartUpload(Amazon.S3.Model.CompleteMultipartUploadRequest)">
- <summary>
- This operation completes a multipart upload by assembling
- previously uploaded parts.
- <para>
- You first upload all parts using the UploadPart method.
- After successfully uploading all relevant parts of an upload,
- you call this operation to complete the upload. Upon receiving
- this request, Amazon S3 concatenates all the parts in ascending
- order by part number to create a new object. In the
- CompleteMultipartUpload request, you must provide the
- parts list. For each part in the list, you provide the
- part number and the ETag header value, returned after that
- part was uploaded.
- </para>
- <para>
- Processing of a CompleteMultipartUpload request may take
- several minutes to complete.
- </para>
- </summary>
- <param name="request">
- The CompleteMultipartUploadRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a CompleteMultipartUploadResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginListMultipartUploads(Amazon.S3.Model.ListMultipartUploadsRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the ListMultipartUploads operation.
- <seealso cref="M:Amazon.S3.AmazonS3.ListMultipartUploads"/>
- </summary>
- <param name="request">The ListMultipartUploadsRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndListMultipartUploads.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndListMultipartUploads(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the ListMultipartUploads operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginListMultipartUploads.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a ListMultipartUploadsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ListMultipartUploads(Amazon.S3.Model.ListMultipartUploadsRequest)">
- <summary>
- This operation lists in-progress multipart uploads. An in-progress
- multipart upload is a multipart upload that has been initiated,
- using the InitiateMultipartUpload request, but has not yet been
- completed or aborted.
- <para>
- This operation returns at most 1,000 multipart uploads in the
- response by default. The number of multipart uploads can be further
- limited using the MaxUploads property on the request parameter. If there are
- additional multipart uploads that satisfy the list criteria, the
- response will contain an IsTruncated property with the value set to true.
- To list the additional multipart uploads use the KeyMarker and
- UploadIdMarker properties on the request parameters.
- </para>
- </summary>
- <param name="request">
- The ListMultipartUploadsRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a ListMultipartUploadsResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginPutBucketWebsite(Amazon.S3.Model.PutBucketWebsiteRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the PutBucketWebsite operation.
- <seealso cref="M:Amazon.S3.AmazonS3.PutBucketWebsite"/>
- </summary>
- <param name="request">The PutBucketWebsiteRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndPutBucketWebsite.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndPutBucketWebsite(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the PutBucketWebsite operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginPutBucketWebsite.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a PutBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.PutBucketWebsite(Amazon.S3.Model.PutBucketWebsiteRequest)">
- <summary>
- This operation enables/configures an S3 Website using the corresponding bucket as the content source.
- The website will have one default domain name associated with it, which is the bucket name.
- If you attempt to configure an S3 website for a bucket whose name is not compatible with DNS,
- Amazon S3 returns an InvalidBucketName error. For more information on bucket names and DNS,
- refer to Bucket Restrictions and Limitations
-
- To visit the S3 bucket as a website a new endpoint is created in the following pattern
- http://&lt;bucketName&gt;.s3-website-&lt;region&gt;.amazonaws.com/. This is a sample url for a bucket
- called example-bucket in the us-east-1 region. http://example-bucket.s3-website-us-east-1.amazonaws.com/
- </summary>
- <param name="request">
- The PutBucketWebsiteRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a PutBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginGetBucketWebsite(Amazon.S3.Model.GetBucketWebsiteRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the GetBucketWebsite operation.
- <seealso cref="M:Amazon.S3.AmazonS3.GetBucketWebsite"/>
- </summary>
- <param name="request">The GetBucketWebsiteRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndGetBucketWebsite.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndGetBucketWebsite(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the GetBucketWebsite operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginGetBucketWebsite.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a GetBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.GetBucketWebsite(Amazon.S3.Model.GetBucketWebsiteRequest)">
- <summary>
- This operation retrieves the website configuration for a bucket. The contents of this response
- is identical to the content submitted by the user during the PutBucketWebsite operation if it has ever been configured.
- </summary>
- <param name="request">
- The GetBucketWebsiteRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a GetBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.BeginDeleteBucketWebsite(Amazon.S3.Model.DeleteBucketWebsiteRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the DeleteBucketWebsite operation.
- <seealso cref="M:Amazon.S3.AmazonS3.DeleteBucketWebsite"/>
- </summary>
- <param name="request">The DeleteBucketWebsiteRequest that defines the parameters of
- the operation.</param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDeleteBucketWebsite.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.EndDeleteBucketWebsite(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the DeleteBucketWebsite operation.
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDeleteBucketWebsite.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>Returns a DeleteBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.DeleteBucketWebsite(Amazon.S3.Model.DeleteBucketWebsiteRequest)">
- <summary>
- This operation removes the website configuration for a bucket.
- </summary>
- <param name="request">
- The DeleteBucketWebsiteRequest that defines the parameters of the operation.
- </param>
- <returns>Returns a DeleteBucketWebsiteResponse from S3.</returns>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertListBuckets(Amazon.S3.Model.ListBucketsRequest)">
- Convert ListBucketsRequest to key/value pairs
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetBucketLocation(Amazon.S3.Model.GetBucketLocationRequest)">
- Convert GetBucketLocationRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetBucketLogging(Amazon.S3.Model.GetBucketLoggingRequest)">
- Convert GetBucketLoggingRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertEnableBucketLogging(Amazon.S3.Model.EnableBucketLoggingRequest)">
- Convert SetBucketLoggingRequest for enable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertDisableBucketLogging(Amazon.S3.Model.DisableBucketLoggingRequest)">
- Convert DisableBucketLoggingRequest for disable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertListObjects(Amazon.S3.Model.ListObjectsRequest)">
- Convert ListObjectsRequest to key/value pairs
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertListVersions(Amazon.S3.Model.ListVersionsRequest)">
- Convert ListVersionsRequest to key/value pairs
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetACL(Amazon.S3.Model.GetACLRequest)">
- Convert GetAclRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertSetACL(Amazon.S3.Model.SetACLRequest)">
- Convert SetACLRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertPutBucket(Amazon.S3.Model.PutBucketRequest)">
- Converts the PutBucketRequest to key/value pairs
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertDeleteBucket(Amazon.S3.Model.DeleteBucketRequest)">
- Convert DeleteBucketRequest to key/value pairs
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetBucketPolicy(Amazon.S3.Model.GetBucketPolicyRequest)">
- Convert GetBucketPolicyRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertPutBucketPolicy(Amazon.S3.Model.PutBucketPolicyRequest)">
- Convert PutBucketPolicyRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertDeleteBucketPolicy(Amazon.S3.Model.DeleteBucketPolicyRequest)">
- Convert DeleteBucketPolicyRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertSetNotificationConfiguration(Amazon.S3.Model.SetNotificationConfigurationRequest)">
- Convert SetNotificationConfigurationRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetNotificationConfiguration(Amazon.S3.Model.GetNotificationConfigurationRequest)">
- Convert GetNotificationConfigurationRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetObject(Amazon.S3.Model.GetObjectRequest)">
- Convert GetObjectRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetObjectMetadata(Amazon.S3.Model.GetObjectMetadataRequest)">
- Convert GetObjectMetadataRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertPutObject(Amazon.S3.Model.PutObjectRequest)">
- Convert PutObjectRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetPreSignedUrl(Amazon.S3.Model.GetPreSignedUrlRequest)">
- Convert GetPreSignedUrlRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertDeleteObject(Amazon.S3.Model.DeleteObjectRequest)">
- Convert DeleteObjectRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertCopyObject(Amazon.S3.Model.CopyObjectRequest)">
- Convert CopyObjectRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertGetBucketVersioning(Amazon.S3.Model.GetBucketVersioningRequest)">
- Convert GetBucketVersioningRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertSetBucketVersioning(Amazon.S3.Model.SetBucketVersioningRequest)">
- Convert SetBucketVersioningRequest to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertInitiateMultipartUpload(Amazon.S3.Model.InitiateMultipartUploadRequest)">
- Convert InitiateMultipartUpload to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertAbortMultipartUpload(Amazon.S3.Model.AbortMultipartUploadRequest)">
- Convert AbortMultipartUploadRequest for enable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertListMultipartUploads(Amazon.S3.Model.ListMultipartUploadsRequest)">
- Convert ListMultipartUploadsRequest for enable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertListParts(Amazon.S3.Model.ListPartsRequest)">
- Convert ListPartsRequest for enable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertCompleteMultipartUpload(Amazon.S3.Model.CompleteMultipartUploadRequest)">
- Convert CompleteMultipartUploadRequest for enable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertUploadPart(Amazon.S3.Model.UploadPartRequest)">
- Convert SetBucketLoggingRequest for enable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.ConvertCopyPart(Amazon.S3.Model.CopyPartRequest)">
- Convert CopyPartRequest for enable logging, to key/value pairs.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.addS3QueryParameters(Amazon.S3.Model.S3Request,System.String)">
- Add authentication related and version parameters
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.addUrlToParameters(Amazon.S3.Model.S3Request,Amazon.S3.AmazonS3Config)">
- Build the Url from the parameters passed in.
- Component parts are:
- - ServiceURL from the Config
- - Bucket
- - Key
- - urlPrefix
- - Query
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.configureWebRequest(Amazon.S3.Model.S3Request,System.Int64)">
- Configure HttpClient with set of defaults as well as configuration
- from AmazonEC2Config instance
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.pauseOnRetry(System.Int32,System.Int32,System.Net.HttpStatusCode,System.String,System.Net.WebHeaderCollection,System.Exception)">
- Exponential sleep on failed request
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setCannedACLHeader(System.Net.WebHeaderCollection,Amazon.S3.Model.S3CannedACL)">
- <summary>
- Sets the header information to use a S3CannedACL.
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="acl">Enum for the type of canned acl wanted</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfMatchHeader(System.Net.WebHeaderCollection,System.String)">
- <summary>
- Sets the If-Match Header in the specified header collection.
-
- Return the object only if its entity tag (ETag) is the same as the one
- specified, otherwise return a 412 (precondition failed).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="eTag">The ETag to match against</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfNoneMatchHeader(System.Net.WebHeaderCollection,System.String)">
- <summary>
- Set the If-None-Match Header in the specified header collection.
-
- Return the object only if its entity tag (ETag) is different from the one
- specified, otherwise return a 304 (not modified).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="eTag">The ETag to match against</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfModifiedSinceHeader(System.Net.WebHeaderCollection,System.DateTime)">
- <summary>
- Sets the If-Modifed-Since Header in the specified header collection.
-
- Return the object only if it has been modified since the specified time,
- otherwise return a 304 (not modified).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="date">DateTime Object representing the date to use</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfUnmodifiedSinceHeader(System.Net.WebHeaderCollection,System.DateTime)">
- <summary>
- Sets the If-Unmodifed-Since Header in the specified header collection.
-
- Return the object only if it has not been modified since the specified time,
- otherwise return a 412 (precondition failed).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="date">DateTime Object representing the date to use</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfMatchCopyHeader(System.Net.WebHeaderCollection,System.String)">
- <summary>
- Sets the If-Match Header for the CopyObject operation in the specified header collection.
-
- Return the object only if its entity tag (ETag) is the same as the one
- specified, otherwise return a 412 (precondition failed).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="eTag">The ETag to match against</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfNoneMatchCopyHeader(System.Net.WebHeaderCollection,System.String)">
- <summary>
- Sets the If-None-Match Header for the CopyObject operation.
-
- Return the object only if its entity tag (ETag) is different from the one
- specified, otherwise return a 304 (not modified).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="eTag">The ETag to match against</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfModifiedSinceCopyHeader(System.Net.WebHeaderCollection,System.DateTime)">
- <summary>
- Sets the If-Modifed-Since Header for the CopyObject operation.
-
- Return the object only if it has been modified since the specified time,
- otherwise return a 304 (not modified).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="date">DateTime Object representing the date to use</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setIfUnmodifiedSinceCopyHeader(System.Net.WebHeaderCollection,System.DateTime)">
- <summary>
- Sets the If-Unmodifed-Since Header for the CopyObject operation.
-
- Return the object only if it has not been modified since the specified time,
- otherwise return a 412 (precondition failed).
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="date">DateTime Object representing the date to use</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setMetadataDirectiveHeader(System.Net.WebHeaderCollection,Amazon.S3.Model.S3MetadataDirective)">
- <summary>
- Valid values: COPY | REPLACE
- Constraints: Values other than COPY or REPLACE result in an immediate 400-based error
- response. You cannot copy an object to itself unless the S3MetadataDirective header is
- specified and its value set to REPLACE.
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="directive">Either COPY or REPLACE</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setCopySourceHeader(System.Net.WebHeaderCollection,System.String,System.String)">
- <summary>
- Sets the x-amz-copy-source header based on the bucket and key passed
- as input.
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="bucket">The source bucket</param>
- <param name="key">The source key</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setCopySourceRangeHeader(System.Net.WebHeaderCollection,System.Int64,System.Int64)">
- <summary>
- Sets the x-amz-copy-source-range header based on the firstByte and lastByte passed
- as input.
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="firstByte">The position of the first byte to copy</param>
- <param name="lastByte">The position of the last byte to copy</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setVersionIdHeader(System.Net.WebHeaderCollection,System.String)">
- <summary>
- Sets the x-amz-version-id header based on the versionId passed as input
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="versionId">The versionId of the desired S3 object</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.setMfaHeader(System.Net.WebHeaderCollection,Amazon.S3.Model.Tuple{System.String,System.String})">
- <summary>
- Sets the x-amz-mfa based on the serial and token passed as input
- </summary>
- <param name="headers">The header collection to add the new header to</param>
- <param name="mfaCodes">The tuple of the authentication device codes</param>
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.buildSigningString(System.Collections.Generic.IDictionary{Amazon.S3.Model.S3QueryParameter,System.String},System.Net.WebHeaderCollection)">
- Creates a string based on the parameters and encrypts it using
- key. Returns the encrypted string.
- </member>
- <member name="M:Amazon.S3.AmazonS3Client.buildCanonicalizedHeaders(System.Net.WebHeaderCollection)">
- Returns a string of all x-amz headers sorted by Ordinal.
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.IntUnmarshaller">
- <summary>
- Unmarshaller for int fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.LongUnmarshaller">
- <summary>
- Unmarshaller for long fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.FloatUnmarshaller">
- <summary>
- Unmarshaller for float fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.DoubleUnmarshaller">
- <summary>
- Unmarshaller for double fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.BoolUnmarshaller">
- <summary>
- Unmarshaller for bool fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.StringUnmarshaller">
- <summary>
- Unmarshaller for string fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.ByteUnmarshaller">
- <summary>
- Unmarshaller for byte fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.DateTimeUnmarshaller">
- <summary>
- Unmarshaller for DateTime fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.MemoryStreamUnmarshaller">
- <summary>
- Unmarshaller for MemoryStream fields
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.ResponseMetadataUnmarshaller">
- <summary>
- Unmarshaller for ResponseMetadata
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RestoreDBInstanceFromDBSnapshotResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RestoreDBInstanceFromDBSnapshot operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.EngineDefaultsUnmarshaller">
- <summary>
- EngineDefaults Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.EndpointUnmarshaller">
- <summary>
- Endpoint Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.EC2SecurityGroupUnmarshaller">
- <summary>
- EC2SecurityGroup Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBParameterGroupRequestMarshaller">
- <summary>
- Delete D B Parameter Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBSnapshotRequestMarshaller">
- <summary>
- Create D B Snapshot Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeResult">
- <summary>
- The results from the RestoreDBInstanceToPointInTime action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeResult.DBInstance">
-
- Gets and sets the RestoreDBInstanceToPointInTimeResult property.
- Contains the result of a successful invocation of the RestoreDBInstanceToPointInTime
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.ReservedDBInstancesOffering">
- <summary>
- <para> This data type is used as a response element in the DescribeReservedDBInstancesOfferings action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithReservedDBInstancesOfferingId(System.String)">
- <summary>
- Sets the ReservedDBInstancesOfferingId property
- </summary>
- <param name="reservedDBInstancesOfferingId">The value to set for the ReservedDBInstancesOfferingId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithDuration(System.Int32)">
- <summary>
- Sets the Duration property
- </summary>
- <param name="duration">The value to set for the Duration property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithFixedPrice(System.Double)">
- <summary>
- Sets the FixedPrice property
- </summary>
- <param name="fixedPrice">The value to set for the FixedPrice property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithUsagePrice(System.Double)">
- <summary>
- Sets the UsagePrice property
- </summary>
- <param name="usagePrice">The value to set for the UsagePrice property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithCurrencyCode(System.String)">
- <summary>
- Sets the CurrencyCode property
- </summary>
- <param name="currencyCode">The value to set for the CurrencyCode property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The value to set for the ProductDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOffering.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.ReservedDBInstancesOfferingId">
- <summary>
- The offering identifier.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.DBInstanceClass">
- <summary>
- The DB instance class for the reserved DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.Duration">
- <summary>
- The duration of the offering in seconds.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.FixedPrice">
- <summary>
- The fixed price charged for this offering.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.UsagePrice">
- <summary>
- The hourly price charged for this offering.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.CurrencyCode">
- <summary>
- The currency code for the reserved DB Instance offering.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.ProductDescription">
- <summary>
- The database engine used by the offering.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstancesOffering.MultiAZ">
- <summary>
- Indicates if the offering applies to Multi-AZ deployments.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingResponse">
- <summary>
- Returns information about the PurchaseReservedDBInstancesOffering response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingResponse.PurchaseReservedDBInstancesOfferingResult">
-
- Gets and sets the PurchaseReservedDBInstancesOfferingResult property.
- Contains the result of a successful invocation of the PurchaseReservedDBInstancesOffering
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest">
- <summary>
- Container for the parameters to the PurchaseReservedDBInstancesOffering operation.
- <para> Purchases a reserved DB Instance offering. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.PurchaseReservedDBInstancesOffering(Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest.WithReservedDBInstancesOfferingId(System.String)">
- <summary>
- Sets the ReservedDBInstancesOfferingId property
- </summary>
- <param name="reservedDBInstancesOfferingId">The value to set for the ReservedDBInstancesOfferingId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest.WithReservedDBInstanceId(System.String)">
- <summary>
- Sets the ReservedDBInstanceId property
- </summary>
- <param name="reservedDBInstanceId">The value to set for the ReservedDBInstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest.WithDBInstanceCount(System.Int32)">
- <summary>
- Sets the DBInstanceCount property
- </summary>
- <param name="dBInstanceCount">The value to set for the DBInstanceCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest.ReservedDBInstancesOfferingId">
- <summary>
- The ID of the Reserved DB Instance offering to purchase. Example: 438012d3-4052-4cc7-b2e3-8d3372e0e706
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest.ReservedDBInstanceId">
- <summary>
- Customer-specified identifier to track this reservation. Example: myreservationID
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PurchaseReservedDBInstancesOfferingRequest.DBInstanceCount">
- <summary>
- The number of instances to reserve. Default: <c>1</c>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ModifyDBParameterGroupRequest">
- <summary>
- Container for the parameters to the ModifyDBParameterGroup operation.
- <para> Modifies the parameters of a DBParameterGroup. To modify more than one parameter submit a list of the following: ParameterName,
- ParameterValue, and ApplyMethod. A maximum of 20 parameters can be modified in a single request. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.ModifyDBParameterGroup(Amazon.RDS.Model.ModifyDBParameterGroupRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBParameterGroupRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBParameterGroupRequest.WithParameters(Amazon.RDS.Model.Parameter[])">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBParameterGroupRequest.WithParameters(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.Parameter})">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBParameterGroupRequest.DBParameterGroupName">
- <summary>
- The name of the database parameter group. Constraints: <ul> <li>Must be the name of an existing database parameter group</li> <li>Must be 1
- to 255 alphanumeric characters</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive
- hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBParameterGroupRequest.Parameters">
- <summary>
- An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method
- must be supplied; subsequent arguments are optional. A maximum of 20 parameters may be modified in a single request. Valid Values (for the
- application method): <c>immediate | pending-reboot</c> <note>You can use the immediate value with dynamic parameters only. You can use the
- pending-reboot value for both dynamic and static parameters, and changes are applied when DB Instance reboots. </note>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBParameterGroupNotFoundException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroupNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new DBParameterGroupNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBEngineVersion">
- <summary>
- <para> This data type is used as a response element in the action DescribeDBEngineVersions. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBEngineVersion.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBEngineVersion.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBEngineVersion.WithDBParameterGroupFamily(System.String)">
- <summary>
- Sets the DBParameterGroupFamily property
- </summary>
- <param name="dBParameterGroupFamily">The value to set for the DBParameterGroupFamily property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBEngineVersion.WithDBEngineDescription(System.String)">
- <summary>
- Sets the DBEngineDescription property
- </summary>
- <param name="dBEngineDescription">The value to set for the DBEngineDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBEngineVersion.WithDBEngineVersionDescription(System.String)">
- <summary>
- Sets the DBEngineVersionDescription property
- </summary>
- <param name="dBEngineVersionDescription">The value to set for the DBEngineVersionDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DBEngineVersion.Engine">
- <summary>
- The name of the database engine.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBEngineVersion.EngineVersion">
- <summary>
- The version number of the database engine.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBEngineVersion.DBParameterGroupFamily">
- <summary>
- The name of the DBParameterGroupFamily for the database engine.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBEngineVersion.DBEngineDescription">
- <summary>
- The description of the database engine.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBEngineVersion.DBEngineVersionDescription">
- <summary>
- The description of the database engine version.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.AuthorizationAlreadyExistsException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.AuthorizationAlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new AuthorizationAlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.UnableToCancelJobIdException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.UnableToCancelJobIdException.#ctor(System.String)">
- <summary>
- Constructs a new UnableToCancelJobIdException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.CreateJobResultUnmarshaller">
- <summary>
- CreateJobResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.MultipleRegionsException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.MultipleRegionsException.#ctor(System.String)">
- <summary>
- Constructs a new MultipleRegionsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.InvalidManifestFieldException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.InvalidManifestFieldException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidManifestFieldException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.CreateJobQuotaExceededException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new CreateJobQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UploadServerCertificateResponse">
- <summary>
- Returns information about the UploadServerCertificateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadServerCertificateResponse.UploadServerCertificateResult">
- <summary>
- Gets and sets the UploadServerCertificateResult property.
- Contains the result of a successful invocation of the UploadServerCertificate action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.RemoveUserFromGroupRequestMarshaller">
- <summary>
- Remove User From Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.PutGroupPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PutGroupPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupPoliciesResultUnmarshaller">
- <summary>
- ListGroupPoliciesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListAccountAliasesRequestMarshaller">
- <summary>
- List Account Aliases Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteServerCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteServerCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateGroupRequestMarshaller">
- <summary>
- Create Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ServerCertificate">
- <summary>
- <para>The ServerCertificate data type contains information about a
- server certificate.</para> <para>This data type is used as a response
- element in the action GetServerCertificate.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificate.WithServerCertificateMetadata(Amazon.IdentityManagement.Model.ServerCertificateMetadata)">
- <summary>
- Sets the ServerCertificateMetadata property
- </summary>
- <param name="serverCertificateMetadata">The value to set for the ServerCertificateMetadata property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificate.WithCertificateBody(System.String)">
- <summary>
- Sets the CertificateBody property
- </summary>
- <param name="certificateBody">The value to set for the CertificateBody property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ServerCertificate.WithCertificateChain(System.String)">
- <summary>
- Sets the CertificateChain property
- </summary>
- <param name="certificateChain">The value to set for the CertificateChain property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificate.ServerCertificateMetadata">
- <summary>
- The meta information of the server certificate, such as its name, path, ID, and ARN.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificate.CertificateBody">
- <summary>
- The contents of the public key certificate.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16384</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ServerCertificate.CertificateChain">
- <summary>
- The contents of the public key certificate chain.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 2097152</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.PutUserPolicyResponse">
- <summary>
- Returns information about the PutUserPolicy response metadata.
- The PutUserPolicy operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.MFADevice">
- <summary>
- <para>The MFADevice data type contains information about an MFA
- Device.</para> <para> This data type is used as a response element in
- the action ListMFADevices. </para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.MFADevice.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.MFADevice.WithSerialNumber(System.String)">
- <summary>
- Sets the SerialNumber property
- </summary>
- <param name="serialNumber">The value to set for the SerialNumber property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.MFADevice.WithEnableDate(System.DateTime)">
- <summary>
- Sets the EnableDate property
- </summary>
- <param name="enableDate">The value to set for the EnableDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.MFADevice.UserName">
- <summary>
- The User with whom the MFA device is associated.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.MFADevice.SerialNumber">
- <summary>
- Serial number that uniquely identifies the MFA device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>9 - 48</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.MFADevice.EnableDate">
- <summary>
- The date when the MFA device was enabled for the User.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListUsersResponse">
- <summary>
- Returns information about the ListUsersResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUsersResponse.ListUsersResult">
- <summary>
- Gets and sets the ListUsersResult property.
- Contains the result of a successful invocation of the ListUsers action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListSigningCertificatesResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListSigningCertificates action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListSigningCertificatesResult.WithCertificates(Amazon.IdentityManagement.Model.SigningCertificate[])">
- <summary>
- Adds elements to the Certificates collection
- </summary>
- <param name="certificates">The values to add to the Certificates collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListSigningCertificatesResult.WithCertificates(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.SigningCertificate})">
- <summary>
- Adds elements to the Certificates collection
- </summary>
- <param name="certificates">The values to add to the Certificates collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListSigningCertificatesResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListSigningCertificatesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListSigningCertificatesResult.Certificates">
- <summary>
- A list of the User's signing certificate information.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListSigningCertificatesResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more certificate IDs to list. If your results were truncated, you can make a subsequent pagination
- request using the <c>Marker</c> request parameter to retrieve more certificates in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListSigningCertificatesResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListAccountAliasesResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListAccountAliases action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccountAliasesResult.WithAccountAliases(System.String[])">
- <summary>
- Adds elements to the AccountAliases collection
- </summary>
- <param name="accountAliases">The values to add to the AccountAliases collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccountAliasesResult.WithAccountAliases(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AccountAliases collection
- </summary>
- <param name="accountAliases">The values to add to the AccountAliases collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccountAliasesResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccountAliasesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccountAliasesResult.AccountAliases">
- <summary>
-
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccountAliasesResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more account aliases to list. If your results were truncated, you can make a subsequent pagination
- request using the <c>Marker</c> request parameter to retrieve more account aliases in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccountAliasesResult.Marker">
- <summary>
-
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListAccessKeysResponse">
- <summary>
- Returns information about the ListAccessKeysResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccessKeysResponse.ListAccessKeysResult">
- <summary>
- Gets and sets the ListAccessKeysResult property.
- Contains the result of a successful invocation of the ListAccessKeys action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetUserResult">
- <summary>
- <para>Contains the result of a successful invocation of the GetUser
- action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetUserResult.WithUser(Amazon.IdentityManagement.Model.User)">
- <summary>
- Sets the User property
- </summary>
- <param name="user">The value to set for the User property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserResult.User">
- <summary>
- Information about the User.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetGroupPolicyRequest">
- <summary>
- Container for the parameters to the GetGroupPolicy operation.
- <para>Retrieves the specified policy document for the specified group.
- The returned policy is URL-encoded according to RFC 3986. For more
- information about RFC 3986, go to
- http://www.faqs.org/rfcs/rfc3986.html.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetGroupPolicy(Amazon.IdentityManagement.Model.GetGroupPolicyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupPolicyRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupPolicyRequest.GroupName">
- <summary>
- Name of the group the policy is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupPolicyRequest.PolicyName">
- <summary>
- Name of the policy document to get.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.JobFlowExecutionStatusDetailUnmarshaller">
- <summary>
- JobFlowExecutionStatusDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.InstanceGroupDetailUnmarshaller">
- <summary>
- InstanceGroupDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.InstanceGroupConfig">
- <summary>
- <para>Configuration defining a new instance group.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.WithMarket(System.String)">
- <summary>
- Sets the Market property
- </summary>
- <param name="market">The value to set for the Market property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.WithInstanceRole(System.String)">
- <summary>
- Sets the InstanceRole property
- </summary>
- <param name="instanceRole">The value to set for the InstanceRole property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The value to set for the InstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.WithInstanceCount(System.Int32)">
- <summary>
- Sets the InstanceCount property
- </summary>
- <param name="instanceCount">The value to set for the InstanceCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.Name">
- <summary>
- Friendly name given to the instance group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.Market">
- <summary>
- Market type of the Amazon EC2 instances used to create a cluster node.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>ON_DEMAND</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.InstanceRole">
- <summary>
- The role of the instance group in the cluster.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>MASTER, CORE, TASK</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.InstanceType">
- <summary>
- The Amazon EC2 instance type for all instances in the instance group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupConfig.InstanceCount">
- <summary>
- Target number of instances for the instance group.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig">
- <summary>
- <para>A job flow step consisting of a JAR file whose main function
- will be executed. The main function submits a job for Hadoop to
- execute and waits for the job to finish or fail. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.WithProperties(Amazon.ElasticMapReduce.Model.KeyValue[])">
- <summary>
- Adds elements to the Properties collection
- </summary>
- <param name="properties">The values to add to the Properties collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.WithJar(System.String)">
- <summary>
- Sets the Jar property
- </summary>
- <param name="jar">The value to set for the Jar property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.WithMainClass(System.String)">
- <summary>
- Sets the MainClass property
- </summary>
- <param name="mainClass">The value to set for the MainClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.WithArgs(System.String[])">
- <summary>
- Adds elements to the Args collection
- </summary>
- <param name="args">The values to add to the Args collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.Properties">
- <summary>
- A list of Java properties that are set when the step runs. You can use
- these properties to pass key value pairs to your main function.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.Jar">
- <summary>
- A path to a JAR file run during the step.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.MainClass">
- <summary>
- The name of the main class in the specified Java file. If not
- specified, the JAR file should specify a Main-Class in its manifest
- file.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.HadoopJarStepConfig.Args">
- <summary>
- A list of command line arguments passed to the JAR file's main
- function when executed.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest">
- <summary>
- Container for the parameters to the AddJobFlowSteps operation.
- <para> AddJobFlowSteps adds new steps to a running job flow. A maximum
- of 256 steps are allowed in each job flow. </para> <para> A step
- specifies the location of a JAR file stored either on the master node
- of the job flow or in Amazon S3. Each step is performed by the main
- function of the main class of the JAR file. The main class can be
- specified either in the manifest of the JAR or by using the
- MainFunction parameter of the step. </para> <para> Elastic MapReduce
- executes each step in the order listed. For a step to be considered
- complete, the main function must exit with a zero exit code and all
- Hadoop jobs started while the step was running must have completed and
- run successfully. </para> <para> You can only add steps to a job flow
- that is in one of the following states: STARTING, BOOTSTAPPING,
- RUNNING, or WAITING.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.AddJobFlowSteps(Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest.WithJobFlowId(System.String)">
- <summary>
- Sets the JobFlowId property
- </summary>
- <param name="jobFlowId">The value to set for the JobFlowId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest.WithSteps(Amazon.ElasticMapReduce.Model.StepConfig[])">
- <summary>
- Adds elements to the Steps collection
- </summary>
- <param name="steps">The values to add to the Steps collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest.JobFlowId">
- <summary>
- A string that uniquely identifies the job flow. This identifier is
- returned by <a>RunJobFlow</a> and can also be obtained from
- <a>DescribeJobFlows</a> .
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest.Steps">
- <summary>
- A list of <a>StepConfig</a> to be executed by the job flow.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.InstanceStateUnmarshaller">
- <summary>
- InstanceState Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.EnableAvailabilityZonesForLoadBalancerResultUnmarshaller">
- <summary>
- EnableAvailabilityZonesForLoadBalancerResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLBCookieStickinessPolicyRequestMarshaller">
- <summary>
- Create L B Cookie Stickiness Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DuplicateLoadBalancerNameException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DuplicateLoadBalancerNameException.#ctor(System.String)">
- <summary>
- Constructs a new DuplicateLoadBalancerNameException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerResult">
- <summary>
- <para> The output for the CreateLoadBalancer action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerResult.WithDNSName(System.String)">
- <summary>
- Sets the DNSName property
- </summary>
- <param name="dNSName">The value to set for the DNSName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerResult.DNSName">
- <summary>
- The DNS name for the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyResponse">
- <summary>
- Returns information about the CreateLBCookieStickinessPolicyResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyResponse.CreateLBCookieStickinessPolicyResult">
- <summary>
- Gets and sets the CreateLBCookieStickinessPolicyResult property.
- The output for the CreateLBCookieStickinessPolicy action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy">
- <summary>
- <para> The AppCookieStickinessPolicy data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy.#ctor">
- <summary>
- Default constructor for a new AppCookieStickinessPolicy object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy.#ctor(System.String,System.String)">
- <summary>
- Constructs a new AppCookieStickinessPolicy object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="policyName"> The mnemonic name for the policy being created. The name must be unique within the set of policies for this
- LoadBalancer. </param>
- <param name="cookieName"> The name of the application cookie used for stickiness. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy.WithCookieName(System.String)">
- <summary>
- Sets the CookieName property
- </summary>
- <param name="cookieName">The value to set for the CookieName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy.PolicyName">
- <summary>
- The mnemonic name for the policy being created. The name must be unique within the set of policies for this LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy.CookieName">
- <summary>
- The name of the application cookie used for stickiness.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResponse">
- <summary>
- Returns information about the UpdateEnvironmentResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResponse.UpdateEnvironmentResult">
- <summary>
- Gets and sets the UpdateEnvironmentResult property.
- Describes the properties of an environment.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateApplicationVersionResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateApplicationVersion operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.EnvironmentResourceDescriptionUnmarshaller">
- <summary>
- EnvironmentResourceDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateApplicationResultUnmarshaller">
- <summary>
- CreateApplicationResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ConfigurationOptionDescriptionUnmarshaller">
- <summary>
- ConfigurationOptionDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResponse">
- <summary>
- Returns information about the TerminateEnvironmentResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResponse.TerminateEnvironmentResult">
- <summary>
- Gets and sets the TerminateEnvironmentResult property.
- Describes the properties of an environment.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.S3SubscriptionRequiredException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.S3SubscriptionRequiredException.#ctor(System.String)">
- <summary>
- Constructs a new S3SubscriptionRequiredException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.MissingRequiredParameterException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.MissingRequiredParameterException.#ctor(System.String)">
- <summary>
- Constructs a new MissingRequiredParameterException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEventsResponse">
- <summary>
- Returns information about the DescribeEventsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsResponse.DescribeEventsResult">
- <summary>
- Gets and sets the DescribeEventsResult property.
- Result message wrapping a list of event descriptions.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsResponse">
- <summary>
- Returns information about the DescribeEnvironmentsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsResponse.DescribeEnvironmentsResult">
- <summary>
- Gets and sets the DescribeEnvironmentsResult property.
- Result message containing a list of environment descriptions.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest">
- <summary>
- Container for the parameters to the DescribeEnvironments operation.
- <para>Returns descriptions for existing environments.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeEnvironments(Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithEnvironmentIds(System.String[])">
- <summary>
- Adds elements to the EnvironmentIds collection
- </summary>
- <param name="environmentIds">The values to add to the EnvironmentIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithEnvironmentIds(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the EnvironmentIds collection
- </summary>
- <param name="environmentIds">The values to add to the EnvironmentIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithEnvironmentNames(System.String[])">
- <summary>
- Adds elements to the EnvironmentNames collection
- </summary>
- <param name="environmentNames">The values to add to the EnvironmentNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithEnvironmentNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the EnvironmentNames collection
- </summary>
- <param name="environmentNames">The values to add to the EnvironmentNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithIncludeDeleted(System.Boolean)">
- <summary>
- Sets the IncludeDeleted property
- </summary>
- <param name="includeDeleted">The value to set for the IncludeDeleted property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.WithIncludedDeletedBackTo(System.DateTime)">
- <summary>
- Sets the IncludedDeletedBackTo property
- </summary>
- <param name="includedDeletedBackTo">The value to set for the IncludedDeletedBackTo property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.ApplicationName">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.VersionLabel">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that are associated with this application
- version.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.EnvironmentIds">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified IDs.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.EnvironmentNames">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those that have the specified names.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.IncludeDeleted">
- <summary>
- Indicates whether to include deleted environments: <c>true</c>: Environments that have been deleted after <c>IncludedDeletedBackTo</c> are
- displayed. <c>false</c>: Do not include deleted environments.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentsRequest.IncludedDeletedBackTo">
- <summary>
- If specified when <c>IncludeDeleted</c> is set to <c>true</c>, then environments deleted after this date are displayed.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteApplicationResponse">
- <summary>
- Returns information about the DeleteApplication response metadata.
- The DeleteApplication operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Volume">
- <summary>
- Volume
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithSize(System.String)">
- <summary>
- Sets the Size property
- </summary>
- <param name="size">The size of the volume, in GiBs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetSize">
- <summary>
- Checks if Size property is set
- </summary>
- <returns>true if Size property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">Snapshot from which the volume was created (optional).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">Availability Zone in which the volume was created.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">Volume state</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetStatus">
- <summary>
- Checks if Status property is set
- </summary>
- <returns>true if Status property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithCreateTime(System.String)">
- <summary>
- Sets the CreateTime property
- </summary>
- <param name="createTime">Time stamp when volume creation was initiated.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetCreateTime">
- <summary>
- Checks if CreateTime property is set
- </summary>
- <returns>true if CreateTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithAttachment(Amazon.EC2.Model.Attachment[])">
- <summary>
- Sets the Attachment property
- </summary>
- <param name="list">List of attachments</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetAttachment">
- <summary>
- Checks if Attachment property is set
- </summary>
- <returns>true if Attachment property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the Volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Volume.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.Size">
- <summary>
- Gets and sets the Size property.
- The size of the volume, in GiBs.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- Snapshot from which the volume was created (optional).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- Availability Zone in which the volume was created.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.Status">
- <summary>
- Gets and sets the Status property.
- Volume state
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.CreateTime">
- <summary>
- Gets and sets the CreateTime property.
- Time stamp when volume creation was initiated.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.Attachment">
- <summary>
- Gets and sets the Attachment property.
- List of attachments
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Volume.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the Volume.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.TerminateInstancesResult">
- <summary>
- Terminate Instances Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesResult.IsSetTerminatingInstance">
- <summary>
- Checks if TerminatingInstance property is set
- </summary>
- <returns>true if TerminatingInstance property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TerminateInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.TerminateInstancesResult.TerminatingInstance">
- <summary>
- Gets and sets the TerminatingInstance property.
- List of terminating instances
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.SpotPriceHistory">
- <summary>
- A single Spot Price history data point.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The instance type.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The description of the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.IsSetProductDescription">
- <summary>
- Checks if ProductDescription property is set
- </summary>
- <returns>true if ProductDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.WithSpotPrice(System.String)">
- <summary>
- Sets the SpotPrice property
- </summary>
- <param name="spotPrice">Specifies the price paid to launch one or more
- instances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.IsSetSpotPrice">
- <summary>
- Checks if SpotPrice property is set
- </summary>
- <returns>true if SpotPrice property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.WithTimestamp(System.String)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">Specifies the creation timestamp of the
- request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.IsSetTimestamp">
- <summary>
- Checks if Timestamp property is set
- </summary>
- <returns>true if Timestamp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotPriceHistory.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.SpotPriceHistory.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- The instance type.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotPriceHistory.ProductDescription">
- <summary>
- Gets and sets the ProductDescription property.
- The description of the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotPriceHistory.SpotPrice">
- <summary>
- Gets and sets the SpotPrice property.
- Specifies the price paid to launch one or more
- instances.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotPriceHistory.Timestamp">
- <summary>
- Gets and sets the Timestamp property.
- Specifies the creation timestamp of the
- request.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotPriceHistory.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceNetworkAclEntryResponse">
- <summary>
- The Response for the
- ReplaceNetworkAclEntry operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest">
- <summary>
- Changes which network ACL a subnet is associated with. By default when you create a subnet, it's
- automatically associated with the default network ACL. For more information about network ACLs, go to
- Network ACLs in the Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest.WithAssociationId(System.String)">
- <summary>
- Sets the AssociationId property
- </summary>
- <param name="associationId">The ID representing the current association
- between the original network ACL and the
- subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest.IsSetAssociationId">
- <summary>
- Checks if AssociationId property is set
- </summary>
- <returns>true if AssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest.WithNetworkAclId(System.String)">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="networkAclId">The ID of the new ACL to associate with the
- subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest.AssociationId">
- <summary>
- Gets and sets the AssociationId property.
- The ID representing the current association
- between the original network ACL and the
- subnet.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclAssociationRequest.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- The ID of the new ACL to associate with the
- subnet.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGatewayAttachment.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC the Internet gateway is attached to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGatewayAttachment.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGatewayAttachment.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The current state of the attachment.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGatewayAttachment.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InternetGatewayAttachment.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC the Internet gateway is attached to.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InternetGatewayAttachment.State">
- <summary>
- Gets and sets the State property.
- The current state of the attachment.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportKeyPairResult">
- <summary>
- ImportKeyPair Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResult.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResult.IsSetKeyFingerprint">
- <summary>
- Checks if KeyFingerprint property is set
- </summary>
- <returns>true if KeyFingerprint property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportKeyPairResult.KeyName">
- <summary>
- Gets and sets the KeyName property.
- The specified unique key pair name.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportKeyPairResult.KeyFingerprint">
- <summary>
- Gets and sets the KeyFingerprint property.
- The MD5 public key fingerprint as specified in section 4 of
- RFC4716.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.GetConsoleOutputResponse">
- <summary>
- Get Console Output Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputResponse.IsSetGetConsoleOutputResult">
- <summary>
- Checks if GetConsoleOutputResult property is set
- </summary>
- <returns>true if GetConsoleOutputResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.GetConsoleOutputResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.GetConsoleOutputResponse.GetConsoleOutputResult">
- <summary>
- Gets and sets the GetConsoleOutputResult property.
- Get Console Output Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.EbsBlockDevice">
- <summary>
- Information about the EBS block device.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.EbsBlockDevice.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The ID of the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.EbsBlockDevice.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.EbsBlockDevice.WithVolumeSize(System.Decimal)">
- <summary>
- Sets the VolumeSize property
- </summary>
- <param name="volumeSize">Size of the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.EbsBlockDevice.IsSetVolumeSize">
- <summary>
- Checks if VolumeSize property is set
- </summary>
- <returns>true if VolumeSize property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.EbsBlockDevice.WithDeleteOnTermination(System.Boolean)">
- <summary>
- Sets the DeleteOnTermination property
- </summary>
- <param name="deleteOnTermination">Whether the EBS block device is deleted on
- instance termination.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.EbsBlockDevice.IsSetDeleteOnTermination">
- <summary>
- Checks if DeleteOnTermination property is set
- </summary>
- <returns>true if DeleteOnTermination property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.EbsBlockDevice.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.EbsBlockDevice.VolumeSize">
- <summary>
- Gets and sets the VolumeSize property.
- Size of the volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.EbsBlockDevice.DeleteOnTermination">
- <summary>
- Gets and sets the DeleteOnTermination property.
- Whether the EBS block device is deleted on
- instance termination.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DisassociateAddressResponse">
- <summary>
- Disassociate Address Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateAddressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateAddressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateAddressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DisassociateAddressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DetachVolumeRequest">
- <summary>
- Detaches an Amazon EBS volume from an instance.
- For more information about
- Amazon EBS, go
- to the Amazon Elastic
- Compute Cloud Developer Guide.
-
- Important - make sure to unmount any
- file systems on the device within your
- operating system before
- detaching the volume.
-
- Failure to unmount file systems, or otherwise
- properly release the device
- from use, can result in
- lost data and
- will corrupt the file system.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.WithDevice(System.String)">
- <summary>
- Sets the Device property
- </summary>
- <param name="device">The device name.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.IsSetDevice">
- <summary>
- Checks if Device property is set
- </summary>
- <returns>true if Device property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.WithForce(System.Boolean)">
- <summary>
- Sets the Force property
- </summary>
- <param name="force">Forces detachment if the previous detachment
- attempt did not occur
- cleanly (logging into an instance,
- unmounting the volume, and detaching normally). This option
- can lead to data loss or a corrupted file system.
-
- Use this option only as a last resort to detach a volume from a
- failed instance. The instance will not have an opportunity
- to flush file system caches nor file
- system meta data. If you use this option, you
- must perform file system check and repair procedures.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeRequest.IsSetForce">
- <summary>
- Checks if Force property is set
- </summary>
- <returns>true if Force property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVolumeRequest.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVolumeRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVolumeRequest.Device">
- <summary>
- Gets and sets the Device property.
- The device name.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVolumeRequest.Force">
- <summary>
- Gets and sets the Force property.
- Forces detachment if the previous detachment
- attempt did not occur
- cleanly (logging into an instance,
- unmounting the volume, and detaching normally). This option
- can lead to data loss or a corrupted file system.
-
- Use this option only as a last resort to detach a volume from a
- failed instance. The instance will not have an opportunity
- to flush file system caches nor file
- system meta data. If you use this option, you
- must perform file system check and repair procedures.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpnGatewaysRequest">
- <summary>
- Gives you information about your VPN gateways.
- You can filter the results to return information
- only about VPN gateways that match criteria you specify. For example,
- you could ask to get information about a particular VPN gateway (or all) only
- if the gateway's state is pending or available. You can specify
- multiple filters (e.g., the VPN gateway is in a particular
- Availability Zone and the gateway's state is pending or available).
- The result includes information for a particular VPN gateway only if
- the gateway matches all your filters. If there's no match, no
- special message is returned; the response is simply empty.
-
- The returned information consists of:
-
- 1. The VPN gateway ID - The current state of the VPN gateway
- (pending, available, deleting, deleted)
- 2. The type of VPN connection the VPN gateway supports.
- 3. The Availability Zone where the VPN gateway was created.
- 4. The VPCs the VPN gateway is attached to and the state of each
- attachment (attaching, attached, detaching, detached)
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysRequest.WithVpnGatewayId(System.String[])">
- <summary>
- Sets the VpnGatewayId property
- </summary>
- <param name="list">A VPN gateway ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysRequest.IsSetVpnGatewayId">
- <summary>
- Checks if VpnGatewayId property is set
- </summary>
- <returns>true if VpnGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">The filter to apply on the results of DescribeVpnGateways. Filters
- can be:
- a. state - The state of the VPN gateway. (pending, available, deleting, deleted).
- b. type - The type of VPN gateway. Currently the only supported type is ipsec.1.
- c. availabilityZone - The Availability Zone the VPN gateway is in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnGatewaysRequest.VpnGatewayId">
- <summary>
- Gets and sets the VpnGatewayId property.
- A VPN gateway ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnGatewaysRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- The filter to apply on the results of DescribeVpnGateways. Filters
- can be:
- a. state - The state of the VPN gateway. (pending, available, deleting, deleted).
- b. type - The type of VPN gateway. Currently the only supported type is ipsec.1.
- c. availabilityZone - The Availability Zone the VPN gateway is in.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVolumesRequest">
- <summary>
- Describes the specified Amazon EBS volumes that
- you own. If you do not
- specify one or
- more volume IDs, Amazon EBS
- describes all volumes that you own. For
- more information about
- Amazon EBS, go to the Amazon Elastic Compute Cloud Developer
- Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesRequest.WithVolumeId(System.String[])">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="list">The ID of the volume to list.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesRequest.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated
- with the specified Volumes.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVolumesRequest.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the volume to list.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVolumesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated
- with the specified Volumes.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSubnetsResponse">
- <summary>
- Describe Subnets Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsResponse.IsSetDescribeSubnetsResult">
- <summary>
- Checks if DescribeSubnetsResult property is set
- </summary>
- <returns>true if DescribeSubnetsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSubnetsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSubnetsResponse.DescribeSubnetsResult">
- <summary>
- Gets and sets the DescribeSubnetsResult property.
- Describe Subnets Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSnapshotAttributeResponse">
- <summary>
- Describe Snapshot Attribute Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeResponse.IsSetDescribeSnapshotAttributeResult">
- <summary>
- Checks if DescribeSnapshotAttributeResult property is set
- </summary>
- <returns>true if DescribeSnapshotAttributeResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotAttributeResponse.DescribeSnapshotAttributeResult">
- <summary>
- Gets and sets the DescribeSnapshotAttributeResult property.
- Describe Snapshot Attribute Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeReservedInstancesResult">
- <summary>
- Describe Reserved Instances Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesResult.IsSetReservedInstances">
- <summary>
- Checks if ReservedInstances property is set
- </summary>
- <returns>true if ReservedInstances property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesResult.ReservedInstances">
- <summary>
- Gets and sets the ReservedInstances property.
- List of reserved instances
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeReservedInstancesRequest">
- <summary>
- Describes Reserved Instances that you purchased.
- For more information about Reserved
- Instances, go to the Amazon
- Elastic Compute Cloud Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesRequest.WithReservedInstancesId(System.String[])">
- <summary>
- Sets the ReservedInstancesId property
- </summary>
- <param name="list">IDs of the Reserved Instance to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesRequest.IsSetReservedInstancesId">
- <summary>
- Checks if ReservedInstancesId property is set
- </summary>
- <returns>true if ReservedInstancesId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with
- the specified ReservedInstancesOfferings.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesRequest.ReservedInstancesId">
- <summary>
- Gets and sets the ReservedInstancesId property.
- IDs of the Reserved Instance to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with
- the specified ReservedInstancesOfferings.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeAddressesResponse">
- <summary>
- Describe Addresses Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesResponse.IsSetDescribeAddressesResult">
- <summary>
- Checks if DescribeAddressesResult property is set
- </summary>
- <returns>true if DescribeAddressesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAddressesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAddressesResponse.DescribeAddressesResult">
- <summary>
- Gets and sets the DescribeAddressesResult property.
- Describe Addresses Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeAddressesRequest">
- <summary>
- Lists elastic IP addresses assigned to your
- account or provides information about a
- specific address.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesRequest.WithPublicIp(System.String[])">
- <summary>
- Sets the PublicIp property
- </summary>
- <param name="list">Elastic IP address to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesRequest.IsSetPublicIp">
- <summary>
- Checks if PublicIp property is set
- </summary>
- <returns>true if PublicIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesRequest.WithAllocationId(System.String[])">
- <summary>
- Sets the AllocationId property
- </summary>
- <param name="list">One or more allocation IDs corresponding to the address
- or addresses to describe. Applies only to VPC addresses.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesRequest.IsSetAllocationId">
- <summary>
- Checks if AllocationId property is set
- </summary>
- <returns>true if AllocationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with
- the specified DescribeAddresses.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAddressesRequest.PublicIp">
- <summary>
- Gets and sets the PublicIp property.
- Elastic IP address to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAddressesRequest.AllocationId">
- <summary>
- Gets and sets the AllocationId property.
- One or more allocation IDs corresponding to the address
- or addresses to describe. Applies only to VPC addresses.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAddressesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with
- the specified DescribeAddresses.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteRouteTableRequest">
- <summary>
- Deletes a route table from a VPC. The route table must not be associated with a subnet.You can't delete
- the main route table. For more information about route tables, go to Route Tables in the Amazon Virtual
- Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteTableRequest.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The ID of the route table to be deleted.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteTableRequest.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteRouteTableRequest.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The ID of the route table to be deleted.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteDhcpOptionsRequest">
- <summary>
- Deletes a set of DHCP options that you specify. Amazon VPC returns an
- error if the set of options you specify is currently associated with
- a VPC. You can disassociate the set of options by associating
- either a new set of options or the default options with the VPC.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteDhcpOptionsRequest.WithDhcpOptionsId(System.String)">
- <summary>
- Sets the DhcpOptionsId property
- </summary>
- <param name="dhcpOptionsId">The ID of the DHCP options set you want to
- delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteDhcpOptionsRequest.IsSetDhcpOptionsId">
- <summary>
- Checks if DhcpOptionsId property is set
- </summary>
- <returns>true if DhcpOptionsId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteDhcpOptionsRequest.DhcpOptionsId">
- <summary>
- Gets and sets the DhcpOptionsId property.
- The ID of the DHCP options set you want to
- delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVolumeResult">
- <summary>
- Create Volume Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeResult.IsSetVolume">
- <summary>
- Checks if Volume property is set
- </summary>
- <returns>true if Volume property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumeResult.Volume">
- <summary>
- Gets and sets the Volume property.
- Volume
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateTagsRequest">
- <summary>
- Adds or overwrites tags for the specified resources.
- Each resource can have a maximum of 10 tags.
- Each tag consists of a key-value pair.
- Tag keys must be unique per resource.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateTagsRequest.WithResourceId(System.String[])">
- <summary>
- Sets the ResourceId property
- </summary>
- <param name="list">One or more IDs of resources to tag.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateTagsRequest.IsSetResourceId">
- <summary>
- Checks if ResourceId property is set
- </summary>
- <returns>true if ResourceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateTagsRequest.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">The tags to add or overwrite for the specified resources.
- Each tag item consists of a
- key-value pair.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateTagsRequest.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateTagsRequest.ResourceId">
- <summary>
- Gets and sets the ResourceId property.
- One or more IDs of resources to tag.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateTagsRequest.Tag">
- <summary>
- Gets and sets the Tag property.
- The tags to add or overwrite for the specified resources.
- Each tag item consists of a
- key-value pair.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateCustomerGatewayRequest">
- <summary>
- Provides information to AWS about your customer gateway device. The
- customer gateway is the appliance at your end of the VPN connection
- (compared to the VPN gateway, which is the device at the AWS side of the
- VPN connection). AWS might delete any customer gateway that you create
- with this operation if you leave it inactive for an extended period of
- time (inactive means that there's no VPN connection in use with the customer
- gateway).
-
- You must provide the Internet-routable IP address of the customer
- gateway's external interface. The IP address must be static and can't be
- behind a device performing network address translation (NAT).
-
- You must also provide the device's Border Gateway Protocol (BGP)
- Autonomous System Number (ASN). You can use an existing ASN
- assigned to your network. If you don't have an ASN already, you can
- use a private ASN (in the 64512 - 65534 range)
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayRequest.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The type of VPN connection this customer gateway supports.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayRequest.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayRequest.WithIpAddress(System.String)">
- <summary>
- Sets the IpAddress property
- </summary>
- <param name="ipAddress">The Internet-routable IP address for the customer gateway's
- outside interface. The address must be static.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayRequest.IsSetIpAddress">
- <summary>
- Checks if IpAddress property is set
- </summary>
- <returns>true if IpAddress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayRequest.WithBgpAsn(System.Decimal)">
- <summary>
- Sets the BgpAsn property
- </summary>
- <param name="bgpAsn">The customer gateway's Border Gateway Protocol
- (BGP) Autonomous System Number (ASN).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateCustomerGatewayRequest.IsSetBgpAsn">
- <summary>
- Checks if BgpAsn property is set
- </summary>
- <returns>true if BgpAsn property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateCustomerGatewayRequest.Type">
- <summary>
- Gets and sets the Type property.
- The type of VPN connection this customer gateway supports.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateCustomerGatewayRequest.IpAddress">
- <summary>
- Gets and sets the IpAddress property.
- The Internet-routable IP address for the customer gateway's
- outside interface. The address must be static.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateCustomerGatewayRequest.BgpAsn">
- <summary>
- Gets and sets the BgpAsn property.
- The customer gateway's Border Gateway Protocol
- (BGP) Autonomous System Number (ASN).
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.SetAlarmStateRequestMarshaller">
- <summary>
- Set Alarm State Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.ResourceNotFoundException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ResourceNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new ResourceNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Metric">
- <summary>
- <para> The <c>Metric</c> data type contains information about a
- specific metric. If you call ListMetrics, Amazon CloudWatch returns
- information contained by this data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Metric.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Metric.WithMetricName(System.String)">
- <summary>
- Sets the MetricName property
- </summary>
- <param name="metricName">The value to set for the MetricName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Metric.WithDimensions(Amazon.CloudWatch.Model.Dimension[])">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Metric.WithDimensions(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Dimension})">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Metric.Namespace">
- <summary>
- The namespace of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[^:].*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Metric.MetricName">
- <summary>
- The name of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Metric.Dimensions">
- <summary>
- A list of dimensions associated with the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.ListMetricsResult">
- <summary>
- <para> The output for the ListMetrics action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsResult.WithMetrics(Amazon.CloudWatch.Model.Metric[])">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsResult.WithMetrics(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Metric})">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.ListMetricsResult.Metrics">
- <summary>
- A list of metrics used to generate statistics for an AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.ListMetricsResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmHistoryResponse">
- <summary>
- Returns information about the DescribeAlarmHistoryResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryResponse.DescribeAlarmHistoryResult">
- <summary>
- Gets and sets the DescribeAlarmHistoryResult property.
- The output for the DescribeAlarmHistory action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CreateDistributionRequest">
- <summary>
- The CreateDistributionRequest contains the parameters used for the CreateDistribution operation.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CreateDistributionRequest.WithDistributionConfig(Amazon.CloudFront.Model.CloudFrontDistributionConfig)">
- <summary>
- Sets the DistributionConfig property for this request.
- </summary>
- <param name="distributionConfig">The value that DistributionConfig is set to</param>
- <returns>the request with the Id set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateDistributionRequest.DistributionConfig">
- <summary>
- Gets and Sets the DistributionConfig property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase">
- <summary>
- Describes the elements shared by the various distribution configurations.
- <para>The elements shared between configuration objects are:
- <list type="number">
- <item>Caller Reference</item>
- <item>Origin S3 Bucket</item>
- <item>Comment</item>
- <item>A list of CNAMEs for the distribution</item>
- <item>Enabled flag</item>
- <item>Bucket Logging details</item>
- <item>CloudFront Origin Access Identity associated with the distribution.
- This is a virtual identity you use to let CloudFront fetch private content
- from your bucket.</item>
- <item>The AWS Accounts that have URL signing privileges for Private Content.</item>
- </list>
- </para>
- For more information, please visit:
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionConfigDatatype.html"/><br />
- - <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionConfigDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.ToString">
- <summary>
- Returns the string representation of this object.
- </summary>
- <returns>
- A string representing the configuration.
- </returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.IsSetComment">
- <summary>
- Checks if Comment property is set.
- </summary>
- <returns>true if Comment property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.IsSetCallerReference">
- <summary>
- Checks if CallerReference property is set
- </summary>
- <returns>true if CallerReference property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.IsSetCNames">
- <summary>
- Checks if CNAME property is set
- </summary>
- <returns>true if CNAME property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.IsSetETag">
- <summary>
- Checks if ETag property is set.
- </summary>
- <returns>true if ETag property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.IsSetTrustedSigners">
- <summary>
- Checks if TrustedSigners property is set.
- </summary>
- <returns>true if TrustedSigners property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.IsSetLogging">
- <summary>
- Checks if the Logging property is set.
- </summary>
- <returns>true if the Logging property is set.</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.S3Origin">
- <summary>
- Gets and sets the S3Origin property.
- The S3Origin contains the Amazon S3 bucket that will be used for the Distribution.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.Origin">
- <summary>
- Gets and sets the Origin property.
- The Amazon S3 bucket to associate with the distribution.
- For example: mybucket.s3.amazonaws.com.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.Comment">
- <summary>
- Gets and sets the Comment property.
- Any comments you want to include about the distribution.
- The maximum length of the comment is 128 characters
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.CallerReference">
- <summary>
- Gets and sets the CallerReference property.
- A unique number that ensures the request can't be replayed.
- If the CallerReference is new (no matter the content of the CloudFrontDistributionConfig object),
- a new distribution is created.
- </summary>
- <remarks>
- <para>If the CallerReference is a value you already sent in a previous request to
- create a distribution, and the content of the CloudFrontDistributionConfig is identical to the
- original request (ignoring white space), the response includes the same information
- returned to the original request.</para>
- <para>If the CallerReference is a value you already sent in a previous request to
- create a distribution but the content of the CloudFrontDistributionConfig is different from the
- original request, CloudFront returns a DistributionAlreadyExists error.</para>
- </remarks>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.CNAME">
- <summary>
- Gets and Sets the CNAME property.
- A CNAME alias you want to associate with this distribution. You can have up to
- 10 CNAME aliases per distribution. For more information, refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/CNAMEs.html"/>
- </summary>
- <remarks>
- Only include a CNAME element if you have a CNAME to associate with the distribution.
- Don't include an empty CNAME element in the CloudFrontDistributionConfig object. If you do, CloudFront
- returns a MalformedXML error. Only 10 CNAME aliases can be specified for a distribution.
- </remarks>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.Enabled">
- <summary>
- Gets and sets the Enabled property.
- Whether the distribution is enabled to accept
- end user requests for content.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.ETag">
- <summary>
- Gets and sets the ETag property of the Distribution Config.
- The ETag is the current version of the Distribution's
- Configuration.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.OriginAccessIdentity">
- <summary>
- Gets and sets the OriginAccessIdentity property.
- The CloudFront origin access identity to associate with the distribution.
- If you want the distribution to serve private content, include this element;
- if you want the distribution to serve public content, remove this element.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.TrustedSigners">
- <summary>
- Gets and sets the TrustedSigners property.
- This specifies any AWS accounts you want to permit to create signed URLs for private content.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfigBase.Logging">
- <summary>
- Gets and Sets the Logging property.
- A complex type that controls whether access logs are written for the
- distribution. For more information, refer:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html"/>
- </summary>
- <remarks>
- The Bucket specifies where the CloudFront access logs will be stored. Maximum length is 128
- characters and it must conform to Amazon S3 V2 bucket criteria.
- <para>The Prefix is an optional string of your choice to prefix to the access log
- filenames for this distribution. Maximum length is 256 characters and it can't
- start with a '/'</para>
- </remarks>
- </member>
- <member name="T:Amazon.CloudFront.AmazonCloudFrontException">
- <summary>
- Amazon CloudFront Exception provides details of errors
- returned by Amazon CloudFront service
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.#ctor">
- <summary>
- Initializes a new AmazonCloudFrontException with default values.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.#ctor(System.String)">
- <summary>
- Initializes a new AmazonCloudFrontException with a specified error message
- </summary>
- <param name="message">A message that describes the error</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.#ctor(System.Exception)">
- <summary>
- Initializes a new AmazonCloudFrontException from the inner exception that is
- the cause of this exception.
- </summary>
- <param name="innerException">The nested exception that caused the AmazonCloudFrontException</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new AmazonCloudFrontException with serialized data.
- </summary>
- <param name="info">The object that holds the serialized object data.
- </param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Serializes this instance of AmazonCloudFrontException.
- </summary>
- <param name="info">The object that holds the serialized object data.</param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.#ctor(System.String,System.Exception)">
- <summary>
- Initializes a new AmazonCloudFrontException with a specific error message and the inner exception
- that is the cause of this exception.
- </summary>
- <param name="message">Overview of error</param>
- <param name="innerException">The exception that is the cause of the current exception.
- If the innerException parameter is not a null reference, the current exception is
- raised in a catch block that handles the inner exception.</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.#ctor(System.String,System.Net.HttpStatusCode)">
- <summary>
- Initializes an AmazonCloudFrontException with a specific message and
- HTTP status code
- </summary>
- <param name="message">Overview of error</param>
- <param name="statusCode">HTTP status code for error response</param>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontException.#ctor(System.String,System.Net.HttpStatusCode,System.String,System.String,System.String,System.String,System.String,System.Net.WebHeaderCollection)">
- <summary>
- Initializes an AmazonCloudFrontException with error information provided in an
- AmazonCloudFront response.
- </summary>
- <param name="message">Overview of error</param>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="errorCode">Error Code returned by the service</param>
- <param name="requestId">Request ID returned by the service</param>
- <param name="type">Error Type</param>
- <param name="xml">Compete xml found in response</param>
- <param name="requestAddr">The CloudFront request url</param>
- <param name="responseHeaders">The response headers containing CloudFront specific information
- </param>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.HostId">
- <summary>
- Gets the HostId property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.ErrorCode">
- <summary>
- Gets the ErrorCode property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.Message">
- <summary>
- Gets error message
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.StatusCode">
- <summary>
- Gets status code returned by the service if available. If status
- code is set to -1, it means that status code was unavailable at the
- time exception was thrown
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.XML">
- <summary>
- Gets XML returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.RequestId">
- <summary>
- Gets Request ID returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.CloudFrontRequestAddress">
- <summary>
- Gets the CloudFront service address used to make this request.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontException.ResponseHeaders">
- <summary>
- Gets the error response HTTP headers so that CloudFront specific information
- can be retrieved for debugging. Interesting fields are:
- a. x-amz-id-2
- b. x-amz-request-id
- c. Date
-
- A value can be retrieved from this HeaderCollection via:
- ResponseHeaders.Get("key");
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ValidateTemplateResponse">
- <summary>
- Returns information about the ValidateTemplateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResponse.ValidateTemplateResult">
- <summary>
- Gets and sets the ValidateTemplateResult property.
- The output for ValidateTemplate action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.TemplateParameterUnmarshaller">
- <summary>
- TemplateParameter Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.StackSummaryUnmarshaller">
- <summary>
- StackSummary Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.StackResourceDetail">
- <summary>
- <para> The StackResourceDetail data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithStackId(System.String)">
- <summary>
- Sets the StackId property
- </summary>
- <param name="stackId">The value to set for the StackId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithLogicalResourceId(System.String)">
- <summary>
- Sets the LogicalResourceId property
- </summary>
- <param name="logicalResourceId">The value to set for the LogicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithPhysicalResourceId(System.String)">
- <summary>
- Sets the PhysicalResourceId property
- </summary>
- <param name="physicalResourceId">The value to set for the PhysicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithResourceType(System.String)">
- <summary>
- Sets the ResourceType property
- </summary>
- <param name="resourceType">The value to set for the ResourceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithLastUpdatedTimestamp(System.DateTime)">
- <summary>
- Sets the LastUpdatedTimestamp property
- </summary>
- <param name="lastUpdatedTimestamp">The value to set for the LastUpdatedTimestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithResourceStatus(System.String)">
- <summary>
- Sets the ResourceStatus property
- </summary>
- <param name="resourceStatus">The value to set for the ResourceStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithResourceStatusReason(System.String)">
- <summary>
- Sets the ResourceStatusReason property
- </summary>
- <param name="resourceStatusReason">The value to set for the ResourceStatusReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResourceDetail.WithMetadata(System.String)">
- <summary>
- Sets the Metadata property
- </summary>
- <param name="metadata">The value to set for the Metadata property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.StackName">
- <summary>
- The name associated with the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.StackId">
- <summary>
- Unique identifier of the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.LogicalResourceId">
- <summary>
- The logical name of the resource specified in the template.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.PhysicalResourceId">
- <summary>
- The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.ResourceType">
- <summary>
- Type of the resource. (For more information, go to the <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS
- CloudFormation User Guide</a>.)
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.LastUpdatedTimestamp">
- <summary>
- Time the status was updated.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.ResourceStatus">
- <summary>
- Current status of the resource.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.ResourceStatusReason">
- <summary>
- Success/failure message associated with the resource.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.Description">
- <summary>
- User defined description associated with the resource.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResourceDetail.Metadata">
- <summary>
- The JSON format content of the <c>Metadata</c> attribute declared for the resource. For more information, see <a
- href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide/aws-attribute-metadata.html">Metadata Attribute</a> in the AWS
- CloudFormation User Guide.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ListStackResourcesResult">
- <summary>
- <para> The output for a ListStackResources action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStackResourcesResult.WithStackResourceSummaries(Amazon.CloudFormation.Model.StackResourceSummary[])">
- <summary>
- Adds elements to the StackResourceSummaries collection
- </summary>
- <param name="stackResourceSummaries">The values to add to the StackResourceSummaries collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStackResourcesResult.WithStackResourceSummaries(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.StackResourceSummary})">
- <summary>
- Adds elements to the StackResourceSummaries collection
- </summary>
- <param name="stackResourceSummaries">The values to add to the StackResourceSummaries collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStackResourcesResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ListStackResourcesResult.StackResourceSummaries">
- <summary>
- A list of <c>StackResourceSummary</c> structures.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ListStackResourcesResult.NextToken">
- <summary>
- String that identifies the start of the next list of events, if there is one.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.TerminateInstanceInAutoScalingGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for TerminateInstanceInAutoScalingGroup operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.SetInstanceHealthRequestMarshaller">
- <summary>
- Set Instance Health Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.EnableMetricsCollectionResponseUnmarshaller">
- <summary>
- Response Unmarshaller for EnableMetricsCollection operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ScalingActivityInProgressException">
- <summary>
- AmazonAutoScaling exception
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScalingActivityInProgressException.#ctor(System.String)">
- <summary>
- Constructs a new ScalingActivityInProgressException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ResourceInUseException">
- <summary>
- AmazonAutoScaling exception
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ResourceInUseException.#ctor(System.String)">
- <summary>
- Constructs a new ResourceInUseException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.AutoScaling.Model.LimitExceededException">
- <summary>
- AmazonAutoScaling exception
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.LimitExceededException.#ctor(System.String)">
- <summary>
- Constructs a new LimitExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DisableMetricsCollectionResponse">
- <summary>
- Returns information about the DisableMetricsCollection response metadata.
- The DisableMetricsCollection operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResponse">
- <summary>
- Returns information about the DescribeMetricCollectionTypesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResponse.DescribeMetricCollectionTypesResult">
- <summary>
- Gets and sets the DescribeMetricCollectionTypesResult property.
- The output of the DescribeMetricCollectionTypes action.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResult">
- <summary>
- <para> The LaunchConfigurationsType data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResult.WithLaunchConfigurations(Amazon.AutoScaling.Model.LaunchConfiguration[])">
- <summary>
- Adds elements to the LaunchConfigurations collection
- </summary>
- <param name="launchConfigurations">The values to add to the LaunchConfigurations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResult.WithLaunchConfigurations(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.LaunchConfiguration})">
- <summary>
- Adds elements to the LaunchConfigurations collection
- </summary>
- <param name="launchConfigurations">The values to add to the LaunchConfigurations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResult.LaunchConfigurations">
- <summary>
- A list of launch configurations.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest">
- <summary>
- Container for the parameters to the DescribeAutoScalingGroups operation.
- <para> Returns a full description of each Auto Scaling group in the given list. This includes all Amazon EC2 instances that are members of
- the group. If a list of names is not provided, the service returns the full details of all Auto Scaling groups. </para> <para> This action
- supports pagination by returning a token if there are more pages to retrieve. To get the next page, call this action again with the returned
- token as the NextToken parameter. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAutoScalingGroups(Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest.WithAutoScalingGroupNames(System.String[])">
- <summary>
- Adds elements to the AutoScalingGroupNames collection
- </summary>
- <param name="autoScalingGroupNames">The values to add to the AutoScalingGroupNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest.WithAutoScalingGroupNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AutoScalingGroupNames collection
- </summary>
- <param name="autoScalingGroupNames">The values to add to the AutoScalingGroupNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest.AutoScalingGroupNames">
- <summary>
- A list of Auto Scaling group names.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsRequest.MaxRecords">
- <summary>
- The maximum number of records to return.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 50</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAdjustmentTypesRequest">
- <summary>
- Container for the parameters to the DescribeAdjustmentTypes operation.
- <para> Returns policy adjustment types for use in the PutScalingPolicy action. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAdjustmentTypes(Amazon.AutoScaling.Model.DescribeAdjustmentTypesRequest)"/>
- </member>
- <member name="T:Amazon.AutoScaling.Model.BlockDeviceMapping">
- <summary>
- <para> The BlockDeviceMapping data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.BlockDeviceMapping.WithVirtualName(System.String)">
- <summary>
- Sets the VirtualName property
- </summary>
- <param name="virtualName">The value to set for the VirtualName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.BlockDeviceMapping.WithDeviceName(System.String)">
- <summary>
- Sets the DeviceName property
- </summary>
- <param name="deviceName">The value to set for the DeviceName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.BlockDeviceMapping.WithEbs(Amazon.AutoScaling.Model.Ebs)">
- <summary>
- Sets the Ebs property
- </summary>
- <param name="ebs">The value to set for the Ebs property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.BlockDeviceMapping.VirtualName">
- <summary>
- The virtual name associated with the device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.BlockDeviceMapping.DeviceName">
- <summary>
- The name of the device within Amazon EC2.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.BlockDeviceMapping.Ebs">
- <summary>
- The Elastic Block Storage volume information.
-
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ConditionFactory">
- <summary>
- A factory for creating conditions to be used in the policy.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_CANNED_ACL_CONDITION_KEY">
- <summary>
- Condition key for the canned ACL specified by a request.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_LOCATION_CONSTRAINT_CONDITION_KEY">
- <summary>
- Condition key for the location constraint specified by a request.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_PREFIX_CONDITION_KEY">
- <summary>
- Condition key for the prefix specified by a request.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_DELIMITER_CONDITION_KEY">
- <summary>
- Condition key for the delimiter specified by a request.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_MAX_KEYS_CONDITION_KEY">
- <summary>
- Condition key for the max keys specified by a request.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_COPY_SOURCE_CONDITION_KEY">
- <summary>
- Condition key for the source object specified by a request to copy an
- object.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_METADATA_DIRECTIVE_CONDITION_KEY">
- <summary>
- Condition key for the metadata directive specified by a request to copy
- an object.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.S3_VERSION_ID_CONDITION_KEY">
- <summary>
- Condition key for the version ID of an object version specified by a
- request.
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.CURRENT_TIME_CONDITION_KEY">
- <summary>
- Condition key for the current time.
- <para>
- This condition key should only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.DateComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.SECURE_TRANSPORT_CONDITION_KEY">
- <summary>
- Condition key for whether or not an incoming request is using a secure
- transport to make the request (i.e. HTTPS instead of HTTP).
- <para>
- This condition key should only be used with the boolean overload of NewCondition.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.SOURCE_IP_CONDITION_KEY">
- <summary>
- Condition key for the source IP from which a request originates.
- <para>
- This condition key should only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.IpAddressComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.USER_AGENT_CONDITION_KEY">
- <summary>
- Condition key for the user agent included in a request.
- <para>
- This condition key should only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/>
- enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.EPOCH_TIME_CONDITION_KEY">
- <summary>
- Condition key for the current time, in epoch seconds.
- <para>
- This condition key should only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.NumericComparisonType"/> enum.
- objects.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.REFERRER_CONDITION_KEY">
- <summary>
- Condition key for the referrer specified by a request.
- <para>
- This condition key should only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/>
- objects.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.SOURCE_ARN_CONDITION_KEY">
- <summary>
- Condition key for the Amazon Resource Name (ARN) of the source specified
- in a request. The source ARN indicates which resource is affecting the
- resource listed in your policy. For example, an SNS topic is the source
- ARN when publishing messages from the topic to an SQS queue.
- <para>
- This condition key should only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.ArnComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.SNS_ENDPOINT_CONDITION_KEY">
- <summary>
- Condition key for The URL, e-mail address, or ARN from a Subscribe
- request or a previously confirmed subscription. Use with string
- conditions to restrict access to specific endpoints (e.g.,
- *@mycompany.com).
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.SNS_PROTOCOL_CONDITION_KEY">
- <summary>
- Condition key for the protocol value from a Subscribe request or a
- previously confirmed subscription. Use with string conditions to restrict
- publication to specific delivery protocols (e.g., HTTPS).
- <para>
- This condition key may only be used with <see cref="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType"/> enum.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewCannedACLCondition(Amazon.S3.Model.S3CannedACL)">
- <summary>
- Constructs a new access policy condition that compares an Amazon S3
- canned ACL with the canned ACL specified by an incoming request.
- <para>
- You can use this condition to ensure that any objects uploaded to an
- Amazon S3 bucket have a specific canned ACL set.
- </para>
- </summary>
- <param name="cannedAcl">The Amazon S3 canned ACL to compare against.</param>
- <returns>A new access control policy condition that compares the Amazon S3
- canned ACL specified in incoming requests against the value
- specified.</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewCondition(Amazon.Auth.AccessControlPolicy.ConditionFactory.ArnComparisonType,System.String,System.String)">
- <summary>
- Constructs a new access control policy condition that compares ARNs (Amazon Resource Names).
- </summary>
- <param name="key"> The access policy condition key specifying where to get the first ARN for the comparison</param>
- <param name="type">The type of comparison to perform.</param>
- <param name="value">The second ARN to compare against. When using ArnLike or ArnNotLike this may contain the
- multi-character wildcard (*) or the single-character wildcard</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewCondition(System.String,System.Boolean)">
- <summary>
- Constructs a new access policy condition that performs a boolean
- comparison.
- </summary>
- <param name="key">The access policy condition key specifying where to get the
- first boolean value for the comparison (ex: aws:SecureTransport).</param>
- <param name="value">The boolean to compare against.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewCondition(Amazon.Auth.AccessControlPolicy.ConditionFactory.DateComparisonType,System.DateTime)">
- <summary>
- Constructs a new access policy condition that compares the current time
- (on the AWS servers) to the specified date.
- </summary>
- <param name="type">The type of comparison to perform. For example,
- DateComparisonType.DateLessThan will cause this policy
- condition to evaluate to true if the current date is less than
- the date specified in the second argument.</param>
- <param name="date">The date to compare against.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewIpAddressCondition(System.String)">
- <summary>
- Constructs a new access policy condition that compares the source IP
- address of the incoming request to an AWS service against the specified
- CIDR range. The condition evaluates to true (meaning the policy statement
- containing it will be applied) if the incoming source IP address is
- within that range.
- <para>
- To achieve the opposite effect (i.e. cause the condition to evaluate to
- true when the incoming source IP is <b>not</b> in the specified CIDR
- range) use the alternate constructor form and specify
- IpAddressComparisonType.NotIpAddress.
- </para>
- </summary>
- <param name="ipAddressRange">The CIDR IP range involved in the policy condition.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewCondition(Amazon.Auth.AccessControlPolicy.ConditionFactory.IpAddressComparisonType,System.String)">
- <summary>
- Constructs a new access policy condition that compares the source IP
- address of the incoming request to an AWS service against the specified
- CIDR range. When the condition evaluates to true (i.e. when the incoming
- source IP address is within the CIDR range or not) depends on the
- specified IpAddressComparisonType.
- </summary>
- <param name="type">The type of comparison to to perform.</param>
- <param name="ipAddressRange">The CIDR IP range involved in the policy condition.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewCondition(Amazon.Auth.AccessControlPolicy.ConditionFactory.NumericComparisonType,System.String,System.String)">
- <summary>
- Constructs a new access policy condition that compares two numbers.
- </summary>
- <param name="type">The type of comparison to perform.</param>
- <param name="key">The access policy condition key specifying where to get the
- first number for the comparison.</param>
- <param name="value">The second number to compare against.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewCondition(Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType,System.String,System.String)">
- <summary>
- Constructs a new access control policy condition that compares two
- strings.
- </summary>
- <param name="type">The type of comparison to perform</param>
- <param name="key">The access policy condition key specifying where to get the
- first string for the comparison (ex: aws:UserAgent).
- </param>
- <param name="value">The second string to compare against. When using
- StringComparisonType.StringLike or
- StringComparisonType.StringNotLike this may contain
- the multi-character wildcard (*) or the single-character
- wildcard (?).
- </param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewSourceArnCondition(System.String)">
- <summary>
- Constructs a new access policy condition that compares the Amazon
- Resource Name (ARN) of the source of an AWS resource that is modifying
- another AWS resource with the specified pattern.
- <para>
- For example, the source ARN could be an Amazon SNS topic ARN that is
- sending messages to an Amazon SQS queue. In that case, the SNS topic ARN
- would be compared the ARN pattern specified here.
- </para>
- <para>
- The endpoint pattern may optionally contain the multi-character wildcard
- * (*) or the single-character wildcard (?). Each of the six colon-delimited
- components of the ARN is checked separately and each can include a
- wildcard.
- </para>
- <code>
- Policy policy = new Policy("MyQueuePolicy");
- policy.WithStatements(new Statement(Statement.StatementEffect.Allow)
- .WithPrincipals(new Principal("*")).WithActionIdentifiers(SQSActionIdentifiers.SendMessage)
- .WithResources(new Resource(myQueueArn))
- .WithConditions(ConditionFactory.NewSourceArnCondition(myTopicArn)));
- </code>
- </summary>
- <param name="arnPattern">The ARN pattern against which the source ARN will be compared.
- Each of the six colon-delimited components of the ARN is
- checked separately and each can include a wildcard.</param>
- <returns>A new access control policy condition that compares the ARN of
- the source specified in an incoming request with the ARN pattern
- specified here.</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewSecureTransportCondition">
- <summary>
- Constructs a new access control policy condition that tests if the
- incoming request was sent over a secure transport (HTTPS).
- </summary>
- <returns>A new access control policy condition that tests if the incoming
- request was sent over a secure transport (HTTPS).</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewEndpointCondition(System.String)">
- <summary>
- Constructs a new access policy condition that compares the requested
- endpoint used to subscribe to an Amazon SNS topic with the specified
- endpoint pattern. The endpoint pattern may optionally contain the
- multi-character wildcard (*) or the single-character wildcard (?).
- <para>
- For example, this condition can restrict subscriptions to a topic to
- email addresses in a certain domain ("*@my-company.com").
- </para>
- <code>
- Policy policy = new Policy("MyTopicPolicy");
- policy.WithStatements(new Statement(Statement.StatementEffect.Allow)
- .WithPrincipals(new Principal("*")).WithActionIdentifiers(SNSActionIdentifiers.Subscribe)
- .WithResources(new Resource(myTopicArn))
- .WithConditions(ConditionFactory.NewEndpointCondition("*@my-company.com")));
- </code>
- </summary>
- <param name="endpointPattern">The endpoint pattern against which to compare the requested
- endpoint for an Amazon SNS topic subscription.</param>
- <returns>A new access control policy condition that compares the endpoint
- used in a request to subscribe to an Amazon SNS topic with the
- endpoint pattern specified.</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ConditionFactory.NewProtocolCondition(System.String)">
- <summary>
- Constructs a new AWS access control policy condition that allows an
- access control statement to restrict subscriptions to an Amazon SNS topic
- based on the protocol being used for the subscription. For example, this
- condition can restrict subscriptions to a topic to endpoints using HTTPS
- to ensure that messages are securely delivered.
- </summary>
- <param name="protocol">The protocol against which to compare the requested protocol
- for an Amazon SNS topic subscription.</param>
- <returns>A new access control policy condition that compares the
- notification protocol requested in a request to subscribe to an
- Amazon SNS topic with the protocol value specified.</returns>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.ArnComparisonType">
- <summary>
- Enumeration of the supported ways an ARN comparison can be evaluated.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.ArnComparisonType.ArnEquals">
- <summary>Exact matching</summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.ArnComparisonType.ArnLike">
- <summary>
- Loose case-insensitive matching of the ARN. Each of the six
- colon-delimited components of the ARN is checked separately and each
- can include a multi-character match wildcard (*) or a
- single-character match wildcard (?).
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.ArnComparisonType.ArnNotEquals">
- <summary>Negated form of ArnEquals</summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.ArnComparisonType.ArnNotLike">
- <summary>Negated form of ArnLike</summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.DateComparisonType">
- <summary>
- Enumeration of the supported ways a date comparison can be evaluated.
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.IpAddressComparisonType">
- <summary>
- Enumeration of the supported ways an IP address comparison can be evaluated.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.IpAddressComparisonType.IpAddress">
- <summary>
- Matches an IP address against a CIDR IP range, evaluating to true if
- the IP address being tested is in the condition's specified CIDR IP
- range.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.IpAddressComparisonType.NotIpAddress">
- <summary>
- Negated form of IpAddress
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.NumericComparisonType">
- <summary>
- Enumeration of the supported ways a numeric comparison can be evaluated
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType">
- <summary>
- Enumeration of the supported ways a string comparison can be evaluated.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType.StringEquals">
- <summary>
- Case-sensitive exact string matching
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType.StringEqualsIgnoreCase">
- <summary>
- Case-insensitive string matching
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType.StringLike">
- <summary>
- Loose case-insensitive matching. The values can include a
- multi-character match wildcard (*) or a single-character match
- wildcard (?) anywhere in the string.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType.StringNotEquals">
- <summary>
- Negated form of StringEquals.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType.StringNotEqualsIgnoreCase">
- <summary>
- Negated form of StringEqualsIgnorecase.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.StringComparisonType.StringNotLike">
- <summary>
- Negated form of StringLike.
- </summary>
- </member>
- <member name="T:ThirdParty.BouncyCastle.Asn1.Asn1InputStream">
- a general purpose ASN.1 decoder - note: this class differs from the
- others in that it returns null after it has read the last object in
- the stream. If an ASN.1 Null is encountered a Der/BER Null object is
- returned.
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.Asn1InputStream.#ctor(System.IO.Stream,System.Int32)">
- Create an ASN1InputStream where no DER object will be longer than limit.
-
- @param input stream containing ASN.1 encoded data.
- @param limit maximum size of a DER encoded object.
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.Asn1InputStream.#ctor(System.Byte[])">
- Create an ASN1InputStream based on the input byte array. The length of DER objects in
- the stream is automatically limited to the length of the input array.
-
- @param input array containing ASN.1 encoded data.
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.Asn1InputStream.BuildObject(System.Int32,System.Int32,System.Int32)">
- build an object given its tag and the number of bytes to construct it from.
- </member>
- <member name="T:Amazon.SQS.AmazonSQSConfig">
- <summary>
- Configuration for accessing Amazon SQS service
- </summary>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithSignatureMethod(System.String)">
- <summary>
- Sets the SignatureMethod property
- </summary>
- <param name="signatureMethod">SignatureMethod property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetSignatureMethod">
- <summary>
- Checks if SignatureMethod property is set
- </summary>
- <returns>true if SignatureMethod property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithSignatureVersion(System.String)">
- <summary>
- Sets the SignatureVersion property
- </summary>
- <param name="signatureVersion">SignatureVersion property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetSignatureVersion">
- <summary>
- Checks if SignatureVersion property is set
- </summary>
- <returns>true if SignatureVersion property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithUserAgent(System.String)">
- <summary>
- Sets the UserAgent property
- </summary>
- <param name="userAgent">UserAgent property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetUserAgent">
- <summary>
- Checks if UserAgent property is set
- </summary>
- <returns>true if UserAgent property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithServiceURL(System.String)">
- <summary>
- Sets the ServiceURL property
- </summary>
- <param name="serviceURL">ServiceURL property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetServiceURL">
- <summary>
- Checks if ServiceURL property is set
- </summary>
- <returns>true if ServiceURL property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithProxyHost(System.String)">
- <summary>
- Sets the ProxyHost property
- </summary>
- <param name="proxyHost">ProxyHost property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetProxyHost">
- <summary>
- Checks if ProxyHost property is set
- </summary>
- <returns>true if ProxyHost property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithProxyPort(System.Int32)">
- <summary>
- Sets the ProxyPort property
- </summary>
- <param name="proxyPort">ProxyPort property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetProxyPort">
- <summary>
- Checks if ProxyPort property is set
- </summary>
- <returns>true if ProxyPort property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithMaxErrorRetry(System.Int32)">
- <summary>
- Sets the MaxErrorRetry property
- </summary>
- <param name="maxErrorRetry">MaxErrorRetry property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetMaxErrorRetry">
- <summary>
- Checks if MaxErrorRetry property is set
- </summary>
- <returns>true if MaxErrorRetry property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithUseSecureStringForAwsSecretKey(System.Boolean)">
- <summary>
- Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <param name="fSecure">
- Whether a secure string should be used or not.
- </param>
- <returns>The Config object with the property set</returns>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithProxyUsername(System.String)">
- <summary>
- Sets the ProxyUsername property
- </summary>
- <param name="userName">Value for the ProxyUsername property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetProxyUsername">
- <summary>
- Checks if ProxyUsername property is set
- </summary>
- <returns>true if ProxyUsername property is set</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.WithProxyPassword(System.String)">
- <summary>
- Sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- <param name="password">ProxyPassword property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSConfig.IsSetProxyPassword">
- <summary>
- Checks if ProxyPassword property is set
- </summary>
- <returns>true if ProxyPassword property is set</returns>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.ServiceVersion">
- <summary>
- Gets Service Version
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.SignatureMethod">
- <summary>
- Gets and sets of the signatureMethod property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.SignatureVersion">
- <summary>
- Gets and sets of the SignatureVersion property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.UserAgent">
- <summary>
- Gets and sets of the UserAgent property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.ServiceURL">
- <summary>
- Gets and sets of the ServiceURL property.
- This is an optional property; change it
- only if you want to try a different service
- endpoint or want to switch between https and http.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.ProxyHost">
- <summary>
- Gets and sets of the ProxyHost property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.ProxyPort">
- <summary>
- Gets and sets of the ProxyPort property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.MaxErrorRetry">
- <summary>
- Gets and sets of the MaxErrorRetry property.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.UseSecureStringForAwsSecretKey">
- <summary>
- Gets and Sets the UseSecureStringForAwsSecretKey property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.ProxyUsername">
- <summary>
- Gets and sets the ProxyUsername property.
- Used in conjunction with the ProxyPassword
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- </member>
- <member name="P:Amazon.SQS.AmazonSQSConfig.ProxyPassword">
- <summary>
- Gets and sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.SubscribeResult">
- <summary>
- Encapsulates the result of the Subscribe action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeResult.IsSetSubscriptionArn">
- <summary>
- Checks if SubscriptionArn property is set
- </summary>
- <returns>true if SubscriptionArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SubscribeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SubscribeResult.SubscriptionArn">
- <summary>
- Gets and sets the SubscriptionArn property.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.SendRawEmailResult">
- <summary>
- <para>Represents a unique message ID returned from a successful
- <c>SendRawEmail</c> request.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendRawEmailResult.WithMessageId(System.String)">
- <summary>
- Sets the MessageId property
- </summary>
- <param name="messageId">The value to set for the MessageId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendRawEmailResult.MessageId">
- <summary>
- The unique message identifier returned from the <c>SendRawEmail</c> action.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Destination">
- <summary>
- <para>Represents the destination of the message, consisting of To:,
- CC:, and BCC: fields.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.#ctor">
- <summary>
- Default constructor for a new Destination object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.#ctor(System.Collections.Generic.List{System.String})">
- <summary>
- Constructs a new Destination object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="toAddresses"> The To: field(s) of the message. </param>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.WithToAddresses(System.String[])">
- <summary>
- Adds elements to the ToAddresses collection
- </summary>
- <param name="toAddresses">The values to add to the ToAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.WithToAddresses(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ToAddresses collection
- </summary>
- <param name="toAddresses">The values to add to the ToAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.WithCcAddresses(System.String[])">
- <summary>
- Adds elements to the CcAddresses collection
- </summary>
- <param name="ccAddresses">The values to add to the CcAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.WithCcAddresses(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the CcAddresses collection
- </summary>
- <param name="ccAddresses">The values to add to the CcAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.WithBccAddresses(System.String[])">
- <summary>
- Adds elements to the BccAddresses collection
- </summary>
- <param name="bccAddresses">The values to add to the BccAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Destination.WithBccAddresses(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the BccAddresses collection
- </summary>
- <param name="bccAddresses">The values to add to the BccAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Destination.ToAddresses">
- <summary>
- The To: field(s) of the message.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Destination.CcAddresses">
- <summary>
- The CC: field(s) of the message.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Destination.BccAddresses">
- <summary>
- The BCC: field(s) of the message.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.BatchDeleteAttributesRequest">
- <summary>
- Perform multiple DeleteAttributes operations in a single call. This helps you yield savings in round trips and
- latencies, and enables Amazon SimpleDB to optimize requests, which generally yields better throughput.
-
- Amazon SimpleDB uniquely identifies attributes in an item by their name/value combinations. For example, a
- single item can have the attributes { "first_name", "first_value" } and { "first_name", second_value" }. However,
- it cannot have two attribute instances where both the attribute name and attribute value are the same.
-
- Note: You cannot specify an empty string as an item or attribute name.
-
- The operation succeeds or fails in its entirety. There are no partial deletes.
-
- You can execute multiple BatchDeleteAttributes operations and other operations in parallel. However, large numbers of
- concurrent BatchDeleteAttributes calls can result in Service Unavailable (503) responses.
-
- This operation is vulnerable to exceeding the maximum URL size.
-
- The following limitations are enforced for this operation:
-
- * 256 attribute name-value pairs per item
- * 1 MB request size
- * 1 billion attributes per domain
- * 10 GB of total user data storage per domain
- * 25 item limit per BatchDeleteAttributes operation
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchDeleteAttributesRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain in which to perform the operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchDeleteAttributesRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchDeleteAttributesRequest.WithItem(Amazon.SimpleDB.Model.DeleteableItem[])">
- <summary>
- Sets the Item property
- </summary>
- <param name="list">Items represent individual objects that contain one or more attribute name-value pairs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchDeleteAttributesRequest.IsSetItem">
- <summary>
- Checks if Item property is set
- </summary>
- <returns>true if Item property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.BatchDeleteAttributesRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain in which to perform the operation.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.BatchDeleteAttributesRequest.Item">
- <summary>
- Gets and sets the Item property.
- Items represent individual objects that contain one or more attribute name-value pairs.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.SetNotificationConfigurationResponse">
- <summary>
- The PutBucketPolicyResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DeleteObjectResponse">
- <summary>
- The DeleteObjectResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.DeleteObjectResponse.IsDeleteMarker">
- <summary>
- Gets and sets the IsDeleteMarker property.
- Specifies whether the object deleted was (true) or
- was not (false) a Delete Marker.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.DeleteObjectResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PutBucketWebsiteRequest">
- <summary>
- The PutBucketWebsiteRequest contains the parameters used for the PutBucketWebsiteRequest operation.
- <br />Required Parameters: BucketName, WebsiteConfiguration.IndexDocumentSuffix
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketWebsiteRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket where the website configuration will be put.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketWebsiteRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketWebsiteRequest.WithWebsiteConfiguration(Amazon.S3.Model.WebsiteConfiguration)">
- <summary>
- Sets the WithWebsiteConfiguration property for this request.
- </summary>
- <param name="config">The value that WithWebsiteConfiguration is set to</param>
- <returns>the request with the WebsiteConfiguration set</returns>
- </member>
- <member name="P:Amazon.S3.Model.PutBucketWebsiteRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutBucketWebsiteRequest.WebsiteConfiguration">
- <summary>
- Gets and sets the WebsiteConfiguration property.
-
- This is where the index document suffix and custom error page are defined.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.PendingModifiedValuesUnmarshaller">
- <summary>
- PendingModifiedValues Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ModifyDBParameterGroupRequestMarshaller">
- <summary>
- Modify D B Parameter Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ModifyDBInstanceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ModifyDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBSecurityGroupsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeDBSecurityGroups operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBParameterGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteDBParameterGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBInstanceReadReplicaResultUnmarshaller">
- <summary>
- Result Unmarshaller for CreateDBInstanceReadReplica operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest">
- <summary>
- Container for the parameters to the RevokeDBSecurityGroupIngress operation.
- <para> Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 Security Groups. Required parameters for this API
- are one of CIDRIP or (EC2SecurityGroupName AND EC2SecurityGroupOwnerId). </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.RevokeDBSecurityGroupIngress(Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.WithDBSecurityGroupName(System.String)">
- <summary>
- Sets the DBSecurityGroupName property
- </summary>
- <param name="dBSecurityGroupName">The value to set for the DBSecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.WithCIDRIP(System.String)">
- <summary>
- Sets the CIDRIP property
- </summary>
- <param name="cIDRIP">The value to set for the CIDRIP property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.WithEC2SecurityGroupName(System.String)">
- <summary>
- Sets the EC2SecurityGroupName property
- </summary>
- <param name="eC2SecurityGroupName">The value to set for the EC2SecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.WithEC2SecurityGroupOwnerId(System.String)">
- <summary>
- Sets the EC2SecurityGroupOwnerId property
- </summary>
- <param name="eC2SecurityGroupOwnerId">The value to set for the EC2SecurityGroupOwnerId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.DBSecurityGroupName">
- <summary>
- The name of the DB Security Group to revoke ingress from.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.CIDRIP">
- <summary>
- The IP range to revoke access from. Must be a valid CIDR range. If <c>CIDRIP</c> is specified, <c>EC2SecurityGroupName</c> and
- <c>EC2SecurityGroupOwnerId</c> cannot be provided.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.EC2SecurityGroupName">
- <summary>
- The name of the EC2 Security Group to revoke access from. If <c>EC2SecurityGroupName</c> is specified, <c>EC2SecurityGroupOwnerId</c> must
- also be provided and <c>CIDRIP</c> cannot be provided.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RevokeDBSecurityGroupIngressRequest.EC2SecurityGroupOwnerId">
- <summary>
- The AWS Account Number of the owner of the security group specified in the <c>EC2SecurityGroupName</c> parameter. The AWS Access Key ID is
- not an acceptable value. If <c>EC2SecurityGroupOwnerId</c> is specified <c>EC2SecurityGroupName</c> must also be provided and <c>CIDRIP</c>
- cannot be provided.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeResponse">
- <summary>
- Returns information about the RestoreDBInstanceToPointInTime response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceToPointInTimeResponse.RestoreDBInstanceToPointInTimeResult">
-
- Gets and sets the RestoreDBInstanceToPointInTimeResult property.
- Contains the result of a successful invocation of the RestoreDBInstanceToPointInTime
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.ModifyDBParameterGroupResponse">
- <summary>
- Returns information about the ModifyDBParameterGroupResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBParameterGroupResponse.ModifyDBParameterGroupResult">
- <summary>
- Gets and sets the ModifyDBParameterGroupResult property.
- Contains the result of a successful invocation of the ModifyDBParameterGroup or ResetDBParameterGroup action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.InstanceQuotaExceededException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.InstanceQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new InstanceQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBEngineVersionsRequest">
- <summary>
- Container for the parameters to the DescribeDBEngineVersions operation.
- <para> Returns a list of the available DB engines. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeDBEngineVersions(Amazon.RDS.Model.DescribeDBEngineVersionsRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.WithDBParameterGroupFamily(System.String)">
- <summary>
- Sets the DBParameterGroupFamily property
- </summary>
- <param name="dBParameterGroupFamily">The value to set for the DBParameterGroupFamily property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.WithDefaultOnly(System.Boolean)">
- <summary>
- Sets the DefaultOnly property
- </summary>
- <param name="defaultOnly">The value to set for the DefaultOnly property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.Engine">
- <summary>
- The database engine to return.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.EngineVersion">
- <summary>
- The database engine version to return. Example: <c>5.1.49</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.DBParameterGroupFamily">
- <summary>
- The name of a specific database parameter group family to return details for. Constraints: <ul> <li>Must be 1 to 255 alphanumeric
- characters</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more than the <c>MaxRecords</c> value is available, a marker is included in the
- response so that the following results can be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.Marker">
- <summary>
- The marker provided in the previous request. If this parameter is specified, the response includes records beyond the marker only, up to
- <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBEngineVersionsRequest.DefaultOnly">
- <summary>
- Indicates that only the default version of the specified engine or engine and major version combination is returned.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBInstanceResult">
- <summary>
- The results from the DeleteDBInstance action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBInstanceResult.DBInstance">
-
- Gets and sets the DeleteDBInstanceResult property.
- Contains the result of a successful invocation of the DeleteDBInstance
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBSnapshotRequest">
- <summary>
- Container for the parameters to the CreateDBSnapshot operation.
- <para> Creates a DBSnapshot. The source DBInstance must be in "available" state. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.CreateDBSnapshot(Amazon.RDS.Model.CreateDBSnapshotRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBSnapshotRequest.WithDBSnapshotIdentifier(System.String)">
- <summary>
- Sets the DBSnapshotIdentifier property
- </summary>
- <param name="dBSnapshotIdentifier">The value to set for the DBSnapshotIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBSnapshotRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSnapshotRequest.DBSnapshotIdentifier">
- <summary>
- The identifier for the DB Snapshot. Constraints: <ul> <li>Cannot be null, empty, or blank</li> <li>Must contain from 1 to 255 alphanumeric
- characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li>
- </ul> Example: <c>my-snapshot-id</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSnapshotRequest.DBInstanceIdentifier">
- <summary>
- The DB Instance identifier. This is the unique key that identifies a DB Instance. This parameter isn't case sensitive. Constraints: <ul>
- <li>Must contain from 1 to 63 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen
- or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.JobUnmarshaller">
- <summary>
- Job Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.InvalidJobIdException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.InvalidJobIdException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidJobIdException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.GetStatusResponse">
- <summary>
- Returns information about the GetStatusResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResponse.GetStatusResult">
- <summary>
- Gets and sets the GetStatusResult property.
- Output structure for the GetStatus operation.
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.CancelJobRequest">
- <summary>
- Container for the parameters to the CancelJob operation.
- <para> This operation cancels a specified job. Only the job owner can
- cancel it. The operation fails if the job has already started or is
- complete. </para>
- </summary>
- <seealso cref="M:Amazon.ImportExport.AmazonImportExport.CancelJob(Amazon.ImportExport.Model.CancelJobRequest)"/>
- </member>
- <member name="M:Amazon.ImportExport.Model.CancelJobRequest.WithJobId(System.String)">
- <summary>
- Sets the JobId property
- </summary>
- <param name="jobId">The value to set for the JobId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.CancelJobRequest.JobId">
- <summary>
- A unique identifier which refers to a particular job.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.AmazonImportExportConfig">
- <summary>
- Configuration for accessing AWS Import/Export Service service
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.AmazonImportExportConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateUserRequest">
- <summary>
- Container for the parameters to the UpdateUser operation.
- <para>Updates the name and/or the path of the specified User.</para>
- <para><b>IMPORTANT:</b> You should understand the implications of
- changing a User's path or name. For more information, see Renaming
- Users and Groups in Using AWS Identity and Access Management. </para>
- <para><b>NOTE:</b>To change a User name the requester must have
- appropriate permissions on both the source object and the target
- object. For example, to change Bob to Robert, the entity making the
- request must have permission on Bob and Robert, or must have
- permission on all (*). For more information about permissions, see
- Permissions and Policies. </para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateUser(Amazon.IdentityManagement.Model.UpdateUserRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateUserRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateUserRequest.WithNewPath(System.String)">
- <summary>
- Sets the NewPath property
- </summary>
- <param name="newPath">The value to set for the NewPath property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateUserRequest.WithNewUserName(System.String)">
- <summary>
- Sets the NewUserName property
- </summary>
- <param name="newUserName">The value to set for the NewUserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateUserRequest.UserName">
- <summary>
- Name of the User to update. If you're changing the name of the User, this is the original User name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateUserRequest.NewPath">
- <summary>
- New path for the User. Include this parameter only if you're changing the User's path.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateUserRequest.NewUserName">
- <summary>
- New name for the User. Include this parameter only if you're changing the User's name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetUserPolicyResultUnmarshaller">
- <summary>
- GetUserPolicyResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetServerCertificateResultUnmarshaller">
- <summary>
- GetServerCertificateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetLoginProfileResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetLoginProfile operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteAccessKeyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteAccessKey operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateAccountAliasRequestMarshaller">
- <summary>
- Create Account Alias Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateAccessKeyRequestMarshaller">
- <summary>
- Create Access Key Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListMFADevicesResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListMFADevices action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListMFADevicesResult.WithMFADevices(Amazon.IdentityManagement.Model.MFADevice[])">
- <summary>
- Adds elements to the MFADevices collection
- </summary>
- <param name="mFADevices">The values to add to the MFADevices collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListMFADevicesResult.WithMFADevices(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.MFADevice})">
- <summary>
- Adds elements to the MFADevices collection
- </summary>
- <param name="mFADevices">The values to add to the MFADevices collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListMFADevicesResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListMFADevicesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListMFADevicesResult.MFADevices">
- <summary>
- A list of MFA devices.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListMFADevicesResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more User names to list. If your results were truncated, you can make a subsequent pagination
- request using the <c>Marker</c> request parameter to retrieve more User names in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListMFADevicesResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetUserPolicyResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- GetUserPolicy action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetUserPolicyResult.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetUserPolicyResult.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetUserPolicyResult.WithPolicyDocument(System.String)">
- <summary>
- Sets the PolicyDocument property
- </summary>
- <param name="policyDocument">The value to set for the PolicyDocument property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserPolicyResult.UserName">
- <summary>
- The User the policy is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserPolicyResult.PolicyName">
- <summary>
- The name of the policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserPolicyResult.PolicyDocument">
- <summary>
- The policy document.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 131072</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetGroupResult">
- <summary>
- <para>Contains the result of a successful invocation of the GetGroup
- action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupResult.WithGroup(Amazon.IdentityManagement.Model.Group)">
- <summary>
- Sets the Group property
- </summary>
- <param name="group">The value to set for the Group property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupResult.WithUsers(Amazon.IdentityManagement.Model.User[])">
- <summary>
- Adds elements to the Users collection
- </summary>
- <param name="users">The values to add to the Users collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupResult.WithUsers(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.User})">
- <summary>
- Adds elements to the Users collection
- </summary>
- <param name="users">The values to add to the Users collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupResult.Group">
- <summary>
- Information about the group.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupResult.Users">
- <summary>
- A list of Users in the group.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more User names to list. If your results were truncated, you can make a subsequent pagination
- request using the <c>Marker</c> request parameter to retrieve more User names in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupResult.Marker">
- <summary>
- If IsTruncated is <c>true</c>, then this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteUserResponse">
- <summary>
- Returns information about the DeleteUser response metadata.
- The DeleteUser operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest">
- <summary>
- Container for the parameters to the DeleteSigningCertificate operation.
- <para>Deletes the specified signing certificate associated with the
- specified User.</para> <para>If you do not specify a User name, IAM
- determines the User name implicitly based on the AWS Access Key ID
- signing the request. Because this action works for access keys under
- the AWS Account, you can use this API to manage root credentials even
- if the AWS Account has no associated Users.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteSigningCertificate(Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest.WithCertificateId(System.String)">
- <summary>
- Sets the CertificateId property
- </summary>
- <param name="certificateId">The value to set for the CertificateId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest.UserName">
- <summary>
- Name of the User the signing certificate belongs to.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest.CertificateId">
- <summary>
- ID of the signing certificate to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>24 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateLoginProfileRequest">
- <summary>
- Container for the parameters to the CreateLoginProfile operation.
- <para>Creates a login profile for the specified User, giving the User
- the ability to access AWS services such as the AWS Management Console.
- For more information about login profiles, see Managing Login
- Profiles and MFA Devices in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateLoginProfile(Amazon.IdentityManagement.Model.CreateLoginProfileRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateLoginProfileRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateLoginProfileRequest.WithPassword(System.String)">
- <summary>
- Sets the Password property
- </summary>
- <param name="password">The value to set for the Password property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateLoginProfileRequest.UserName">
- <summary>
- Name of the User to create a login profile for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateLoginProfileRequest.Password">
- <summary>
- The new password for the User name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.StepConfigUnmarshaller">
- <summary>
- StepConfig Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.DescribeJobFlowsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeJobFlows operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.LBCookieStickinessPolicyUnmarshaller">
- <summary>
- LBCookieStickinessPolicy Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeregisterInstancesFromLoadBalancerResultUnmarshaller">
- <summary>
- DeregisterInstancesFromLoadBalancerResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.TooManyPoliciesException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.TooManyPoliciesException.#ctor(System.String)">
- <summary>
- Constructs a new TooManyPoliciesException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DuplicateListenerException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DuplicateListenerException.#ctor(System.String)">
- <summary>
- Constructs a new DuplicateListenerException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest">
- <summary>
- Container for the parameters to the DescribeLoadBalancers operation.
- <para> Returns detailed configuration information for the specified LoadBalancers. If no LoadBalancers are specified, the operation returns
- configuration information for all LoadBalancers created by the caller. </para> <para><b>NOTE:</b> The client must have created the specified
- input LoadBalancers in order to retrieve this information; the client must provide the same account credentials as those that were used to
- create the LoadBalancer. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DescribeLoadBalancers(Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest.#ctor">
- <summary>
- Default constructor for a new DescribeLoadBalancersRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest.#ctor(System.Collections.Generic.List{System.String})">
- <summary>
- Constructs a new DescribeLoadBalancersRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerNames"> A list of names associated with the LoadBalancers at creation time. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest.WithLoadBalancerNames(System.String[])">
- <summary>
- Adds elements to the LoadBalancerNames collection
- </summary>
- <param name="loadBalancerNames">The values to add to the LoadBalancerNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest.WithLoadBalancerNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the LoadBalancerNames collection
- </summary>
- <param name="loadBalancerNames">The values to add to the LoadBalancerNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest.LoadBalancerNames">
- <summary>
- A list of names associated with the LoadBalancers at creation time.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerResponse">
- <summary>
- Returns information about the DeregisterInstancesFromLoadBalancerResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerResponse.DeregisterInstancesFromLoadBalancerResult">
- <summary>
- Gets and sets the DeregisterInstancesFromLoadBalancerResult property.
- The output for the DeregisterInstancesFromLoadBalancer action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersResult">
- <summary>
- <para> The output for the CreateLoadBalancerListeners action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionResult">
- <summary>
- <para> Result message wrapping a single description of an application version. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionResult.WithApplicationVersion(Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription)">
- <summary>
- Sets the ApplicationVersion property
- </summary>
- <param name="applicationVersion">The value to set for the ApplicationVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionResult.ApplicationVersion">
- <summary>
- The <a>ApplicationVersionDescription</a> of the application version.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.SolutionStackDescriptionUnmarshaller">
- <summary>
- SolutionStackDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.LaunchConfigurationUnmarshaller">
- <summary>
- LaunchConfiguration Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEnvironmentsResultUnmarshaller">
- <summary>
- DescribeEnvironmentsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeConfigurationSettingsRequestMarshaller">
- <summary>
- Describe Configuration Settings Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateStorageLocationRequestMarshaller">
- <summary>
- Create Storage Location Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateEnvironmentRequestMarshaller">
- <summary>
- Create Environment Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateApplicationVersionResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateApplicationVersion operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RebuildEnvironmentResponse">
- <summary>
- Returns information about the RebuildEnvironment response metadata.
- The RebuildEnvironment operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResult">
- <summary>
- <para>A list of available AWS Elastic Beanstalk solution stacks. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResult.WithSolutionStacks(System.String[])">
- <summary>
- Adds elements to the SolutionStacks collection
- </summary>
- <param name="solutionStacks">The values to add to the SolutionStacks collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResult.WithSolutionStacks(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the SolutionStacks collection
- </summary>
- <param name="solutionStacks">The values to add to the SolutionStacks collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResult.WithSolutionStackDetails(Amazon.ElasticBeanstalk.Model.SolutionStackDescription[])">
- <summary>
- Adds elements to the SolutionStackDetails collection
- </summary>
- <param name="solutionStackDetails">The values to add to the SolutionStackDetails collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResult.WithSolutionStackDetails(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.SolutionStackDescription})">
- <summary>
- Adds elements to the SolutionStackDetails collection
- </summary>
- <param name="solutionStackDetails">The values to add to the SolutionStackDetails collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResult.SolutionStacks">
- <summary>
- A list of available solution stacks.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksResult.SolutionStackDetails">
- <summary>
- A list of available solution stacks and their <a>SolutionStackDescription</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksRequest">
- <summary>
- Container for the parameters to the ListAvailableSolutionStacks operation.
- <para> Returns a list of the available solution stack names. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.ListAvailableSolutionStacks(Amazon.ElasticBeanstalk.Model.ListAvailableSolutionStacksRequest)"/>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.InvalidParameterCombinationException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.InvalidParameterCombinationException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidParameterCombinationException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResponse">
- <summary>
- Returns information about the CreateEnvironmentResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResponse.CreateEnvironmentResult">
- <summary>
- Gets and sets the CreateEnvironmentResult property.
- Describes the properties of an environment.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResponse">
- <summary>
- Returns information about the CreateConfigurationTemplateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResponse.CreateConfigurationTemplateResult">
- <summary>
- Gets and sets the CreateConfigurationTemplateResult property.
- Describes the settings for a configuration set.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateApplicationRequest">
- <summary>
- Container for the parameters to the CreateApplication operation.
- <para> Creates an application that has one configuration template named <c>default</c> and no application versions. </para>
- <para><b>NOTE:</b> The default configuration template is for a 32-bit version of the Amazon Linux operating system running the Tomcat 6
- application container. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateApplication(Amazon.ElasticBeanstalk.Model.CreateApplicationRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationRequest.ApplicationName">
- <summary>
- The name of the application. Constraint: This name must be unique within your account. If the specified name already exists, the action
- returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationRequest.Description">
- <summary>
- Describes the application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.UnmonitorInstancesResponse">
- <summary>
- Unmonitor Instances Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesResponse.IsSetUnmonitorInstancesResult">
- <summary>
- Checks if UnmonitorInstancesResult property is set
- </summary>
- <returns>true if UnmonitorInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.UnmonitorInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.UnmonitorInstancesResponse.UnmonitorInstancesResult">
- <summary>
- Gets and sets the UnmonitorInstancesResult property.
- Unmonitor Instances Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.WithRouteTableAssociationId(System.String)">
- <summary>
- Sets the RouteTableAssociationId property
- </summary>
- <param name="routeTableAssociationId">An identifier representing the association between a route table and
- a subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.IsSetRouteTableAssociationId">
- <summary>
- Checks if RouteTableAssociationId property is set
- </summary>
- <returns>true if RouteTableAssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The ID of the route table in the association.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">The ID of the subnet in the association.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.WithMain(System.Boolean)">
- <summary>
- Sets the Main property
- </summary>
- <param name="main">Whether this is the main route table.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RouteTableAssociation.IsSetMain">
- <summary>
- Checks if Main property is set
- </summary>
- <returns>true if Main property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTableAssociation.RouteTableAssociationId">
- <summary>
- Gets and sets the RouteTableAssociationId property.
- An identifier representing the association between a route table and
- a subnet.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTableAssociation.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The ID of the route table in the association.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTableAssociation.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- The ID of the subnet in the association.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RouteTableAssociation.Main">
- <summary>
- Gets and sets the Main property.
- Whether this is the main route table.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RevokeSecurityGroupIngressResponse">
- <summary>
- Revoke Security GroupIngress Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResult">
- <summary>
- Purchase Reserved Instances Offering Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResult.IsSetReservedInstancesId">
- <summary>
- Checks if ReservedInstancesId property is set
- </summary>
- <returns>true if ReservedInstancesId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResult.ReservedInstancesId">
- <summary>
- Gets and sets the ReservedInstancesId property.
- The IDs of the purchased Reserved Instances.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest">
- <summary>
- Purchases a Reserved Instance for use with your
- account. With Amazon
- EC2 Reserved Instances, you purchase the right
- to launch Amazon EC2
- instances for a period of time (without
- getting insufficient capacity errors)
- and pay a lower usage rate for
- the actual time used. For more information
- about Reserved Instances,
- go to the Amazon Elastic Compute Cloud
- Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest.WithReservedInstancesOfferingId(System.String)">
- <summary>
- Sets the ReservedInstancesOfferingId property
- </summary>
- <param name="reservedInstancesOfferingId">The offering ID of the Reserved Instance to
- purchase.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest.IsSetReservedInstancesOfferingId">
- <summary>
- Checks if ReservedInstancesOfferingId property is set
- </summary>
- <returns>true if ReservedInstancesOfferingId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest.WithInstanceCount(System.String)">
- <summary>
- Sets the InstanceCount property
- </summary>
- <param name="instanceCount">The number of Reserved Instances to purchase.
- Default: 1</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest.IsSetInstanceCount">
- <summary>
- Checks if InstanceCount property is set
- </summary>
- <returns>true if InstanceCount property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest.ReservedInstancesOfferingId">
- <summary>
- Gets and sets the ReservedInstancesOfferingId property.
- The offering ID of the Reserved Instance to
- purchase.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.PurchaseReservedInstancesOfferingRequest.InstanceCount">
- <summary>
- Gets and sets the InstanceCount property.
- The number of Reserved Instances to purchase.
- Default: 1
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.MonitorInstancesResult">
- <summary>
- Monitor Instances Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesResult.IsSetInstanceMonitoring">
- <summary>
- Checks if InstanceMonitoring property is set
- </summary>
- <returns>true if InstanceMonitoring property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.MonitorInstancesResult.InstanceMonitoring">
- <summary>
- Gets and sets the InstanceMonitoring property.
- Instance monitoring information
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceBlockDeviceMapping">
- <summary>
- Information about the instance block device
- mapping set.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMapping.WithDeviceName(System.String)">
- <summary>
- Sets the DeviceName property
- </summary>
- <param name="deviceName">The device name (e.g., /dev/sdh).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMapping.IsSetDeviceName">
- <summary>
- Checks if DeviceName property is set
- </summary>
- <returns>true if DeviceName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMapping.WithEbs(Amazon.EC2.Model.InstanceEbsBlockDevice)">
- <summary>
- Sets the Ebs property
- </summary>
- <param name="ebs">Ebs property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMapping.IsSetEbs">
- <summary>
- Checks if Ebs property is set
- </summary>
- <returns>true if Ebs property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceBlockDeviceMapping.DeviceName">
- <summary>
- Gets and sets the DeviceName property.
- The device name (e.g., /dev/sdh).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceBlockDeviceMapping.Ebs">
- <summary>
- Gets and sets the Ebs property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportKeyPairResponse">
- <summary>
- The Response for the
- ImportKeyPair operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResponse.IsSetImportKeyPairResult">
- <summary>
- Checks if ImportKeyPairResult property is set
- </summary>
- <returns>true if ImportKeyPairResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportKeyPairResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportKeyPairResponse.ImportKeyPairResult">
- <summary>
- Gets and sets the ImportKeyPairResult property.
- ImportKeyPair Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportKeyPairRequest">
- <summary>
- Imports the public key from an RSA key pair created with a third-party tool.
- This operation differs from CreateKeyPair as the private key is never
- transferred between the caller and AWS servers.
-
- RSA key pairs are easily created on Microsoft Windows and Linux OS systems using
- the ssh-keygen command line tool provided with the standard OpenSSH
- installation. Standard library support for RSA key pair creation is also available
- for Java, Ruby, Python, and many other programming languages.
-
- The following formats are supported:
- - OpenSSH public key format,
- - Base64 encoded DER format.
- - SSH public key file format as specified in
- RFC4716.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairRequest.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">The unique name for the key pair.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairRequest.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairRequest.WithPublicKeyMaterial(System.String)">
- <summary>
- Sets the PublicKeyMaterial property
- </summary>
- <param name="publicKeyMaterial">The public key. This key must be base64 encoded before calling
- this operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportKeyPairRequest.IsSetPublicKeyMaterial">
- <summary>
- Checks if PublicKeyMaterial property is set
- </summary>
- <returns>true if PublicKeyMaterial property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportKeyPairRequest.KeyName">
- <summary>
- Gets and sets the KeyName property.
- The unique name for the key pair.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportKeyPairRequest.PublicKeyMaterial">
- <summary>
- Gets and sets the PublicKeyMaterial property.
- The public key. This key must be base64 encoded before calling
- this operation.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.VirtualizationType">
- <summary>
- Constants for the possible virtualization type.
- <see href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/index.html?ApiReference-query-RunInstances.html"/>
- </summary>
- </member>
- <member name="F:Amazon.EC2.Model.VirtualizationType.Hvm">
- <summary>
- HVM (Hardware Virtual Machine) based virtualization is a type of full virtualization enabled through native
- hardware platform support for virtualization.
- </summary>
- </member>
- <member name="F:Amazon.EC2.Model.VirtualizationType.ParaVirtual">
- <summary>
- PVM (Para-Virtual Machine) based virtualization does not have direct access to the hardware.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.PlacementStrategy">
- <summary>
- Constants for the strategy of a placement group.
- <see href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/index.html?ApiReference_query_CreatePlacementGroup.html"/>
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceType">
- <summary>
- The instance types possible by EC2.
- <see href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/index.html?ApiReference-query-RunInstances.html"/>
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DetachInternetGatewayResponse">
- <summary>
- The Response for the
- DetachInternetGateway operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DetachInternetGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachInternetGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachInternetGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DetachInternetGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpnConnectionsResponse">
- <summary>
- Describe Vpn Connections Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsResponse.IsSetDescribeVpnConnectionsResult">
- <summary>
- Checks if DescribeVpnConnectionsResult property is set
- </summary>
- <returns>true if DescribeVpnConnectionsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnConnectionsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnConnectionsResponse.DescribeVpnConnectionsResult">
- <summary>
- Gets and sets the DescribeVpnConnectionsResult property.
- Describe Vpn Connections Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpcsResponse">
- <summary>
- Describe VPCs Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsResponse.IsSetDescribeVpcsResult">
- <summary>
- Checks if DescribeVpcsResult property is set
- </summary>
- <returns>true if DescribeVpcsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpcsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpcsResponse.DescribeVpcsResult">
- <summary>
- Gets and sets the DescribeVpcsResult property.
- Describe Vpcs Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeKeyPairsResponse">
- <summary>
- DescribeKeyPairsResponse
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsResponse.IsSetDescribeKeyPairsResult">
- <summary>
- Checks if DescribeKeyPairsResult property is set
- </summary>
- <returns>true if DescribeKeyPairsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeKeyPairsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeKeyPairsResponse.DescribeKeyPairsResult">
- <summary>
- Gets and sets the DescribeKeyPairsResult property.
- Describe Key Pairs Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpnGatewayRequest">
- <summary>
- Creates a new VPN gateway. A VPN gateway is the VPC-side endpoint
- for your VPN connection. You can create a VPN gateway before
- creating the VPC itself. AWS might delete any VPN
- gateway that you create with this operation if you leave
- it inactive for an extended period of time (inactive means that
- there's no VPN connection in use with the VPN gateway)
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayRequest.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The type of VPN connection this VPN gateway
- supports. Valid
- Values: ipsec.1</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayRequest.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone where you want the VPN
- gateway.
- Default: AWS selects a zone for you (recommended)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayRequest.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnGatewayRequest.Type">
- <summary>
- Gets and sets the Type property.
- The type of VPN connection this VPN gateway
- supports. Valid
- Values: ipsec.1
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnGatewayRequest.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone where you want the VPN
- gateway.
- Default: AWS selects a zone for you (recommended)
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResult">
- <summary>
- Create Spot Datafeed Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResult.IsSetSpotDatafeedSubscription">
- <summary>
- Checks if SpotDatafeedSubscription property is set
- </summary>
- <returns>true if SpotDatafeedSubscription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionResult.SpotDatafeedSubscription">
- <summary>
- Gets and sets the SpotDatafeedSubscription property.
- Describes the Spot Datafeed subscription.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSnapshotResponse">
- <summary>
- Create Snapshot Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotResponse.IsSetCreateSnapshotResult">
- <summary>
- Checks if CreateSnapshotResult property is set
- </summary>
- <returns>true if CreateSnapshotResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSnapshotResponse.CreateSnapshotResult">
- <summary>
- Gets and sets the CreateSnapshotResult property.
- Create Snapshot Result
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSnapshotResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSecurityGroupResponse">
- <summary>
- Create Security Group Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupResponse.IsSetCreateSecurityGroupResult">
- <summary>
- Checks if CreateSecurityGroupResult property is set
- </summary>
- <returns>true if CreateSecurityGroupResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSecurityGroupResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSecurityGroupResponse.CreateSecurityGroupResult">
- <summary>
- Gets and sets the CreateSecurityGroupResult property.
- CreateSecurityGroup Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateNetworkAclRequest">
- <summary>
- Creates a new network ACL in a VPC. Network ACLs provide an optional layer of security (on top of
- security groups) for the instances in your VPC. For more information about network ACLs, go to Network
- ACLs in the Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC where the network ACL will be created.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC where the network ACL will be created.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateKeyPairRequest">
- <summary>
- Creates a new 2048-bit RSA key pair with the specified name. The public
- key is stored by Amazon EC2 and the private key is displayed on the console.
- The private key is returned as an unencrypted PEM encoded PKCS#8 private key.
- If a key with the specified name already exists, Amazon EC2 returns an error.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairRequest.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">A unique name for the key pair.
-
- Constraints:
- Accepts alphanumeric characters, spaces, dashes, and underscores.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairRequest.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateKeyPairRequest.KeyName">
- <summary>
- Gets and sets the KeyName property.
- A unique name for the key pair.
-
- Constraints:
- Accepts alphanumeric characters, spaces, dashes, and underscores.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelSpotInstanceRequestsRequest">
- <summary>
- Request to cancel existing Spot Instance
- requests.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsRequest.WithSpotInstanceRequestId(System.String[])">
- <summary>
- Sets the SpotInstanceRequestId property
- </summary>
- <param name="list">The list of Spot Instance requests that you
- want to cancel.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsRequest.IsSetSpotInstanceRequestId">
- <summary>
- Checks if SpotInstanceRequestId property is set
- </summary>
- <returns>true if SpotInstanceRequestId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelSpotInstanceRequestsRequest.SpotInstanceRequestId">
- <summary>
- Gets and sets the SpotInstanceRequestId property.
- The list of Spot Instance requests that you
- want to cancel.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachInternetGatewayResponse">
- <summary>
- The Response for the
- AttachInternetGateway operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachInternetGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachInternetGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachInternetGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachInternetGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateRouteTableResult">
- <summary>
- AssociateRouteTable Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableResult.IsSetAssociationId">
- <summary>
- Checks if AssociationId property is set
- </summary>
- <returns>true if AssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateRouteTableResult.AssociationId">
- <summary>
- Gets and sets the AssociationId property.
- ID that AWS provides to represent the association of the route table
- and the subnet.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateDhcpOptionsResponse">
- <summary>
- Associate Dhcp Options Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateDhcpOptionsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateDhcpOptionsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateDhcpOptionsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateDhcpOptionsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.MetricAlarmUnmarshaller">
- <summary>
- MetricAlarm Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.GetMetricStatisticsResultUnmarshaller">
- <summary>
- GetMetricStatisticsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.EnableAlarmActionsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for EnableAlarmActions operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.StatisticSet">
- <summary>
- <para> The <c>StatisticSet</c> data type describes the
- <c>StatisticValues</c> component of MetricDatum, and represents a set
- of statistics that describes a specific metric. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.StatisticSet.WithSampleCount(System.Double)">
- <summary>
- Sets the SampleCount property
- </summary>
- <param name="sampleCount">The value to set for the SampleCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.StatisticSet.WithSum(System.Double)">
- <summary>
- Sets the Sum property
- </summary>
- <param name="sum">The value to set for the Sum property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.StatisticSet.WithMinimum(System.Double)">
- <summary>
- Sets the Minimum property
- </summary>
- <param name="minimum">The value to set for the Minimum property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.StatisticSet.WithMaximum(System.Double)">
- <summary>
- Sets the Maximum property
- </summary>
- <param name="maximum">The value to set for the Maximum property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.StatisticSet.SampleCount">
- <summary>
- The number of samples used for the statistic set.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.StatisticSet.Sum">
- <summary>
- The sum of values for the sample set.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.StatisticSet.Minimum">
- <summary>
- The minimum value of the sample set.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.StatisticSet.Maximum">
- <summary>
- The maximum value of the sample set.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.PutMetricAlarmResponse">
- <summary>
- Returns information about the PutMetricAlarm response metadata.
- The PutMetricAlarm operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Dimension">
- <summary>
- <para> The <c>Dimension</c> data type further expands on the identity
- of a metric using a Name, Value pair. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Dimension.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Dimension.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value to set for the Value property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Dimension.Name">
- <summary>
- The name of the dimension.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Dimension.Value">
- <summary>
- The value representing the dimension measurement
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.AmazonCloudWatchClient">
- <summary>
- Implemenation for accessing AmazonCloudWatch.
-
- Amazon CloudWatch <para>Amazon CloudWatch is a web service that
- enables you to monitor and manage various metrics, as well as
- configure alarm actions based on data from metrics.</para>
- <para>Amazon CloudWatch monitoring enables you to collect, analyze,
- and view system and application metrics so that you can make
- operational and business decisions more quickly and with greater
- confidence. You can use Amazon CloudWatch to collect metrics about
- your AWS resources, such as the performance of your Amazon EC2
- instances. You can also publish your own metrics directly to Amazon
- CloudWatch.</para> <para>Amazon CloudWatch allows you to manage the
- metrics in several ways. If you are publishing your own metrics, you
- can define custom metrics for your own use. If you are registered for
- an AWS product that supports Amazon CloudWatch, the service
- automatically pushes basic metrics to CloudWatch for you. Once Amazon
- CloudWatch contains metrics from either source, you can calculate
- statistics based on that data and graphically visualize those
- statistics in the Amazon CloudWatch Console.</para> <para>Amazon
- CloudWatch alarms help you implement decisions more easily by enabling
- you to do things like send notifications or automatically make changes
- to the resources you are monitoring, based on rules that you define.
- For example, you can create alarms that initiate Auto Scaling and
- Simple Notification Service actions on your behalf. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonCloudWatchClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.#ctor(System.String,System.String,Amazon.CloudWatch.AmazonCloudWatchConfig)">
- <summary>
- Constructs AmazonCloudWatchClient with AWS Access Key ID, AWS Secret Key and an
- AmazonS3 Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonCloudWatchClient Configuration Object</param>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.PutMetricAlarm(Amazon.CloudWatch.Model.PutMetricAlarmRequest)">
- <summary>
- <para> Creates or updates an alarm and associates it with the
- specified Amazon CloudWatch metric. Optionally, this operation can
- associate one or more Amazon Simple Notification Service resources
- with the alarm. </para> <para> When this operation creates an alarm,
- the alarm state is immediately set to <c>INSUFFICIENT_DATA</c> . The
- alarm is evaluated and its <c>StateValue</c> is set appropriately.
- Any actions associated with the <c>StateValue</c> is then executed.
- </para> <para><b>NOTE:</b> When updating an existing alarm, its
- StateValue is left unchanged. </para>
- </summary>
-
- <param name="putMetricAlarmRequest">Container for the necessary
- parameters to execute the PutMetricAlarm service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.PutMetricData(Amazon.CloudWatch.Model.PutMetricDataRequest)">
- <summary>
- <para> Publishes metric data points to Amazon CloudWatch. Amazon
- Cloudwatch associates the data points with the specified metric. If
- the specified metric does not exist, Amazon CloudWatch creates the
- metric. </para> <para><b>NOTE:</b> If you create a metric with the
- PutMetricData action, allow up to fifteen minutes for the metric to
- appear in calls to the ListMetrics action. </para> <para> The size of
- a PutMetricData request is limited to 8 KB for HTTP GET requests and
- 40 KB for HTTP POST requests. </para> <para><b>IMPORTANT:</b> Although
- the Value parameter accepts numbers of type Double, Amazon CloudWatch
- truncates values with very large exponents. Values with base-10
- exponents greater than 126 (1 x 10^126) are truncated. Likewise,
- values with base-10 exponents less than -130 (1 x 10^-130) are also
- truncated. </para>
- </summary>
-
- <param name="putMetricDataRequest">Container for the necessary
- parameters to execute the PutMetricData service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterValueException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InternalServiceException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterCombinationException"/>
- <exception cref="T:Amazon.CloudWatch.Model.MissingRequiredParameterException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.ListMetrics(Amazon.CloudWatch.Model.ListMetricsRequest)">
- <summary>
- <para> Returns a list of valid metrics stored for the AWS account
- owner. Returned metrics can be used with <c>GetMetricStatistics</c> to
- obtain statistical data for a given metric. </para> <para><b>NOTE:</b>
- Up to 500 results are returned for any one call. To retrieve further
- results, use returned NextToken values with subsequent ListMetrics
- operations. </para> <para><b>NOTE:</b> If you create a metric with the
- PutMetricData action, allow up to fifteen minutes for the metric to
- appear in calls to the ListMetrics action. </para>
- </summary>
-
- <param name="listMetricsRequest">Container for the necessary
- parameters to execute the ListMetrics service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the ListMetrics service method, as returned
- by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InternalServiceException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterValueException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.GetMetricStatistics(Amazon.CloudWatch.Model.GetMetricStatisticsRequest)">
- <summary>
- <para> Gets statistics for the specified metric. </para>
- <para><b>NOTE:</b> The maximum number of data points returned from a
- single GetMetricStatistics request is 1,440. If a request is made that
- generates more than 1,440 data points, Amazon CloudWatch returns an
- error. In such a case, alter the request by narrowing the specified
- time range or increasing the specified period. Alternatively, make
- multiple requests across adjacent time ranges. </para> <para> Amazon
- CloudWatch aggregates data points based on the length of the
- <c>period</c> that you specify. For example, if you request statistics
- with a one-minute granularity, Amazon CloudWatch aggregates data
- points with time stamps that fall within the same one-minute period.
- In such a case, the data points queried can greatly outnumber the data
- points returned. </para> <para><b>NOTE:</b> The maximum number of data
- points that can be queried is 50,850; whereas the maximum number of
- data points returned is 1,440. </para> <para> The following examples
- show various statistics allowed by the data point query maximum of
- 50,850 when you call <c>GetMetricStatistics</c> on Amazon EC2
- instances with detailed (one-minute) monitoring enabled: </para>
- <ul>
- <li>Statistics for up to 400 instances for a span of one hour</li>
- <li>Statistics for up to 35 instances over a span of 24 hours</li>
- <li>Statistics for up to 2 instances over a span of 2 weeks</li>
-
- </ul>
- </summary>
-
- <param name="getMetricStatisticsRequest">Container for the necessary
- parameters to execute the GetMetricStatistics service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the GetMetricStatistics service method, as
- returned by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterValueException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InternalServiceException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidParameterCombinationException"/>
- <exception cref="T:Amazon.CloudWatch.Model.MissingRequiredParameterException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.DisableAlarmActions(Amazon.CloudWatch.Model.DisableAlarmActionsRequest)">
- <summary>
- <para> Disables actions for the specified alarms. When an alarm's
- actions are disabled the alarm's state may change, but none of the
- alarm's actions will execute. </para>
- </summary>
-
- <param name="disableAlarmActionsRequest">Container for the necessary
- parameters to execute the DisableAlarmActions service method on
- AmazonCloudWatch.</param>
-
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.DescribeAlarms(Amazon.CloudWatch.Model.DescribeAlarmsRequest)">
- <summary>
- <para> Retrieves alarms with the specified names. If no name is
- specified, all alarms for the user are returned. Alarms can be
- retrieved by using only a prefix for the alarm name, the alarm state,
- or a prefix for any action. </para>
- </summary>
-
- <param name="describeAlarmsRequest">Container for the necessary
- parameters to execute the DescribeAlarms service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the DescribeAlarms service method, as
- returned by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.DescribeAlarmsForMetric(Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest)">
- <summary>
- <para> Retrieves all alarms for a single metric. Specify a statistic,
- period, or unit to filter the set of alarms further. </para>
- </summary>
-
- <param name="describeAlarmsForMetricRequest">Container for the
- necessary parameters to execute the DescribeAlarmsForMetric service
- method on AmazonCloudWatch.</param>
-
- <returns>The response from the DescribeAlarmsForMetric service method,
- as returned by AmazonCloudWatch.</returns>
-
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.DescribeAlarmHistory(Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest)">
- <summary>
- <para> Retrieves history for the specified alarm. Filter alarms by
- date range or item type. If an alarm name is not specified, Amazon
- CloudWatch returns histories for all of the owner's alarms. </para>
- <para><b>NOTE:</b> Amazon CloudWatch retains the history of an alarm
- for two weeks, whether or not you delete the alarm. </para>
- </summary>
-
- <param name="describeAlarmHistoryRequest">Container for the necessary
- parameters to execute the DescribeAlarmHistory service method on
- AmazonCloudWatch.</param>
-
- <returns>The response from the DescribeAlarmHistory service method, as
- returned by AmazonCloudWatch.</returns>
-
- <exception cref="T:Amazon.CloudWatch.Model.InvalidNextTokenException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.EnableAlarmActions(Amazon.CloudWatch.Model.EnableAlarmActionsRequest)">
- <summary>
- <para> Enables actions for the specified alarms. </para>
- </summary>
-
- <param name="enableAlarmActionsRequest">Container for the necessary
- parameters to execute the EnableAlarmActions service method on
- AmazonCloudWatch.</param>
-
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.DeleteAlarms(Amazon.CloudWatch.Model.DeleteAlarmsRequest)">
- <summary>
- <para> Deletes all specified alarms. In the event of an error, no
- alarms are deleted. </para>
- </summary>
-
- <param name="deleteAlarmsRequest">Container for the necessary
- parameters to execute the DeleteAlarms service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.ResourceNotFoundException"/>
- </member>
- <member name="M:Amazon.CloudWatch.AmazonCloudWatchClient.SetAlarmState(Amazon.CloudWatch.Model.SetAlarmStateRequest)">
- <summary>
- <para> Temporarily sets the state of an alarm. When the updated
- <c>StateValue</c> differs from the previous value, the action
- configured for the appropriate state is invoked. This is not a
- permanent change. The next periodic alarm check (in about a minute)
- will set the alarm to its actual state. </para>
- </summary>
-
- <param name="setAlarmStateRequest">Container for the necessary
- parameters to execute the SetAlarmState service method on
- AmazonCloudWatch.</param>
-
- <exception cref="T:Amazon.CloudWatch.Model.ResourceNotFoundException"/>
- <exception cref="T:Amazon.CloudWatch.Model.InvalidFormatException"/>
- </member>
- <member name="T:Amazon.CloudFront.Model.SetDistributionConfigRequest">
- <summary>
- The SetDistributionConfigRequest contains the parameters used for the
- SetDistributionConfig operation.
- The ETag parameter is used if you wish to specify the ETag to match with the
- ETag of the Distribution with the Id specified.
- <br />Required Parameters: Id
- <br />Required Parameters: DistributionConfig
- <br />Required Parameters: ETag of the Distribution. This
- can be retrieved via a call to GetDistibutionInfo
- </summary>
- <remarks>
- If you want to serve private content, you need to:
- <list type="bullet">
- <item>Associate an Origin Access Identity with the DistributionConfig</item>
- <item>Associate TrustedSigners with the DistributionConfig if you want to
- serve content via Signed URLs</item>
- </list>
- </remarks>
- <seealso cref="T:Amazon.CloudFront.Model.CloudFrontDistributionConfig"/>
- <seealso cref="T:Amazon.CloudFront.Model.UrlTrustedSigners"/>
- <seealso cref="P:Amazon.CloudFront.Model.CloudFrontDistributionConfig.OriginAccessIdentity"/>
- <seealso cref="P:Amazon.CloudFront.Model.CloudFrontDistributionConfig.TrustedSigners"/>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetDistributionConfigRequest.WithId(System.String)">
- <summary>
- Sets the Id property for this request.
- This is the CloudFront Distribution Id that will be reconfigured
- by this request.
- </summary>
- <param name="id">The value that Id is set to</param>
- <returns>the request with the Id set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetDistributionConfigRequest.WithDistributionConfig(Amazon.CloudFront.Model.CloudFrontDistributionConfig)">
- <summary>
- Sets the DistributionConfig property for this request.
- </summary>
- <param name="distributionConfig">The value that DistributionConfig is set to</param>
- <returns>the request with the Configuration set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetDistributionConfigRequest.WithETag(System.String)">
- <summary>
- Sets the ETag property for this request.
- This is the ETag of the CloudFront Distribution which will be reconfigured.
- </summary>
- <param name="etag">The value that ETag is set to</param>
- <returns>the request with the ETag set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetDistributionConfigRequest.Id">
- <summary>
- Gets and sets the Id property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetDistributionConfigRequest.DistributionConfig">
- <summary>
- Gets and Sets the DistributionConfig property.
- The CloudFront Distribution's configuration will be modified
- to reflect the values in this configuration object.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetDistributionConfigRequest.ETag">
- <summary>
- Gets and sets the ETag property. This should be the ETag of the Distribution.
- <see cref="P:Amazon.CloudFront.Model.CloudFrontDistribution.ETag"/>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.InvalidationBatch">
- <summary>
- Contains a list of paths to objects that are to be invalidated and a CallerReference to ensure the request can't be replayed.
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/index.html?InvalidationBatchDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.InvalidationBatch.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.InvalidationBatch.#ctor(System.String)">
- <summary>
- Constructs and instance of InvalidationBatch with a callerReference.
- </summary>
- <param name="callerReference">A unique name that ensures the request can't be replayed.</param>
- </member>
- <member name="M:Amazon.CloudFront.Model.InvalidationBatch.#ctor(System.String,System.Collections.Generic.List{System.String})">
- <summary>
- Constructs and instance of InvalidationBatch with a callerReference and a list of paths to objects.
- </summary>
- <param name="callerReference">A unique name that ensures the request can't be replayed.</param>
- <param name="paths">A list of paths to objects that will be invalidated.</param>
- </member>
- <member name="M:Amazon.CloudFront.Model.InvalidationBatch.WithCallerReference(System.String)">
- <summary>
- Sets the CallerReference property and returns back this instance to chain method calls.
- </summary>
- <param name="callerReference">A unique name that ensures the request can't be replayed.</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.InvalidationBatch.WithPaths(System.String[])">
- <summary>
- Adds paths to the collection of path strings and returns back this instance to chain method calls.
- </summary>
- <param name="path">A list of paths to objects that will be invalidated</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.InvalidationBatch.WithPaths(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds paths to the collection of path strings and returns back this instance to chain method calls.
- </summary>
- <param name="paths">A list of paths to objects that will be invalidated</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.InvalidationBatch.ToString">
- <summary>
- Creates a XML representation of this object and returns it back as a string.
- </summary>
- <returns>A XML string representing this object.</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.InvalidationBatch.CallerReference">
- <summary>
- Gets and Sets the CallerReference property a unique name that ensures the request can't be replayed.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.InvalidationBatch.Paths">
- <summary>
- Gets and Sets the Paths property which is a list of paths to objects that will be invalidated.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetInvalidationRequest">
- <summary>
- The GetInvalidationRequest contains the parameters used for the GetInvalidation operation.
- <br />Required Parameter: DistributionId, InvalidationId
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetInvalidationRequest.WithInvalidationId(System.String)">
- <summary>
- Sets the InvalidationId property of this request to the value passed in.
- </summary>
- <param name="invalidationId">The invalidation's id</param>
- <returns>The request with the InvalidationId property set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetInvalidationRequest.WithDistributionId(System.String)">
- <summary>
- Sets the DistributionId property of this request to the value passed in.
- </summary>
- <param name="distributionId">The distribution's id</param>
- <returns>The request with the DistributionId property set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetInvalidationRequest.WithDistribtionId(System.String)">
- <summary>
- Sets the DistributionId property of this request to the value passed in.
- </summary>
- <param name="distributionId">The distribution's id</param>
- <returns>The request with the DistributionId property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationRequest.InvalidationId">
- <summary>
- Gets and Sets the InvalidationId property for the invalidation
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationRequest.DistributionId">
- <summary>
- Gets and Sets the DistributionId property for the Distribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetInvalidationListRequest">
- <summary>
- The GetInvalidationListRequest contains the parameters used for the GetInvalidationList operation.
- <br />Required Parameter: DistributionId
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetInvalidationListRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property for this request.
- All keys returned will be lexiographically after the marker.
- </summary>
- <param name="marker">the value that Marker is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetInvalidationListRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property for this request.
- Limits the result set of keys to MaxItems.
- </summary>
- <param name="maxItems">the value that MaxItems is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetInvalidationListRequest.WithDistributionId(System.String)">
- <summary>
- Sets the DistributionId property of this request to the value passed in.
- </summary>
- <param name="distributionId">The distribution's id</param>
- <returns>The request with the DistributionId property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListRequest.Marker">
- <summary>
- Gets and sets the Marker property.
- All keys returned will be lexiographically after the marker.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListRequest.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- Limits the result set of keys to MaxItems.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListRequest.DistributionId">
- <summary>
- Gets and Sets the DistributionId property for the Distribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.DeleteStreamingDistributionResponse">
- <summary>
- The DeleteStreamingDistributionResponse contains any headers returned by CloudFront.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ListStacksResult">
- <summary>List Stacks Result
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStacksResult.WithStackSummaries(Amazon.CloudFormation.Model.StackSummary[])">
- <summary>
- Adds elements to the StackSummaries collection
- </summary>
- <param name="stackSummaries">The values to add to the StackSummaries collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStacksResult.WithStackSummaries(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.StackSummary})">
- <summary>
- Adds elements to the StackSummaries collection
- </summary>
- <param name="stackSummaries">The values to add to the StackSummaries collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStacksResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ListStacksResponse">
- <summary>
- Returns information about the ListStacksResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ListStacksResponse.ListStacksResult">
- <summary>
- Gets and sets the ListStacksResult property.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStacksRequest">
- <summary>
- Container for the parameters to the DescribeStacks operation.
- <para> Returns the description for the specified stack; if no stack name was specified, then it returns the description for all the stacks
- created. </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStacks(Amazon.CloudFormation.Model.DescribeStacksRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStacksRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStacksRequest.StackName">
- <summary>
- The name or the unique identifier associated with the stack. Default: There is no default value.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScheduledActionsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeScheduledActions operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScalingProcessTypesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeScalingProcessTypes operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingNotificationTypesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeAutoScalingNotificationTypes operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAdjustmentTypesRequestMarshaller">
- <summary>
- Describe Adjustment Types Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.SetDesiredCapacityResponse">
- <summary>
- Returns information about the SetDesiredCapacity response metadata.
- The SetDesiredCapacity operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionResponse">
- <summary>
- Returns information about the PutScheduledUpdateGroupAction response metadata.
- The PutScheduledUpdateGroupAction operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.PutScalingPolicyResult">
- <summary>
- <para> The PolicyARNType data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScalingPolicyResult.WithPolicyARN(System.String)">
- <summary>
- Sets the PolicyARN property
- </summary>
- <param name="policyARN">The value to set for the PolicyARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScalingPolicyResult.PolicyARN">
- <summary>
- A policy's Amazon Resource Name (ARN).
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Ebs">
- <summary>
- <para>The Ebs data type.</para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Ebs.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The value to set for the SnapshotId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Ebs.WithVolumeSize(System.Int32)">
- <summary>
- Sets the VolumeSize property
- </summary>
- <param name="volumeSize">The value to set for the VolumeSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Ebs.SnapshotId">
- <summary>
- The Snapshot ID.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Ebs.VolumeSize">
- <summary>
- The volume size, in GigaBytes.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScalingProcessTypesResponse">
- <summary>
- Returns information about the DescribeScalingProcessTypesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingProcessTypesResponse.DescribeScalingProcessTypesResult">
- <summary>
- Gets and sets the DescribeScalingProcessTypesResult property.
- The output of the DescribeScalingProcessTypes action.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAdjustmentTypesResult">
- <summary>
- <para> The output of the DescribeAdjustmentTypes action. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAdjustmentTypesResult.WithAdjustmentTypes(Amazon.AutoScaling.Model.AdjustmentType[])">
- <summary>
- Adds elements to the AdjustmentTypes collection
- </summary>
- <param name="adjustmentTypes">The values to add to the AdjustmentTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAdjustmentTypesResult.WithAdjustmentTypes(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.AdjustmentType})">
- <summary>
- Adds elements to the AdjustmentTypes collection
- </summary>
- <param name="adjustmentTypes">The values to add to the AdjustmentTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAdjustmentTypesResult.AdjustmentTypes">
- <summary>
- A list of specific policy adjustment types.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Activity">
- <summary>
- <para> A Scaling Activity is a long-running process that represents a change to your AutoScalingGroup, such as changing the size of the
- group. It can also be a process to replace an instance, or a process to perform any other long-running operations supported by the API.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithActivityId(System.String)">
- <summary>
- Sets the ActivityId property
- </summary>
- <param name="activityId">The value to set for the ActivityId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithCause(System.String)">
- <summary>
- Sets the Cause property
- </summary>
- <param name="cause">The value to set for the Cause property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithStartTime(System.DateTime)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The value to set for the StartTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithEndTime(System.DateTime)">
- <summary>
- Sets the EndTime property
- </summary>
- <param name="endTime">The value to set for the EndTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithStatusCode(System.String)">
- <summary>
- Sets the StatusCode property
- </summary>
- <param name="statusCode">The value to set for the StatusCode property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithStatusMessage(System.String)">
- <summary>
- Sets the StatusMessage property
- </summary>
- <param name="statusMessage">The value to set for the StatusMessage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Activity.WithProgress(System.Int32)">
- <summary>
- Sets the Progress property
- </summary>
- <param name="progress">The value to set for the Progress property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.ActivityId">
- <summary>
- Specifies the ID of the activity.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.Description">
- <summary>
- Contains a friendly, more verbose description of the scaling activity.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.Cause">
- <summary>
- Contains the reason the activity was begun.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1023</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.StartTime">
- <summary>
- Provides the start time of this activity.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.EndTime">
- <summary>
- Provides the end time of this activity.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.StatusCode">
- <summary>
- Contains the current status of the activity.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.StatusMessage">
- <summary>
- Contains a friendly, more verbose description of the activity status.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Activity.Progress">
- <summary>
- Specifies a value between 0 and 100 that indicates the progress of the activity.
-
- </summary>
- </member>
- <member name="T:Amazon.AWSClientFactory">
- <summary>
- The Amazon Web Services SDK provides devlopers with a coherent and unified interface to the
- suite of Amazon Web Services. The intent is to facilitate the rapid building of
- applications that leverage multiple Amazon Web Services.
- <para>
- To get started, request an instance of the AWSClientFactory via this class's static Instance
- member. Use the factory instance to create clients for all the Web Services needed by
- the application.</para>
- </summary>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonEC2Client(System.String,System.String)">
- <summary>
- Create a client for the Amazon EC2 Service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon EC2 client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonEC2Client(System.String,System.String,Amazon.EC2.AmazonEC2Config)">
- <summary>
- Create a client for the Amazon EC2 Service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon EC2 client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSimpleDBClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon SimpleDB Service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon SimpleDB client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSimpleDBClient(System.String,System.String,Amazon.SimpleDB.AmazonSimpleDBConfig)">
- <summary>
- Create a client for the Amazon SimpleDB Service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon SimpleDB client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonElasticMapReduceClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon ElasticMapReduce service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon ElasticMaReduce client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonElasticMapReduceClient(System.String,System.String,Amazon.ElasticMapReduce.AmazonElasticMapReduceConfig)">
- <summary>
- Create a client for the Amazon ElasticMapReduce service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon ElasticMapReduce client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSQSClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon SQS service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon SQS client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSQSClient(System.String,System.String,Amazon.SQS.AmazonSQSConfig)">
- <summary>
- Create a client for the Amazon SQS service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon SQS client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonCloudWatchClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon CloudWatch service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon CloudWatch client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonCloudWatchClient(System.String,System.String,Amazon.CloudWatch.AmazonCloudWatchConfig)">
- <summary>
- Create a client for the Amazon CloudWatch service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon SQS client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonElasticLoadBalancingClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon Elastic Load Balancing service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon Elastic Load Balancing client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonElasticLoadBalancingClient(System.String,System.String,Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingConfig)">
- <summary>
- Create a client for the Amazon Elastic Load Balancing service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon Elastic Load Balancing client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonAutoScalingClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon Auto Scaling service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon Auto Scaling client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonAutoScalingClient(System.String,System.String,Amazon.AutoScaling.AmazonAutoScalingConfig)">
- <summary>
- Create a client for the Amazon Auto Scaling service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon Auto Scaling client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonS3Client(System.String,System.String)">
- <summary>
- Create a client for the Amazon S3 service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon S3 client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonS3Client(System.String,System.String,Amazon.S3.AmazonS3Config)">
- <summary>
- Create a client for the Amazon S3 service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon S3 client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonRDSClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon RDS service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon RDS client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonRDSClient(System.String,System.String,Amazon.RDS.AmazonRDSConfig)">
- <summary>
- Create a client for the Amazon RDS service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon RDS client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonCloudFrontClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon CloudFront service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon CloudFront client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonCloudFrontClient(System.String,System.String,Amazon.CloudFront.AmazonCloudFrontConfig)">
- <summary>
- Create a client for the Amazon CloudFront service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon CloudFront client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSNSClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon SNS service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon SNS client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSNSClient(System.String,System.String,Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig)">
- <summary>
- Create a client for the Amazon SNS service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon SNS client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonIdentityManagementClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon Identity Management service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon Identity Management client</returns>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonIdentityManagementClient(System.String,System.String,Amazon.IdentityManagement.AmazonIdentityManagementServiceConfig)">
- <summary>
- Create a client for the Amazon Identity Management service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service</param>
- <returns>An Amazon Identity Management client</returns>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonElasticBeanstalkClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon ElasticBeanstalk Service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon ElasticBeanstalk client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonElasticBeanstalkClient(System.String,System.String,Amazon.ElasticBeanstalk.AmazonElasticBeanstalkConfig)">
- <summary>
- Create a client for the Amazon ElasticBeanstalk Service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon ElasticBeanstalk client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSimpleEmailServiceClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon Simple Email Service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon Simple Email Service client</returns>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonSimpleEmailServiceClient(System.String,System.String,Amazon.SimpleEmail.AmazonSimpleEmailServiceConfig)">
- <summary>
- Create a client for the Amazon Simple Email Service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service</param>
- <returns>An Amazon Simple Email Service client</returns>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonCloudFormationClient(System.String,System.String)">
- <summary>
- Create a client for the Amazon CloudFormation Service with the default configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <returns>An Amazon CloudFormation client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="M:Amazon.AWSClientFactory.CreateAmazonCloudFormationClient(System.String,System.String,Amazon.CloudFormation.AmazonCloudFormationConfig)">
- <summary>
- Create a client for the Amazon CloudFormation Service with the specified configuration
- </summary>
- <param name="awsAccessKey">The AWS Access Key associated with the account</param>
- <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
- <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
- </param>
- <returns>An Amazon CloudFormation client</returns>
- <remarks>
- </remarks>
- </member>
- <member name="T:Amazon.SQS.Model.DeleteQueueRequest">
- <summary>
- The DeleteQueue action deletes the queue specified by the queue URL, regardless of whether the queue is empty.
- If the specified queue does not exist, SQS returns a successful response. Use DeleteQueue with care; once you
- delete your queue, any messages in the queue are no longer available.
-
- When you delete a queue, the deletion process takes up to 60 seconds. Requests you send involving that queue
- during the 60 seconds might succeed. For example, a SendMessage request might succeed, but after the 60 seconds,
- the queue and that message you sent no longer exist. Also, when you delete a queue, you must wait at least 60 seconds
- before creating a queue with the same name.
-
- We reserve the right to delete queues that have had no activity for more than 30 days.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteQueueRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteQueueRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteQueueRequest.WithAttribute(Amazon.SQS.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Name and value pair of an attribute associated with the queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteQueueRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.DeleteQueueRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.DeleteQueueRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.CreateQueueResponse">
- <summary>
- Returns information about the created queue, including queue URL and request metadata.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueResponse.IsSetCreateQueueResult">
- <summary>
- Checks if CreateQueueResult property is set
- </summary>
- <returns>true if CreateQueueResult property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.CreateQueueResponse.CreateQueueResult">
- <summary>
- Gets and sets the CreateQueueResult property.
- Information returned by the CreateQueueRequest, including queue URL.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.CreateQueueResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.Subscription">
- <summary>
- A wrapper type for the attributes of an SNS subscription.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.WithSubscriptionArn(System.String)">
- <summary>
- Sets the SubscriptionArn property
- </summary>
- <param name="subscriptionArn">The subscription's ARN.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.IsSetSubscriptionArn">
- <summary>
- Checks if SubscriptionArn property is set
- </summary>
- <returns>true if SubscriptionArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.WithOwner(System.String)">
- <summary>
- Sets the Owner property
- </summary>
- <param name="owner">The subscription's owner.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.IsSetOwner">
- <summary>
- Checks if Owner property is set
- </summary>
- <returns>true if Owner property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.WithProtocol(System.String)">
- <summary>
- Sets the Protocol property
- </summary>
- <param name="protocol">The subscription's protocol.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.IsSetProtocol">
- <summary>
- Checks if Protocol property is set
- </summary>
- <returns>true if Protocol property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.WithEndpoint(System.String)">
- <summary>
- Sets the Endpoint property
- </summary>
- <param name="endpoint">The subscription's endpoint (format depends on the protocol).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.IsSetEndpoint">
- <summary>
- Checks if Endpoint property is set
- </summary>
- <returns>true if Endpoint property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The ARN of the subscription's topic.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Subscription.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Subscription.SubscriptionArn">
- <summary>
- Gets and sets the SubscriptionArn property.
- The subscription's ARN.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Subscription.Owner">
- <summary>
- Gets and sets the Owner property.
- The subscription's owner.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Subscription.Protocol">
- <summary>
- Gets and sets the Protocol property.
- The subscription's protocol.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Subscription.Endpoint">
- <summary>
- Gets and sets the Endpoint property.
- The subscription's endpoint (format depends on the protocol).
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Subscription.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The ARN of the subscription's topic.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.CreateTopicResponse">
- <summary>
- Encapsulates the metadata and result of the CreateTopic action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicResponse.IsSetCreateTopicResult">
- <summary>
- Checks if CreateTopicResult property is set
- </summary>
- <returns>true if CreateTopicResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.CreateTopicResponse.CreateTopicResult">
- <summary>
- Gets and sets the CreateTopicResult property.
- Encapsulates the result of the CreateTopic action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.CreateTopicResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.SendRawEmailResultUnmarshaller">
- <summary>
- SendRawEmailResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.GetSendQuotaResultUnmarshaller">
- <summary>
- GetSendQuotaResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.GetSendQuotaRequest">
- <summary>
- Container for the parameters to the GetSendQuota operation.
- <para>Returns the user's current activity limits.</para>
- </summary>
- <seealso cref="M:Amazon.SimpleEmail.AmazonSimpleEmailService.GetSendQuota(Amazon.SimpleEmail.Model.GetSendQuotaRequest)"/>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.DeleteVerifiedEmailAddressResponse">
- <summary>
- Returns information about the DeleteVerifiedEmailAddress response metadata.
- The DeleteVerifiedEmailAddress operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.AmazonSimpleEmailService">
- <summary>
- Interface for accessing AmazonSimpleEmailService.
-
- Amazon Simple Email Service <para> This is the API Reference for
- Amazon Simple Email Service (Amazon SES). This documentation is
- intended to be used in conjunction with the Amazon SES Getting Started
- Guide and the Amazon SES Developer Guide. </para> <para> For specific
- details on how to construct a service request, please consult the
- Amazon SES Developer Guide. </para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailService.GetSendQuota(Amazon.SimpleEmail.Model.GetSendQuotaRequest)">
- <summary>
- <para>Returns the user's current activity limits.</para>
- </summary>
-
- <param name="getSendQuotaRequest">Container for the necessary
- parameters to execute the GetSendQuota service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the GetSendQuota service method, as
- returned by AmazonSimpleEmailService.</returns>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailService.ListVerifiedEmailAddresses(Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesRequest)">
- <summary>
- <para>Returns a list containing all of the email addresses that have
- been verified.</para>
- </summary>
-
- <param name="listVerifiedEmailAddressesRequest">Container for the
- necessary parameters to execute the ListVerifiedEmailAddresses service
- method on AmazonSimpleEmailService.</param>
-
- <returns>The response from the ListVerifiedEmailAddresses service
- method, as returned by AmazonSimpleEmailService.</returns>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailService.GetSendStatistics(Amazon.SimpleEmail.Model.GetSendStatisticsRequest)">
- <summary>
- <para>Returns the user's sending statistics. The result is a list of
- data points, representing the last two weeks of sending
- activity.</para> <para>Each data point in the list contains statistics
- for a 15-minute interval.</para>
- </summary>
-
- <param name="getSendStatisticsRequest">Container for the necessary
- parameters to execute the GetSendStatistics service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the GetSendStatistics service method, as
- returned by AmazonSimpleEmailService.</returns>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailService.SendEmail(Amazon.SimpleEmail.Model.SendEmailRequest)">
- <summary>
- <para>Composes an email message, based on input data, and then
- immediately queues the message for sending.</para>
- </summary>
-
- <param name="sendEmailRequest">Container for the necessary parameters
- to execute the SendEmail service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the SendEmail service method, as returned
- by AmazonSimpleEmailService.</returns>
-
- <exception cref="T:Amazon.SimpleEmail.Model.MessageRejectedException"/>
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailService.DeleteVerifiedEmailAddress(Amazon.SimpleEmail.Model.DeleteVerifiedEmailAddressRequest)">
- <summary>
- <para>Deletes the specified email address from the list of verified
- addresses.</para>
- </summary>
-
- <param name="deleteVerifiedEmailAddressRequest">Container for the
- necessary parameters to execute the DeleteVerifiedEmailAddress service
- method on AmazonSimpleEmailService.</param>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailService.VerifyEmailAddress(Amazon.SimpleEmail.Model.VerifyEmailAddressRequest)">
- <summary>
- <para>Verifies an email address. This action causes a confirmation
- email message to be sent to the specified address.</para>
- </summary>
-
- <param name="verifyEmailAddressRequest">Container for the necessary
- parameters to execute the VerifyEmailAddress service method on
- AmazonSimpleEmailService.</param>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailService.SendRawEmail(Amazon.SimpleEmail.Model.SendRawEmailRequest)">
- <summary>
- <para>Sends an email message, with header and content specified by the
- client. The <c>SendRawEmail</c> action is useful for sending multipart
- MIME emails, with attachments or inline content.</para> <para>The raw
- text of the message must comply with Internet email standards;
- otherwise, the message cannot be sent. For more information, go to
- the Amazon SES Developer Guide.</para>
- </summary>
-
- <param name="sendRawEmailRequest">Container for the necessary
- parameters to execute the SendRawEmail service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the SendRawEmail service method, as
- returned by AmazonSimpleEmailService.</returns>
-
- <exception cref="T:Amazon.SimpleEmail.Model.MessageRejectedException"/>
- </member>
- <member name="T:Amazon.S3.Model.ListObjectsResponse">
- <summary>
- The ListObjectsResponse contains the list of S3Objects in the bucket and
- any headers returned by S3.
- </summary>
- <seealso cref="T:Amazon.S3.Model.ListObjectsRequest"/>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.Name">
- <summary>
- Gets and sets the Name property.
- The bucket's name.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.Prefix">
- <summary>
- Gets and sets the Prefix property.
- Keys that begin with the indicated prefix are listed.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.S3Objects">
- <summary>
- Gets the S3Objects property. This is a list of
- objects in the bucket that match your search criteria.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.NextMarker">
- <summary>
- Gets and sets the NextMarker property.
- NextMarker is set by S3 only if a Delimiter was specified
- in the original ListObjects request. If a delimiter was
- not specified, the AWS SDK for .NET returns the last Key
- of the List of Objects retrieved from S3 as the NextMarker.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.MaxKeys">
- <summary>
- Gets and sets the MaxKeys property.
- This is the maximum number of keys in the S3Objects collection.
- The value is derived from the MaxKeys parameter to ListObjectsRequest.
- </summary>
- <seealso cref="P:Amazon.S3.Model.ListObjectsRequest.MaxKeys"/>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.Delimiter">
- <summary>
- Gets and sets the Delimiter property.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- </summary>
- <remarks>
- These rolled-up keys are not returned elsewhere in the response.
- </remarks>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.CommonPrefixes">
- <summary>
- Gets the CommonPrefixes property.
- A response can contain CommonPrefixes only if you specify a delimiter.
- When you do, CommonPrefixes contains all (if there are any) keys between
- Prefix and the next occurrence of the string specified by delimiter. In effect,
- CommonPrefixes lists keys that act like subdirectories in the directory specified
- by Prefix. For example, if prefix is notes/ and delimiter is a slash (/), in
- notes/summer/july, the common prefix is notes/summer/.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.CommonPrefix">
- <summary>
- Returns the list of common prefixes returned by S3.
- This property has been deprecated. Please use the
- CommonPrefixes property instead.
- <see cref="P:Amazon.S3.Model.ListObjectsResponse.CommonPrefixes"/>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsResponse.IsTruncated">
- <summary>
- Gets and Sets the IsTruncated property.
- This property governs whether
- this is the last set of items that match the
- specified criteria or whether you need to make
- another call to S3 to retrieve more keys.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetObjectResponse">
- <summary>
- The GetObjectResponse contains any header or metadata returned by S3.
- GetObjectResponse's contain resources that need to be disposed. The
- recommended way for handling GetObjectResponse objects is wrapping them
- in using clauses, like so:
- <code>
- using (GetObjectResponse response = s3Client.GetObject(request))
- {
- ...
- }
- </code>
- This will ensure that any network resources, file streams and web headers
- have been returned back to the system for future use.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectResponse.WriteResponseStreamToFile(System.String)">
- <summary>
- Writes the content of the ResponseStream a file indicated by the filePath argument.
- </summary>
- <param name="filePath">The location where to write the ResponseStream</param>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectResponse.WithSubscriber(System.EventHandler{Amazon.S3.Model.WriteObjectProgressArgs})">
- <summary>
- The "handler" will be notified every time a put
- object progress event is raised.
- </summary>
- <param name="handler">A method that consumes the put object progress notification</param>
- <returns>this instance of the PutObjectRequest</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectResponse.OnRaiseProgressEvent(System.Int64,System.Int64,System.Int64)">
- <summary>
- This method is called by a producer of write object progress
- notifications. When called, all the subscribers in the
- invocation list will be called sequentially.
- </summary>
- <param name="incrementTransferred">The number of bytes transferred since last event</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectResponse.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectResponse.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectResponse.ContentType">
- <summary>
- Gets and sets the ContentType property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectResponse.ContentLength">
- <summary>
- Gets and sets the ContentLength property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectResponse.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the version-id of the S3 object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="E:Amazon.S3.Model.GetObjectResponse.WriteObjectProgressEvent">
- <summary>
- The event for Write Object progress notifications. All
- subscribers will be notified when a new progress
- event is raised.
- </summary>
- <remarks>
- Subscribe to this event if you want to receive
- put object progress notifications. Here is how:<br />
- 1. Define a method with a signature similar to this one:
- <code>
- private void displayProgress(object sender, WriteObjectProgressArgs args)
- {
- Console.WriteLine(args);
- }
- </code>
- 2. Add this method to the Put Object Progress Event delegate's invocation list
- <code>
- GetObjectResponse response = s3Client.GetObject(request);
- response.WriteObjectProgressEvent += displayProgress;
- </code>
- </remarks>
- </member>
- <member name="T:Amazon.S3.Model.WriteObjectProgressArgs">
- <summary>
- Encapsulates the information needed to provide
- download progress for the Write Object Event.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.WriteObjectProgressArgs.#ctor(System.String,System.String,System.String,System.Int64,System.Int64,System.Int64)">
- <summary>
- The constructor takes the number of
- currently transferred bytes and the
- total number of bytes to be transferred
- </summary>
- <param name="bucketName">The bucket name for the S3 object being written.</param>
- <param name="key">The object key for the S3 object being written.</param>
- <param name="versionId">The version-id of the S3 object.</param>
- <param name="incrementTransferred">The number of bytes transferred since last event</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="P:Amazon.S3.Model.WriteObjectProgressArgs.BucketName">
- <summary>
- Gets the bucket name for the S3 object being written.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.WriteObjectProgressArgs.Key">
- <summary>
- Gets the object key for the S3 object being written.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.WriteObjectProgressArgs.VersionId">
- <summary>
- Gets the version-id of the S3 object.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.SetBucketVersioningResponse">
- <summary>
- The SetBucketVersioningResponse contains the headers and request specific information
- returned by S3
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ResponseHeaderOverrides">
- <summary>
- This class contains the values of the response headers that will be set on the
- response from a GetObject request. These values override any headers that were set
- when the object was uploaded to S3.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.ResponseHeaderOverrides.WithContentType(System.String)">
- <summary>
- Sets the ContentType property and returns back this instance for method chaining.
- </summary>
- <param name="contentType">The content type for the returned object.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ResponseHeaderOverrides.WithContentLanguage(System.String)">
- <summary>
- Sets the ContentLanguage property and returns back this instance for method chaining.
- </summary>
- <param name="contentLanguage">The content language for the returned object.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ResponseHeaderOverrides.WithExpires(System.String)">
- <summary>
- Sets the Expires property and returns back this instance for method chaining.
- </summary>
- <param name="expires">The expires for the returned object.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ResponseHeaderOverrides.WithCacheControl(System.String)">
- <summary>
- Sets the CacheControl property and returns back this instance for method chaining.
- </summary>
- <param name="cacheControl">The cache control for the returned object.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ResponseHeaderOverrides.WithContentDisposition(System.String)">
- <summary>
- Sets the ContentDisposition property and returns back this instance for method chaining.
- </summary>
- <param name="contentDisposition">The content disposition for the returned object.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ResponseHeaderOverrides.WithContentEncoding(System.String)">
- <summary>
- Sets the ContentEncoding property and returns back this instance for method chaining.
- </summary>
- <param name="contentEncoding">The content encoding for the returned object.</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.S3.Model.ResponseHeaderOverrides.ContentType">
- <summary>
- Gets or sets the ContentType.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ResponseHeaderOverrides.ContentLanguage">
- <summary>
- Gets or sets the ContentLanguage.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ResponseHeaderOverrides.Expires">
- <summary>
- Gets or sets the Expires.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ResponseHeaderOverrides.CacheControl">
- <summary>
- Gets or sets the CacheControl.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ResponseHeaderOverrides.ContentDisposition">
- <summary>
- Gets or sets the ContentDisposition.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ResponseHeaderOverrides.ContentEncoding">
- <summary>
- Gets or sets the ContentEncoding.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.MultipartUpload">
- <summary>
- Container for elements related to a particular multipart upload.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.MultipartUpload.Key">
- <summary>
- Gets and sets the Key of the object for which the multipart upload was initiated.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.MultipartUpload.UploadId">
- <summary>
- Gets and sets the Upload ID that identifies the multipart upload.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.MultipartUpload.Owner">
- <summary>
- Gets and sets the Owner property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.MultipartUpload.Initiator">
- <summary>
- Gets and sets the Initiator property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.MultipartUpload.StorageClass">
- <summary>
- Gets and sets the class of storage that will be used to store the object when multipart
- upload is complete.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.MultipartUpload.Initiated">
- <summary>
- Gets and sets the date and time at which the multipart upload was initiated.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketPolicyRequest">
- <summary>
- The GetBucketPolicyRequest contains the parameters used for the GetBucketPolicy operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketPolicyRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket the request will get the location for.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketPolicyRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketPolicyRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.ResponseMetadata">
- <summary>
- Information about the request.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.ResponseMetadata.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">ID that uniquely identifies a request. Amazon keeps track of request IDs. If you have a question about a request, include the request ID in your correspondence.</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.Runtime.ResponseMetadata.RequestId">
- <summary>
- Gets and sets the RequestId property.
- ID that uniquely identifies a request. Amazon keeps track of request IDs. If you have a question about a request, include the request ID in your correspondence.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Util.StringUtils">
- <summary>
- Utilities for converting objects to strings. Used by the marshaller classes.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeReservedDBInstancesRequestMarshaller">
- <summary>
- Describe Reserved D B Instances Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeEventsRequestMarshaller">
- <summary>
- Describe Events Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DBSnapshotUnmarshaller">
- <summary>
- DBSnapshot Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBParameterGroupRequestMarshaller">
- <summary>
- Create D B Parameter Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RevokeDBSecurityGroupIngressResult">
- <summary>
- The results from the RevokeDBSecurityGroupIngress action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RevokeDBSecurityGroupIngressResult.DBSecurityGroup">
-
- Gets and sets the RevokeDBSecurityGroupIngressResult property.
- Contains the result of a successful invocation of the RevokeDBSecurityGroupIngress
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.Parameter">
- <summary>
- <para> This data type is used as a request parameter in the ModifyDBParameterGroup and ResetDBParameterGroup actions. </para> <para>This
- data type is used as a response element in the DescribeEngineDefaultParameters and DescribeDBParameters actions.</para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithParameterName(System.String)">
- <summary>
- Sets the ParameterName property
- </summary>
- <param name="parameterName">The value to set for the ParameterName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithParameterValue(System.String)">
- <summary>
- Sets the ParameterValue property
- </summary>
- <param name="parameterValue">The value to set for the ParameterValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithSource(System.String)">
- <summary>
- Sets the Source property
- </summary>
- <param name="source">The value to set for the Source property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithApplyType(System.String)">
- <summary>
- Sets the ApplyType property
- </summary>
- <param name="applyType">The value to set for the ApplyType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithDataType(System.String)">
- <summary>
- Sets the DataType property
- </summary>
- <param name="dataType">The value to set for the DataType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithAllowedValues(System.String)">
- <summary>
- Sets the AllowedValues property
- </summary>
- <param name="allowedValues">The value to set for the AllowedValues property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithIsModifiable(System.Boolean)">
- <summary>
- Sets the IsModifiable property
- </summary>
- <param name="isModifiable">The value to set for the IsModifiable property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithMinimumEngineVersion(System.String)">
- <summary>
- Sets the MinimumEngineVersion property
- </summary>
- <param name="minimumEngineVersion">The value to set for the MinimumEngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Parameter.WithApplyMethod(System.String)">
- <summary>
- Sets the ApplyMethod property
- </summary>
- <param name="applyMethod">The value to set for the ApplyMethod property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.ParameterName">
- <summary>
- Specifies the name of the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.ParameterValue">
- <summary>
- Specifies the value of the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.Description">
- <summary>
- Provides a description of the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.Source">
- <summary>
- Indicates the source of the parameter value.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.ApplyType">
- <summary>
- Specifies the engine specific parameters type.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.DataType">
- <summary>
- Specifies the valid data type for the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.AllowedValues">
- <summary>
- Specifies the valid range of values for the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.IsModifiable">
- <summary>
- Indicates whether (<c>true</c>) or not (<c>false</c>) the parameter can be modified. Some parameters have security or operational
- implications that prevent them from being changed.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.MinimumEngineVersion">
- <summary>
- The earliest engine version to which the parameter can apply.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Parameter.ApplyMethod">
- <summary>
- Indicates when to apply parameter updates.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>immediate, pending-reboot</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.InvalidDBSnapshotStateException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.InvalidDBSnapshotStateException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidDBSnapshotStateException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBSnapshotNotFoundException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshotNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new DBSnapshotNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBParameterGroup">
- <summary>
- <para> Contains the result of a successful invocation of the CreateDBParameterGroup action. </para> <para> This data type is used as a
- request parameter in the DeleteDBParameterGroup action, and as a response element in the DescribeDBParameterGroups action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroup.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroup.WithDBParameterGroupFamily(System.String)">
- <summary>
- Sets the DBParameterGroupFamily property
- </summary>
- <param name="dBParameterGroupFamily">The value to set for the DBParameterGroupFamily property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroup.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DBParameterGroup.DBParameterGroupName">
- <summary>
- Provides the name of the DB Parameter Group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBParameterGroup.DBParameterGroupFamily">
- <summary>
- Provides the name of the DB Parameter Group Family that this DB Parameter Group is compatible with.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBParameterGroup.Description">
- <summary>
- Provides the customer-specified description for this DB Parameter Group.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBInstanceRequest">
- <summary>
- Container for the parameters to the CreateDBInstance operation.
- <para> Creates a new DB instance. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.CreateDBInstance(Amazon.RDS.Model.CreateDBInstanceRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithDBName(System.String)">
- <summary>
- Sets the DBName property
- </summary>
- <param name="dBName">The value to set for the DBName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithAllocatedStorage(System.Int32)">
- <summary>
- Sets the AllocatedStorage property
- </summary>
- <param name="allocatedStorage">The value to set for the AllocatedStorage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithMasterUsername(System.String)">
- <summary>
- Sets the MasterUsername property
- </summary>
- <param name="masterUsername">The value to set for the MasterUsername property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithMasterUserPassword(System.String)">
- <summary>
- Sets the MasterUserPassword property
- </summary>
- <param name="masterUserPassword">The value to set for the MasterUserPassword property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithDBSecurityGroups(System.String[])">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithDBSecurityGroups(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithPreferredMaintenanceWindow(System.String)">
- <summary>
- Sets the PreferredMaintenanceWindow property
- </summary>
- <param name="preferredMaintenanceWindow">The value to set for the PreferredMaintenanceWindow property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithBackupRetentionPeriod(System.Int32)">
- <summary>
- Sets the BackupRetentionPeriod property
- </summary>
- <param name="backupRetentionPeriod">The value to set for the BackupRetentionPeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithPreferredBackupWindow(System.String)">
- <summary>
- Sets the PreferredBackupWindow property
- </summary>
- <param name="preferredBackupWindow">The value to set for the PreferredBackupWindow property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithAutoMinorVersionUpgrade(System.Boolean)">
- <summary>
- Sets the AutoMinorVersionUpgrade property
- </summary>
- <param name="autoMinorVersionUpgrade">The value to set for the AutoMinorVersionUpgrade property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceRequest.WithLicenseModel(System.String)">
- <summary>
- Sets the LicenseModel property
- </summary>
- <param name="licenseModel">The value to set for the LicenseModel property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.DBName">
- <summary>
- The meaning of this parameter differs according to the database engine you use. <b>MySQL</b> The name of the database to create when the DB
- Instance is created. If this parameter is not specified, no database is created in the DB Instance. Constraints: <ul> <li>Must contain 1 to
- 64 alphanumeric characters</li> <li>Cannot be a word reserved by the specified database engine</li> </ul> Type: String <b>Oracle</b> The
- Oracle System ID (SID) of the created DB Instance. Default: <c>ORACL</c> Constraints: <ul> <li>Cannot be longer than 8 characters</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.DBInstanceIdentifier">
- <summary>
- The DB Instance identifier. This parameter is stored as a lowercase string. Constraints: <ul> <li>Must contain from 1 to 63 alphanumeric
- characters or hyphens.</li> <li>First character must be a letter.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li>
- </ul> Example: <c>mydbinstance</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.AllocatedStorage">
- <summary>
- The amount of storage (in gigabytes) to be initially allocated for the database instance. <b>MySQL</b> Constraints: Must be an integer from
- 5 to 1024. Type: Integer <b>Oracle</b> Constraints: Must be an integer from 10 to 1024.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.DBInstanceClass">
- <summary>
- The compute and memory capacity of the DB Instance. Valid Values: <c>db.m1.small | db.m1.large | db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge
- | db.m2.4xlarge</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.Engine">
- <summary>
- The name of the database engine to be used for this instance. Valid Values: <c>MySQL</c> | <c>oracle-se1</c> | <c>oracle-se</c> |
- <c>oracle-ee</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.MasterUsername">
- <summary>
- The name of master user for the client DB Instance. <b>MySQL</b> Constraints: <ul> <li>Must be 1 to 16 alphanumeric characters.</li>
- <li>First character must be a letter.</li> <li>Cannot be a reserved word for the chosen database engine.</li> </ul> Type: String
- <b>Oracle</b> Constraints: <ul> <li>Must be 1 to 30 alphanumeric characters.</li> <li>First character must be a letter.</li> <li>Cannot be a
- reserved word for the chosen database engine.</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.MasterUserPassword">
- <summary>
- The password for the master DB Instance user. <b>MySQL</b> Constraints: Cannot contain more than 41 alphanumeric characters. Type: String
- <b>Oracle</b> Constraints: Cannot contain more than 30 alphanumeric characters.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.DBSecurityGroups">
- <summary>
- A list of DB Security Groups to associate with this DB Instance. Default: The default DB Security Group for the database engine.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.AvailabilityZone">
- <summary>
- The EC2 Availability Zone that the database instance will be created in. Default: A random, system-chosen Availability Zone in the
- endpoint's region. Example: <c>us-east-1d</c> Constraint: The AvailabilityZone parameter cannot be specified if the MultiAZ parameter is set
- to <c>true</c>. The specified Availability Zone must be in the same region as the current endpoint.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.PreferredMaintenanceWindow">
- <summary>
- The weekly time range (in UTC) during which system maintenance can occur. Format: <c>ddd:hh24:mi-ddd:hh24:mi</c> Default: A 30-minute window
- selected at random from an 8-hour block of time per region, occurring on a random day of the week. The following list shows the time blocks
- for each region from which the default maintenance windows are assigned. <ul> <li><b>US-East (Northern Virginia) Region:</b> 03:00-11:00
- UTC</li> <li><b>US-West (Northern California) Region:</b> 06:00-14:00 UTC</li> <li><b>EU (Ireland) Region:</b> 22:00-06:00 UTC</li>
- <li><b>Asia Pacific (Singapore) Region:</b> 14:00-22:00 UTC</li> <li><b>Asia Pacific (Tokyo) Region: </b> 17:00-03:00 UTC</li> </ul> Valid
- Days: Mon, Tue, Wed, Thu, Fri, Sat, Sun Constraints: Minimum 30-minute window.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.DBParameterGroupName">
- <summary>
- The name of the database parameter group to associate with this DB instance. If this argument is omitted, the default DBParameterGroup for
- the specified engine will be used. Constraints: <ul> <li>Must be 1 to 255 alphanumeric characters</li> <li>First character must be a
- letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.BackupRetentionPeriod">
- <summary>
- The number of days for which automated backups are retained. Setting this parameter to a positive number enables backups. Setting this
- parameter to 0 disables automated backups. Default: 1 Constraints: <ul> <li>Must be a value from 0 to 8</li> <li>Cannot be set to 0 if the
- DB Instance is a master instance with read replicas</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.PreferredBackupWindow">
- <summary>
- The daily time range during which automated backups are created if automated backups are enabled, using the <c>BackupRetentionPeriod</c>
- parameter. Default: A 30-minute window selected at random from an 8-hour block of time per region. The following list shows the time blocks
- for each region from which the default backup windows are assigned. <ul> <li><b>US-East (Northern Virginia) Region:</b> 03:00-11:00 UTC</li>
- <li><b>US-West (Northern California) Region:</b> 06:00-14:00 UTC</li> <li><b>EU (Ireland) Region:</b> 22:00-06:00 UTC</li> <li><b>Asia
- Pacific (Singapore) Region:</b> 14:00-22:00 UTC</li> <li><b>Asia Pacific (Tokyo) Region: </b> 17:00-03:00 UTC</li> </ul> Constraints: Must
- be in the format <c>hh24:mi-hh24:mi</c>. Times should be Universal Time Coordinated (UTC). Must not conflict with the preferred maintenance
- window. Must be at least 30 minutes.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.Port">
- <summary>
- The port number on which the database accepts connections. <b>MySQL</b> Default: <c>3306</c> Valid Values: <c>1150-65535</c> Type: Integer
- <b>Oracle</b> Default: <c>1521</c> Valid Values: <c>1150-65535</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.MultiAZ">
- <summary>
- Specifies if the DB Instance is a Multi-AZ deployment. You cannot set the AvailabilityZone parameter if the MultiAZ parameter is set to
- true.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.EngineVersion">
- <summary>
- The version number of the database engine to use. <b>MySQL</b> Example: <c>5.1.42</c> Type: String <b>Oracle</b> Example: <c>11.2.0.2.v2</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.AutoMinorVersionUpgrade">
- <summary>
- Indicates that minor engine upgrades will be applied automatically to the DB Instance during the maintenance window. Default: <c>true</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceRequest.LicenseModel">
- <summary>
- License model information for this DB Instance. Valid values: <c>license-included</c> | <c>bring-your-own-license</c> |
- <c>general-public-license</c>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressResponse">
- <summary>
- Returns information about the AuthorizeDBSecurityGroupIngress response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressResponse.AuthorizeDBSecurityGroupIngressResult">
-
- Gets and sets the AuthorizeDBSecurityGroupIngressResult property.
- Contains the result of a successful invocation of the AuthorizeDBSecurityGroupIngress
- action.
-
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.ListJobsResultUnmarshaller">
- <summary>
- ListJobsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UploadServerCertificateRequestMarshaller">
- <summary>
- Upload Server Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateUserRequestMarshaller">
- <summary>
- Update User Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateSigningCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateSigningCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateGroupRequestMarshaller">
- <summary>
- Update Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ResyncMFADeviceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ResyncMFADevice operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListSigningCertificatesRequestMarshaller">
- <summary>
- List Signing Certificates Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListGroups operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupsRequestMarshaller">
- <summary>
- List Groups Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetGroupResultUnmarshaller">
- <summary>
- GetGroupResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupsForUserResponse">
- <summary>
- Returns information about the ListGroupsForUserResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsForUserResponse.ListGroupsForUserResult">
- <summary>
- Gets and sets the ListGroupsForUserResult property.
- Contains the result of a successful invocation of the ListGroupsForUser action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListAccessKeysResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListAccessKeys action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccessKeysResult.WithAccessKeyMetadata(Amazon.IdentityManagement.Model.AccessKeyMetadata[])">
- <summary>
- Adds elements to the AccessKeyMetadata collection
- </summary>
- <param name="accessKeyMetadata">The values to add to the AccessKeyMetadata collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccessKeysResult.WithAccessKeyMetadata(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.AccessKeyMetadata})">
- <summary>
- Adds elements to the AccessKeyMetadata collection
- </summary>
- <param name="accessKeyMetadata">The values to add to the AccessKeyMetadata collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccessKeysResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccessKeysResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccessKeysResult.AccessKeyMetadata">
- <summary>
- A list of access key metadata.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccessKeysResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more keys to list. If your results were truncated, you can make a subsequent pagination request
- using the <c>Marker</c> request parameter to retrieve more keys in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccessKeysResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.InvalidCertificateException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.InvalidCertificateException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidCertificateException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetAccountSummaryResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- GetAccountSummary action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetAccountSummaryResult.WithSummaryMap(System.Collections.Generic.KeyValuePair{System.String,System.Int32}[])">
- <summary>
- Adds the KeyValuePairs to the SummaryMap dictionary.
- </summary>
- <param name="pairs">The pairs to be added to the SummaryMap dictionary.</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetAccountSummaryResult.SummaryMap">
- <summary>
- A set of key value pairs containing account-level information. <c>SummaryMap</c> contains the following keys: <ul> <li><c>Users</c> - Number
- of Users for the AWS Account</li> <li><c>UsersQuota</c> - Maximum Users allowed for the AWS Account</li> <li><c>Groups</c> - Number of
- Groups for the AWS Account</li> <li><c>GroupsQuota</c> - Maximum Groups allowed for the AWS Account</li> <li><c>ServerCertificates</c> -
- Number of Server Certificates for the AWS Account</li> <li><c>ServerCertificatesQuota</c> - Maximum Server Certificates allowed for the AWS
- Account</li> <li><c>UserPolicySizeQuota</c> - Maximum allowed size for User policy documents (in kilobytes) </li>
- <li><c>GroupPolicySizeQuota</c> - Maximum allowed size for Group policy documents (in kilobyes)</li> <li><c>GroupsPerUserQuota</c> - Maximum
- number of groups a User can belong to</li> <li><c>SigningCertificatesPerUserQuota</c> - Maximum number of X509 certificates allowed for a
- user</li> <li><c>AccessKeysPerUserQuota</c> - Maximum number of access keys that can be created per User</li> </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.AmazonIdentityManagementServiceConfig">
- <summary>
- Configuration for accessing AWS Identity and Access Management service
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.AmazonIdentityManagementServiceConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.ScriptBootstrapActionConfigUnmarshaller">
- <summary>
- ScriptBootstrapActionConfig Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.RunJobFlowResultUnmarshaller">
- <summary>
- RunJobFlowResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.RunJobFlowResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RunJobFlow operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.KeyValueUnmarshaller">
- <summary>
- KeyValue Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.ScriptBootstrapActionConfig">
- <summary>
- <para>Configuration of the script to run during a bootstrap
- action.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ScriptBootstrapActionConfig.WithPath(System.String)">
- <summary>
- Sets the Path property
- </summary>
- <param name="path">The value to set for the Path property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ScriptBootstrapActionConfig.WithArgs(System.String[])">
- <summary>
- Adds elements to the Args collection
- </summary>
- <param name="args">The values to add to the Args collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.ScriptBootstrapActionConfig.Path">
- <summary>
- Location of the script to run during a bootstrap action. Can be either
- a location in Amazon S3 or on a local file system.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.ScriptBootstrapActionConfig.Args">
- <summary>
- A list of command line arguments to pass to the bootstrap action
- script.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.ModifyInstanceGroupsRequest">
- <summary>
- Container for the parameters to the ModifyInstanceGroups operation.
- <para>ModifyInstanceGroups modifies the number of nodes and
- configuration settings of an instance group. The input parameters
- include the new target instance count for the group and the instance
- group ID. The call will either succeed or fail atomically.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.ModifyInstanceGroups(Amazon.ElasticMapReduce.Model.ModifyInstanceGroupsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ModifyInstanceGroupsRequest.WithInstanceGroups(Amazon.ElasticMapReduce.Model.InstanceGroupModifyConfig[])">
- <summary>
- Adds elements to the InstanceGroups collection
- </summary>
- <param name="instanceGroups">The values to add to the InstanceGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.ModifyInstanceGroupsRequest.InstanceGroups">
- <summary>
- Instance groups to change.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.AmazonElasticMapReduceConfig">
- <summary>
- Configuration for accessing service
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.AmazonElasticMapReduceConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DescribeLoadBalancersResultUnmarshaller">
- <summary>
- DescribeLoadBalancersResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLoadBalancerListenersRequestMarshaller">
- <summary>
- Create Load Balancer Listeners Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateAppCookieStickinessPolicyResultUnmarshaller">
- <summary>
- CreateAppCookieStickinessPolicyResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerResponse">
- <summary>
- Returns information about the SetLoadBalancerPoliciesOfListenerResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerResponse.SetLoadBalancerPoliciesOfListenerResult">
- <summary>
- Gets and sets the SetLoadBalancerPoliciesOfListenerResult property.
- The output for the SetLoadBalancerPoliciesOfListener action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateResult">
- <summary>
- <para> The output for the SetLoadBalancerListenerSSLCertificate action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerResponse">
- <summary>
- Returns information about the RegisterInstancesWithLoadBalancerResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerResponse.RegisterInstancesWithLoadBalancerResult">
- <summary>
- Gets and sets the RegisterInstancesWithLoadBalancerResult property.
- The output for the RegisterInstancesWithLoadBalancer action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest">
- <summary>
- Container for the parameters to the RegisterInstancesWithLoadBalancer operation.
- <para> Adds new instances to the LoadBalancer. </para> <para> Once the instance is registered, it starts receiving traffic and requests from
- the LoadBalancer. Any instance that is not in any of the Availability Zones registered for the LoadBalancer will be moved to the
- <i>OutOfService</i> state. It will move to the <i>InService</i> state when the Availability Zone is added to the LoadBalancer. </para>
- <para><b>NOTE:</b> In order for this call to be successful, the client must have created the LoadBalancer. The client must provide the same
- account credentials as those that were used to create the LoadBalancer. </para> <para><b>NOTE:</b> Completion of this API does not guarantee
- that operation has completed. Rather, it means that the request has been registered and the changes will happen shortly. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.RegisterInstancesWithLoadBalancer(Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest.#ctor">
- <summary>
- Default constructor for a new RegisterInstancesWithLoadBalancerRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest.#ctor(System.String,System.Collections.Generic.List{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Constructs a new RegisterInstancesWithLoadBalancerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- <param name="instances"> A list of instances IDs that should be registered with the LoadBalancer. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest.WithInstances(Amazon.ElasticLoadBalancing.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest.WithInstances(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest.Instances">
- <summary>
- A list of instances IDs that should be registered with the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.PolicyNotFoundException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.PolicyNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new PolicyNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy">
- <summary>
- <para> The LBCookieStickinessPolicy data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy.#ctor">
- <summary>
- Default constructor for a new LBCookieStickinessPolicy object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy.#ctor(System.String,System.Int64)">
- <summary>
- Constructs a new LBCookieStickinessPolicy object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="policyName"> The name for the policy being created. The name must be unique within the set of policies for this LoadBalancer.
- </param>
- <param name="cookieExpirationPeriod"> The time period in seconds after which the cookie should be considered stale. Not specifying this
- parameter indicates that the sticky session will last for the duration of the browser session. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy.WithCookieExpirationPeriod(System.Int64)">
- <summary>
- Sets the CookieExpirationPeriod property
- </summary>
- <param name="cookieExpirationPeriod">The value to set for the CookieExpirationPeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy.PolicyName">
- <summary>
- The name for the policy being created. The name must be unique within the set of policies for this LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy.CookieExpirationPeriod">
- <summary>
- The time period in seconds after which the cookie should be considered stale. Not specifying this parameter indicates that the sticky
- session will last for the duration of the browser session.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerResult">
- <summary>
- <para> The output for the EnableAvailabilityZonesForLoadBalancer action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerResult.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerResult.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerResult.AvailabilityZones">
- <summary>
- An updated list of Availability Zones for the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest">
- <summary>
- Container for the parameters to the DeleteLoadBalancerPolicy operation.
- <para> Deletes a policy from the LoadBalancer. The specified policy must not be enabled for any listeners. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeleteLoadBalancerPolicy(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest.#ctor">
- <summary>
- Default constructor for a new DeleteLoadBalancerPolicyRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest.#ctor(System.String,System.String)">
- <summary>
- Constructs a new DeleteLoadBalancerPolicyRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The mnemonic name associated with the LoadBalancer. The name must be unique within your AWS account.
- </param>
- <param name="policyName"> The mnemonic name for the policy being deleted. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest.LoadBalancerName">
- <summary>
- The mnemonic name associated with the LoadBalancer. The name must be unique within your AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest.PolicyName">
- <summary>
- The mnemonic name for the policy being deleted.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest">
- <summary>
- Container for the parameters to the DeleteLoadBalancerListeners operation.
- <para> Deletes listeners from the LoadBalancer for the specified port. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeleteLoadBalancerListeners(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest.#ctor">
- <summary>
- Default constructor for a new DeleteLoadBalancerListenersRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest.#ctor(System.String,System.Collections.Generic.List{System.Int32})">
- <summary>
- Constructs a new DeleteLoadBalancerListenersRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The mnemonic name associated with the LoadBalancer. </param>
- <param name="loadBalancerPorts"> The client port number(s) of the LoadBalancerListener(s) to be removed. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest.WithLoadBalancerPorts(System.Int32[])">
- <summary>
- Adds elements to the LoadBalancerPorts collection
- </summary>
- <param name="loadBalancerPorts">The values to add to the LoadBalancerPorts collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest.WithLoadBalancerPorts(System.Collections.Generic.IEnumerable{System.Int32})">
- <summary>
- Adds elements to the LoadBalancerPorts collection
- </summary>
- <param name="loadBalancerPorts">The values to add to the LoadBalancerPorts collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest.LoadBalancerName">
- <summary>
- The mnemonic name associated with the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest.LoadBalancerPorts">
- <summary>
- The client port number(s) of the LoadBalancerListener(s) to be removed.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateApplicationResultUnmarshaller">
- <summary>
- UpdateApplicationResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteApplicationVersionRequestMarshaller">
- <summary>
- Delete Application Version Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest">
- <summary>
- Container for the parameters to the RebuildEnvironment operation.
- <para> Deletes and recreates all of the AWS resources (for example: the Auto Scaling group, load balancer, etc.) for a specified environment
- and forces a restart. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RebuildEnvironment(Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest.EnvironmentId">
- <summary>
- The ID of the environment to rebuild.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RebuildEnvironmentRequest.EnvironmentName">
- <summary>
- The name of the environment to rebuild.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsResponse">
- <summary>
- Returns information about the DescribeApplicationVersionsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsResponse.DescribeApplicationVersionsResult">
- <summary>
- Gets and sets the DescribeApplicationVersionsResult property.
- Result message wrapping a list of application version descriptions.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest">
- <summary>
- Container for the parameters to the CreateConfigurationTemplate operation.
- <para>Creates a configuration template. Templates are associated with a specific application and are used to deploy different versions of
- the application with the same configuration settings.</para> <para>Related Topics</para>
- <ul>
- <li> DescribeConfigurationOptions </li>
- <li> DescribeConfigurationSettings </li>
- <li> ListAvailableSolutionStacks </li>
-
- </ul>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateConfigurationTemplate(Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithSourceConfiguration(Amazon.ElasticBeanstalk.Model.SourceConfiguration)">
- <summary>
- Sets the SourceConfiguration property
- </summary>
- <param name="sourceConfiguration">The value to set for the SourceConfiguration property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.ApplicationName">
- <summary>
- The name of the application to associate with this configuration template. If no application is found with this name, AWS Elastic Beanstalk
- returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.TemplateName">
- <summary>
- The name of the configuration template. Constraint: This name must be unique per application. Default: If a configuration template already
- exists with this name, AWS Elastic Beanstalk returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.SolutionStackName">
- <summary>
- The name of the solution stack used by this configuration. The solution stack specifies the operating system, architecture, and application
- server for a configuration template. It determines the set of configuration options as well as the possible and default values. Use
- <a>ListAvailableSolutionStacks</a> to obtain a list of available solution stacks. Default: If the <c>SolutionStackName</c> is not specified
- and the source configuration parameter is blank, AWS Elastic Beanstalk uses the default solution stack. If not specified and the source
- configuration parameter is specified, AWS Elastic Beanstalk uses the same solution stack as the source configuration template.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.SourceConfiguration">
- <summary>
- If specified, AWS Elastic Beanstalk uses the configuration values from the specified configuration template to create a new configuration.
- Values specified in the <c>OptionSettings</c> parameter of this call overrides any values obtained from the <c>SourceConfiguration</c>. If
- no configuration template is found, returns an <c>InvalidParameterValue</c> error. Constraint: If both the solution stack name parameter and
- the source configuration parameters are specified, the solution stack of the source configuration template must match the specified solution
- stack name or else AWS Elastic Beanstalk returns an <c>InvalidParameterCombination</c> error.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.EnvironmentId">
- <summary>
- The ID of the environment used with this configuration template.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.Description">
- <summary>
- Describes this configuration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateRequest.OptionSettings">
- <summary>
- If specified, AWS Elastic Beanstalk sets the specified configuration option to the requested value. The new value overrides the value
- obtained from the solution stack or the source configuration template.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionResult">
- <summary>
- <para> Result message wrapping a single description of an application version. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionResult.WithApplicationVersion(Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription)">
- <summary>
- Sets the ApplicationVersion property
- </summary>
- <param name="applicationVersion">The value to set for the ApplicationVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionResult.ApplicationVersion">
- <summary>
- The <a>ApplicationVersionDescription</a> of the application version.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityResult">
- <summary>
- <para>Indicates if the specified CNAME is available.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityResult.WithAvailable(System.Boolean)">
- <summary>
- Sets the Available property
- </summary>
- <param name="available">The value to set for the Available property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityResult.WithFullyQualifiedCNAME(System.String)">
- <summary>
- Sets the FullyQualifiedCNAME property
- </summary>
- <param name="fullyQualifiedCNAME">The value to set for the FullyQualifiedCNAME property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityResult.Available">
- <summary>
- Indicates if the specified CNAME is available: <enumValues> <value name="true"> <c>true</c> : The CNAME is available. </value> <value
- name="false"> <c>true</c> : The CNAME is not available. </value> </enumValues> <ul> <li> <c>true</c> : The CNAME is available. </li> <li>
- <c>false</c> : The CNAME is not available. </li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityResult.FullyQualifiedCNAME">
- <summary>
- The fully qualified CNAME to reserve when <a>CreateEnvironment</a> is called with the provided prefix.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription">
- <summary>
- <para> Describes the properties of an application version. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.WithSourceBundle(Amazon.ElasticBeanstalk.Model.S3Location)">
- <summary>
- Sets the SourceBundle property
- </summary>
- <param name="sourceBundle">The value to set for the SourceBundle property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.ApplicationName">
- <summary>
- The name of the application associated with this release.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.Description">
- <summary>
- The description of this application version.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.VersionLabel">
- <summary>
- A label uniquely identifying the version for the associated application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.SourceBundle">
- <summary>
- The location where the source bundle is located for this version.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.DateCreated">
- <summary>
- The creation date of the application version.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription.DateUpdated">
- <summary>
- The last modified date of the application version.
-
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.VpcAttachment">
- <summary>
- VPC Attachment
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.VpcAttachment.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC the VPN gateway is attached to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpcAttachment.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpcAttachment.WithVpcAttachmentState(System.String)">
- <summary>
- Sets the VpcAttachmentState property
- </summary>
- <param name="vpcAttachmentState">The current state of the attachment (attaching,
- attached,
- detaching, detached)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.VpcAttachment.IsSetVpcAttachmentState">
- <summary>
- Checks if VpcAttachmentState property is set
- </summary>
- <returns>true if VpcAttachmentState property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.VpcAttachment.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC the VPN gateway is attached to
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.VpcAttachment.VpcAttachmentState">
- <summary>
- Gets and sets the VpcAttachmentState property.
- The current state of the attachment (attaching,
- attached,
- detaching, detached)
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Snapshot">
- <summary>
- A Snapshot of an EBS volume.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The ID of the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the volume from which the snapshot
- was created.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">Snapshot state - can be one of pending | completed | error</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetStatus">
- <summary>
- Checks if Status property is set
- </summary>
- <returns>true if Status property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithStartTime(System.String)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">Time stamp when the snapshot was initiated.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetStartTime">
- <summary>
- Checks if StartTime property is set
- </summary>
- <returns>true if StartTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithProgress(System.String)">
- <summary>
- Sets the Progress property
- </summary>
- <param name="progress">The progress of the snapshot, in percentage.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetProgress">
- <summary>
- Checks if Progress property is set
- </summary>
- <returns>true if Progress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithOwnerId(System.String)">
- <summary>
- Sets the OwnerId property
- </summary>
- <param name="ownerId">AWS Access Key ID of the user who owns the
- snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetOwnerId">
- <summary>
- Checks if OwnerId property is set
- </summary>
- <returns>true if OwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithVolumeSize(System.String)">
- <summary>
- Sets the VolumeSize property
- </summary>
- <param name="volumeSize">Size of the volume</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetVolumeSize">
- <summary>
- Checks if VolumeSize property is set
- </summary>
- <returns>true if VolumeSize property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Description of the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithOwnerAlias(System.String)">
- <summary>
- Sets the OwnerAlias property
- </summary>
- <param name="ownerAlias">OwnerAlias property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetOwnerAlias">
- <summary>
- Checks if OwnerAlias property is set
- </summary>
- <returns>true if OwnerAlias property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the Snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Snapshot.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the volume from which the snapshot
- was created.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.Status">
- <summary>
- Gets and sets the Status property.
- Snapshot state - can be one of pending | completed | error
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.StartTime">
- <summary>
- Gets and sets the StartTime property.
- Time stamp when the snapshot was initiated.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.Progress">
- <summary>
- Gets and sets the Progress property.
- The progress of the snapshot, in percentage.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.OwnerId">
- <summary>
- Gets and sets the OwnerId property.
- AWS Access Key ID of the user who owns the
- snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.VolumeSize">
- <summary>
- Gets and sets the VolumeSize property.
- Size of the volume
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.Description">
- <summary>
- Gets and sets the Description property.
- Description of the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.OwnerAlias">
- <summary>
- Gets and sets the OwnerAlias property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Snapshot.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the Snapshot.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RequestSpotInstancesResponse">
- <summary>
- The Response for the RequestSpotInstances
- operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesResponse.IsSetRequestSpotInstancesResult">
- <summary>
- Checks if RequestSpotInstancesResult property is set
- </summary>
- <returns>true if RequestSpotInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesResponse.RequestSpotInstancesResult">
- <summary>
- Gets and sets the RequestSpotInstancesResult property.
- Result of the Request Spot Instances operation.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.MonitorInstancesResponse">
- <summary>
- Monitor Instances Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesResponse.IsSetMonitorInstancesResult">
- <summary>
- Checks if MonitorInstancesResult property is set
- </summary>
- <returns>true if MonitorInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.MonitorInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.MonitorInstancesResponse.MonitorInstancesResult">
- <summary>
- Gets and sets the MonitorInstancesResult property.
- Monitor Instances Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.License">
- <summary>
- A software license that can be associated with an Amazon EC2
- instance when launched (ex. a Microsoft Windows license).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.License.WithLicenseId(System.String)">
- <summary>
- Sets the LicenseId property
- </summary>
- <param name="licenseId">The unique ID identifying the license.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.IsSetLicenseId">
- <summary>
- Checks if LicenseId property is set
- </summary>
- <returns>true if LicenseId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The license type (ex. "Microsoft/Windows/Standard").</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.WithPool(System.String)">
- <summary>
- Sets the Pool property
- </summary>
- <param name="pool">The name of the pool in which the license is kept.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.IsSetPool">
- <summary>
- Checks if Pool property is set
- </summary>
- <returns>true if Pool property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.WithLicenseCapacity(Amazon.EC2.Model.LicenseCapacity[])">
- <summary>
- Sets the LicenseCapacity property
- </summary>
- <param name="list">The capacities available for this license,
- indicating how many licenses are in use, how many are available,
- how many Amazon EC2 instances can be supported, etc.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.IsSetLicenseCapacity">
- <summary>
- Checks if LicenseCapacity property is set
- </summary>
- <returns>true if LicenseCapacity property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the License.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.License.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.License.LicenseId">
- <summary>
- Gets and sets the LicenseId property.
- The unique ID identifying the license.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.License.Type">
- <summary>
- Gets and sets the Type property.
- The license type (ex. "Microsoft/Windows/Standard").
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.License.Pool">
- <summary>
- Gets and sets the Pool property.
- The name of the pool in which the license is kept.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.License.LicenseCapacity">
- <summary>
- Gets and sets the LicenseCapacity property.
- The capacities available for this license,
- indicating how many licenses are in use, how many are available,
- how many Amazon EC2 instances can be supported, etc.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.License.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the License.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportInstanceResult">
- <summary>
- Import Instance Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceResult.IsSetConversionTask">
- <summary>
- Checks if ConversionTask property is set
- </summary>
- <returns>true if ConversionTask property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceResult.ConversionTask">
- <summary>
- Gets and sets the ConversionTask property.
- Information about the import instance task.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.GetPasswordDataResult">
- <summary>
- Get Password Data Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResult.IsSetPasswordData">
- <summary>
- Checks if PasswordData property is set
- </summary>
- <returns>true if PasswordData property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetPasswordDataResult.GetDecryptedPassword(System.String)">
- <summary>
- Gets the decrypted password using the RSA private key which can be found in the
- PEM file for the key pair.
- </summary>
- <param name="rsaPrivateKey">The RSA private key from the PEM file</param>
- <returns>The decrypted password</returns>
- </member>
- <member name="P:Amazon.EC2.Model.GetPasswordDataResult.PasswordData">
- <summary>
- Gets and sets the PasswordData property.
- Password data
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ErrorResponse">
- <summary>
- Error Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ErrorResponse.IsSetError">
- <summary>
- Checks if Error property is set
- </summary>
- <returns>true if Error property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ErrorResponse.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ErrorResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ErrorResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ErrorResponse.Error">
- <summary>
- Gets and sets the Error property.
- Error
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ErrorResponse.RequestId">
- <summary>
- Gets and sets the RequestId property.
- Request Id
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageVolumeDescriptionType.WithSize(System.Decimal)">
- <summary>
- Sets the Size property
- </summary>
- <param name="size">Size of the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageVolumeDescriptionType.IsSetSize">
- <summary>
- Checks if Size property is set
- </summary>
- <returns>true if Size property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageVolumeDescriptionType.WithId(System.String)">
- <summary>
- Sets the Id property
- </summary>
- <param name="id">Volume identifier.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageVolumeDescriptionType.IsSetId">
- <summary>
- Checks if Id property is set
- </summary>
- <returns>true if Id property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageVolumeDescriptionType.Size">
- <summary>
- Gets and sets the Size property.
- Size of the volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageVolumeDescriptionType.Id">
- <summary>
- Gets and sets the Id property.
- Volume identifier.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.WithFormat(System.String)">
- <summary>
- Sets the Format property
- </summary>
- <param name="format">Disk image format.
-
- Valid Values: VMDK | RAW</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.IsSetFormat">
- <summary>
- Checks if Format property is set
- </summary>
- <returns>true if Format property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.WithSize(System.Decimal)">
- <summary>
- Sets the Size property
- </summary>
- <param name="size">Size of the disk image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.IsSetSize">
- <summary>
- Checks if Size property is set
- </summary>
- <returns>true if Size property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.WithImportManifestUrl(System.String)">
- <summary>
- Sets the ImportManifestUrl property
- </summary>
- <param name="importManifestUrl">The manifest for the disk image, stored in Amazon S3 and presented here as an Amazon S3 pre-signed URL. For information about
- creating a pre-signed URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the
- Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.IsSetImportManifestUrl">
- <summary>
- Checks if ImportManifestUrl property is set
- </summary>
- <returns>true if ImportManifestUrl property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.WithChecksum(System.String)">
- <summary>
- Sets the Checksum property
- </summary>
- <param name="checksum">Checksum computed for the disk image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDescriptionType.IsSetChecksum">
- <summary>
- Checks if Checksum property is set
- </summary>
- <returns>true if Checksum property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageDescriptionType.Format">
- <summary>
- Gets and sets the Format property.
- Disk image format.
-
- Valid Values: VMDK | RAW
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageDescriptionType.Size">
- <summary>
- Gets and sets the Size property.
- Size of the disk image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageDescriptionType.ImportManifestUrl">
- <summary>
- Gets and sets the ImportManifestUrl property.
- The manifest for the disk image, stored in Amazon S3 and presented here as an Amazon S3 pre-signed URL. For information about
- creating a pre-signed URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the
- Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageDescriptionType.Checksum">
- <summary>
- Gets and sets the Checksum property.
- Checksum computed for the disk image.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVolumesResult">
- <summary>
- Describe Volumes Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesResult.IsSetVolume">
- <summary>
- Checks if Volume property is set
- </summary>
- <returns>true if Volume property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVolumesResult.Volume">
- <summary>
- Gets and sets the Volume property.
- List of volumes
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSecurityGroupsRequest">
- <summary>
- Returns information about security groups that
- you own.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsRequest.WithGroupName(System.String[])">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="list">Name of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsRequest.WithGroupId(System.String[])">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="list">ID of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsRequest.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with
- the specified SecurityGroups.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSecurityGroupsRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSecurityGroupsRequest.GroupId">
- <summary>
- Gets and sets the GroupId property.
- ID of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSecurityGroupsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with
- the specified SecurityGroups.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeNetworkAclsResult">
- <summary>
- DescribeNetworkAcls Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsResult.IsSetNetworkAcls">
- <summary>
- Checks if NetworkAcls property is set
- </summary>
- <returns>true if NetworkAcls property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeNetworkAclsResult.NetworkAcls">
- <summary>
- Gets and sets the NetworkAcls property.
- A list of NetworkAcls.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeregisterImageRequest">
- <summary>
- Deregisters the specified AMI. Once deregistered,
- the AMI cannot be used to launch new instances.
-
- This command does not
- delete the AMI from Amazon S3.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeregisterImageRequest.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">Unique ID of the AMI which was assigned during
- registration.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeregisterImageRequest.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeregisterImageRequest.ImageId">
- <summary>
- Gets and sets the ImageId property.
- Unique ID of the AMI which was assigned during
- registration.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteTagsRequest">
- <summary>
- Deletes tags from the specified resources.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTagsRequest.WithResourceId(System.String[])">
- <summary>
- Sets the ResourceId property
- </summary>
- <param name="list">A list of one or more resource IDs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTagsRequest.IsSetResourceId">
- <summary>
- Checks if ResourceId property is set
- </summary>
- <returns>true if ResourceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTagsRequest.WithTag(Amazon.EC2.Model.DeleteTags[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">The tags to delete from the specified resources. Each tag item consists of a
- key-value pair.
- If a tag doesn't have a value defined in the key-value pair,
- the tag is deleted regardless of its value.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTagsRequest.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteTagsRequest.ResourceId">
- <summary>
- Gets and sets the ResourceId property.
- A list of one or more resource IDs.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteTagsRequest.Tag">
- <summary>
- Gets and sets the Tag property.
- The tags to delete from the specified resources. Each tag item consists of a
- key-value pair.
- If a tag doesn't have a value defined in the key-value pair,
- the tag is deleted regardless of its value.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTags.WithKey(System.String)">
- <summary>
- Sets the Key property
- </summary>
- <param name="key">Key property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTags.IsSetKey">
- <summary>
- Checks if Key property is set
- </summary>
- <returns>true if Key property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTags.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">Value property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTags.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteTags.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteTags.Value">
- <summary>
- Gets and sets the Value property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionResponse">
- <summary>
- The Response for the
- DeleteSpotDatafeedSubscription operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreatePlacementGroupResponse">
- <summary>
- Information returned by the CreatePlacementGroup request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreatePlacementGroupResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreatePlacementGroupResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreatePlacementGroupResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreatePlacementGroupResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.WithConversionTaskId(System.String)">
- <summary>
- Sets the ConversionTaskId property
- </summary>
- <param name="conversionTaskId">ID of the conversion task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.IsSetConversionTaskId">
- <summary>
- Checks if ConversionTaskId property is set
- </summary>
- <returns>true if ConversionTaskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.WithExpirationTime(System.String)">
- <summary>
- Sets the ExpirationTime property
- </summary>
- <param name="expirationTime">When the task expires. If the upload isn't complete before the expiration time, the task is automatically canceled.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.IsSetExpirationTime">
- <summary>
- Checks if ExpirationTime property is set
- </summary>
- <returns>true if ExpirationTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.WithImportVolumeRequest(Amazon.EC2.Model.ImportVolumeTaskDetailsType)">
- <summary>
- Sets the ImportVolumeRequest property
- </summary>
- <param name="importVolumeRequest">If the task is for importing a volume, this contains information about the import volume task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.IsSetImportVolumeRequest">
- <summary>
- Checks if ImportVolumeRequest property is set
- </summary>
- <returns>true if ImportVolumeRequest property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.WithImportInstanceRequest(Amazon.EC2.Model.ImportInstanceTaskDetailsType)">
- <summary>
- Sets the ImportInstanceRequest property
- </summary>
- <param name="importInstanceRequest">If the task is for importing an instance, this contains information about the import instance task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.IsSetImportInstanceRequest">
- <summary>
- Checks if ImportInstanceRequest property is set
- </summary>
- <returns>true if ImportInstanceRequest property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">State of the conversion task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.WithStatusMessage(System.String)">
- <summary>
- Sets the StatusMessage property
- </summary>
- <param name="statusMessage">Status message related to the conversion task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConversionTaskType.IsSetStatusMessage">
- <summary>
- Checks if StatusMessage property is set
- </summary>
- <returns>true if StatusMessage property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ConversionTaskType.ConversionTaskId">
- <summary>
- Gets and sets the ConversionTaskId property.
- ID of the conversion task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConversionTaskType.ExpirationTime">
- <summary>
- Gets and sets the ExpirationTime property.
- When the task expires. If the upload isn't complete before the expiration time, the task is automatically canceled.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConversionTaskType.ImportVolumeRequest">
- <summary>
- Gets and sets the ImportVolumeRequest property.
- If the task is for importing a volume, this contains information about the import volume task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConversionTaskType.ImportInstanceRequest">
- <summary>
- Gets and sets the ImportInstanceRequest property.
- If the task is for importing an instance, this contains information about the import instance task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConversionTaskType.State">
- <summary>
- Gets and sets the State property.
- State of the conversion task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConversionTaskType.StatusMessage">
- <summary>
- Gets and sets the StatusMessage property.
- Status message related to the conversion task.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ConfirmProductInstanceResponse">
- <summary>
- Confirm Product Instance Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceResponse.IsSetConfirmProductInstanceResult">
- <summary>
- Checks if ConfirmProductInstanceResult property is set
- </summary>
- <returns>true if ConfirmProductInstanceResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ConfirmProductInstanceResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConfirmProductInstanceResponse.ConfirmProductInstanceResult">
- <summary>
- Gets and sets the ConfirmProductInstanceResult property.
- Confirm Product Instance Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelledSpotInstanceRequest">
- <summary>
- A cancelled Spot Instance Request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelledSpotInstanceRequest.WithSpotInstanceRequestId(System.String)">
- <summary>
- Sets the SpotInstanceRequestId property
- </summary>
- <param name="spotInstanceRequestId">The ID of the Spot Instance Request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelledSpotInstanceRequest.IsSetSpotInstanceRequestId">
- <summary>
- Checks if SpotInstanceRequestId property is set
- </summary>
- <returns>true if SpotInstanceRequestId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelledSpotInstanceRequest.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The State of the Spot Instance Request.
- Valid values are open | closed | cancelled | failed</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelledSpotInstanceRequest.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelledSpotInstanceRequest.SpotInstanceRequestId">
- <summary>
- Gets and sets the SpotInstanceRequestId property.
- The ID of the Spot Instance Request.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CancelledSpotInstanceRequest.State">
- <summary>
- Gets and sets the State property.
- The State of the Spot Instance Request.
- Valid values are open | closed | cancelled | failed
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelConversionTaskRequest">
- <summary>
- Cancels an active conversion task. The task can be the import of an instance or volume. The command removes all artifacts of the conversion, including a
- partially uploaded volume or instance. If the conversion is complete or is in the process of transferring the final disk image, the command fails and returns an exception.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelConversionTaskRequest.WithConversionTaskId(System.String)">
- <summary>
- Sets the ConversionTaskId property
- </summary>
- <param name="conversionTaskId">The ID of the task you want to cancel.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelConversionTaskRequest.IsSetConversionTaskId">
- <summary>
- Checks if ConversionTaskId property is set
- </summary>
- <returns>true if ConversionTaskId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelConversionTaskRequest.ConversionTaskId">
- <summary>
- Gets and sets the ConversionTaskId property.
- The ID of the task you want to cancel.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest">
- <summary>
- Adds permissions to a security group.
-
- Permissions are specified by the IP protocol (TCP, UDP or ICMP),
- the source of the request (by IP range or an Amazon EC2 user-group pair),
- the source and destination port ranges (for TCP and UDP), and the
- ICMP codes and types (for ICMP). When authorizing ICMP, -1 can
- be used as a wildcard in the type and code fields.
-
- Permission changes are propagated to instances within the
- security group as quickly as possible. However, depending on
- the number of instances, a small delay might occur.
-
- When authorizing a user/group pair permission,
- GroupName, SourceSecurityGroupName and SourceSecurityGroupOwnerId
- must be specified. When authorizing a CIDR IP permission,
- GroupName, IpProtocol, FromPort, ToPort and CidrIp must be specified
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithUserId(System.String)">
- <summary>
- Sets the UserId property
- </summary>
- <param name="userId">AWS Access Key ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetUserId">
- <summary>
- Checks if UserId property is set
- </summary>
- <returns>true if UserId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="groupId">Id of the standard (EC2) or VPC security group to modify. Conditional
- The group must belong to your account.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Name of the group to modify. The name must be
- valid and belong to the account</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithSourceSecurityGroupName(System.String)">
- <summary>
- Sets the SourceSecurityGroupName property
- </summary>
- <param name="sourceSecurityGroupName">Name of the security group. Cannot be used
- when specifying a CIDR IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetSourceSecurityGroupName">
- <summary>
- Checks if SourceSecurityGroupName property is set
- </summary>
- <returns>true if SourceSecurityGroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithSourceSecurityGroupOwnerId(System.String)">
- <summary>
- Sets the SourceSecurityGroupOwnerId property
- </summary>
- <param name="sourceSecurityGroupOwnerId">AWS User ID of an account. Cannot be used when
- specifying a CIDR IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetSourceSecurityGroupOwnerId">
- <summary>
- Checks if SourceSecurityGroupOwnerId property is set
- </summary>
- <returns>true if SourceSecurityGroupOwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithIpProtocol(System.String)">
- <summary>
- Sets the IpProtocol property
- </summary>
- <param name="ipProtocol">IP protocol.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetIpProtocol">
- <summary>
- Checks if IpProtocol property is set
- </summary>
- <returns>true if IpProtocol property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithFromPort(System.Decimal)">
- <summary>
- Sets the FromPort property
- </summary>
- <param name="fromPort">Start of port range for the TCP and UDP protocols, or an ICMP type number.
- An ICMP type number of -1 indicates a wildcard (i.e., any ICMP type number).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetFromPort">
- <summary>
- Checks if FromPort property is set
- </summary>
- <returns>true if FromPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithToPort(System.Decimal)">
- <summary>
- Sets the ToPort property
- </summary>
- <param name="toPort">End of port range for the TCP and UDP protocols, or an ICMP code.
- An ICMP code of -1 indicates a wildcard (i.e., any ICMP code).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetToPort">
- <summary>
- Checks if ToPort property is set
- </summary>
- <returns>true if ToPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithCidrIp(System.String)">
- <summary>
- Sets the CidrIp property
- </summary>
- <param name="cidrIp">CIDR range.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetCidrIp">
- <summary>
- Checks if CidrIp property is set
- </summary>
- <returns>true if CidrIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.WithIpPermissions(Amazon.EC2.Model.IpPermissionSpecification[])">
- <summary>
- Sets the IpPermissions property
- </summary>
- <param name="list">Set of IP permissions associated with the
- security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IsSetIpPermissions">
- <summary>
- Checks if IpPermissions property is set
- </summary>
- <returns>true if IpPermissions property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.UserId">
- <summary>
- Gets and sets the UserId property.
- AWS Access Key ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.GroupId">
- <summary>
- Gets and sets the GroupId property.
- Id of the standard (EC2) or VPC security group to modify. Conditional
- The group must belong to your account.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the group to modify. The name must be
- valid and belong to the account
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.SourceSecurityGroupName">
- <summary>
- Gets and sets the SourceSecurityGroupName property.
- Name of the security group. Cannot be used
- when specifying a CIDR IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.SourceSecurityGroupOwnerId">
- <summary>
- Gets and sets the SourceSecurityGroupOwnerId property.
- AWS User ID of an account. Cannot be used when
- specifying a CIDR IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IpProtocol">
- <summary>
- Gets and sets the IpProtocol property.
- IP protocol.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.FromPort">
- <summary>
- Gets and sets the FromPort property.
- Start of port range for the TCP and UDP protocols, or an ICMP type number.
- An ICMP type number of -1 indicates a wildcard (i.e., any ICMP type number).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.ToPort">
- <summary>
- Gets and sets the ToPort property.
- End of port range for the TCP and UDP protocols, or an ICMP code.
- An ICMP code of -1 indicates a wildcard (i.e., any ICMP code).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.CidrIp">
- <summary>
- Gets and sets the CidrIp property.
- CIDR range.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AuthorizeSecurityGroupIngressRequest.IpPermissions">
- <summary>
- Gets and sets the IpPermissions property.
- Set of IP permissions associated with the
- security group.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeAlarms operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.InternalServiceException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.InternalServiceException.#ctor(System.String)">
- <summary>
- Constructs a new InternalServiceException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DeleteAlarmsResponse">
- <summary>
- Returns information about the DeleteAlarms response metadata.
- The DeleteAlarms operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.UrlTrustedSigners">
- <summary>
- The UrlTrustedSigners complex type specifies any AWS accounts you want to permit to create signed URLs for private content.
- To specify who can sign URLs
- <list type="number">
- <item>Enable yourself to be a trusted signer (you must explicitly give yourself permission).
- <see cref="P:Amazon.CloudFront.Model.UrlTrustedSigners.EnableSelf"/>
- </item>
- <item>Add an AwsAccountNumber for each AWS account (other than your own) that you want to give signing
- authority (limit of five). Remove the dashes from the account number.
- <see cref="P:Amazon.CloudFront.Model.UrlTrustedSigners.AwsAccountNumbers"/>
- </item>
- </list>
- If you want the distribution to use signed URLs, include this element in the DistributionConfig for your CloudFront
- distribution either while creating the distribution or by updating the distribution's config.
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionConfigDatatype.html"/>
- </summary>
- <seealso cref="M:Amazon.CloudFront.AmazonCloudFrontClient.SetDistributionConfig" />
- <seealso cref="M:Amazon.CloudFront.AmazonCloudFrontClient.CreateDistribution"/>
- <seealso cref="T:Amazon.CloudFront.Model.CloudFrontDistributionConfig"/>
- </member>
- <member name="M:Amazon.CloudFront.Model.UrlTrustedSigners.ToString">
- <summary>
- Creates an string representation of the UrlTrustedSigners object
- by overriding the default Object ToString method. This string
- can be concatenated to the distribution config xml that is sent
- to CloudFront while creating a distribution or updating a distribution's
- configuration.
- </summary>
- <returns>
- String representation of the UrlTrustedSigners type.
- </returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.UrlTrustedSigners.WithAwsAccountNumbers(System.String[])">
- <summary>
- Sets the AwsAccountNumbers property. Please provide the AWS account number without dashes.
- If you set more than 5 trusted signers for URLs,
- a <code>TooManyTrustedSigners</code> exception will be returned by CloudFront.
- </summary>
- <param name="awsAccounts">Value that the AwsAccountNumbers property will be set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.UrlTrustedSigners.IsSetAwsAccounts">
- <summary>
- Checks if AwsAccountNumbers property is set
- </summary>
- <returns>true if AwsAccountNumbers property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.UrlTrustedSigners.WithEnableSelf(System.Boolean)">
- <summary>
- Sets the EnableSelf property
- </summary>
- <param name="enableSelf">EnableSelf property</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.UrlTrustedSigners.AwsAccountNumbers">
- <summary>
- Gets and sets the AwsAccountNumbers property.
- A list of the AwsAccountNumbers for each AWS account (other than your own)
- that you want to give URL signing authority to (limit of five).
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.UrlTrustedSigners.EnableSelf">
- <summary>
- Gets and sets the EnableSelf property.
- Whether your own AWS account is authorized to sign URLs.
- Default - your AWS account is not authorized to sign URLs.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.PostInvalidationRequest">
- <summary>
- The PostInvalidationRequest contains the parameters used for the PostInvalidation operation.
- <br />Required Parameter: DistributionId, InvalidationBatch.CallerReference
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.PostInvalidationRequest.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.PostInvalidationRequest.#ctor(Amazon.CloudFront.Model.InvalidationBatch)">
- <summary>
- Constructs and instance of PostInvalidationRequest with an InvalidationBatch which will be
- set to the InvalidationBatch property.
- </summary>
- <param name="invalidationBatch">The InvalidationBatch property that will be set to the InvalidationBatch property.</param>
- </member>
- <member name="M:Amazon.CloudFront.Model.PostInvalidationRequest.WithDistribtionId(System.String)">
- <summary>
- Sets the DistributionId property of this request to the value passed in.
- </summary>
- <param name="distributionId">The distribution's id</param>
- <returns>The request with the DistributionId property set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.PostInvalidationRequest.WithInvalidationBatch(Amazon.CloudFront.Model.InvalidationBatch)">
- <summary>
- Sets the InvalidationBatch property of this request to the value passed in.
- </summary>
- <param name="invalidationBatch">An InvalidationBatch object that lists all the paths of objects to be invalidated.</param>
- <returns>The request with the InvalidationBatch property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.PostInvalidationRequest.DistributionId">
- <summary>
- Gets and Sets the DistributionId property for the Distribution
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.PostInvalidationRequest.InvalidationBatch">
- <summary>
- Gets and Sets the InvalidationBatch which contains the list of objects to invalidated.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontError">
- <summary>
- Represents an error returned by the CloudFront service. Exposes
- an error code, a message, a host ID and a request ID for
- debugging purposes.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontError.WithCode(System.String)">
- <summary>
- Sets the Code property.
- </summary>
- <param name="code">Code property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontError.IsSetCode">
- <summary>
- Checks if Code property is set.
- </summary>
- <returns>true if Code property is set.</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontError.Code">
- <summary>
- Gets and sets the Code property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontError.Message">
- <summary>
- Gets and sets the Message property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontError.Type">
- <summary>
- Gets and sets the Type property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontError.RequestId">
- <summary>
- Gets and sets the RequestId property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontDistributionConfig">
- <summary>
- The CloudFrontDistributionConfig complex type describes a distribution's configuration information.
- It is used as a request element in Create a Distribution and Set a Distribution's Configuration.
- It is used as a response element in Get a Distribution's Information and Get a Distribution's
- Configuration.
- <para>A distribution configuration objects consists of the following items:
- <list type="number">
- <item>Caller Reference</item>
- <item>Origin S3 Bucket</item>
- <item>Comment</item>
- <item>A list of CNAMEs for the distribution</item>
- <item>Enabled flag</item>
- <item>Bucket Logging details</item>
- <item>CloudFront Origin Access Identity associated with the distribution.
- This is a virtual identity you use to let CloudFront fetch private content
- from your bucket.</item>
- <item>The AWS Accounts that have URL signing privileges for Private Content.</item>
- </list>
- </para>
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionConfigDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.ToString">
- <summary>
- Creates an XML representation of the CloudFront
- distribution configuration. The resulting XML
- can be sent to CloudFront when creating or updating
- a distribution.
- </summary>
- <returns>
- XML representation of the distribution's configuration
- </returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithOrigin(System.String)">
- <summary>
- Sets the Origin property.
- </summary>
- <param name="origin">Origin property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithComment(System.String)">
- <summary>
- Sets the Comment property.
- </summary>
- <param name="comment">Comment property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithCallerReference(System.String)">
- <summary>
- Sets the CallerReference property
- </summary>
- <param name="callerReference">CallerReference property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithCNames(System.String[])">
- <summary>
- Sets the CNAME property. If you set more than 10 CNAME aliases for a distribution,
- a <code>TooManyDistributionCNAMEs</code> exception will be returned by CloudFront.
- </summary>
- <param name="cnames">CNAME property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithEnabled(System.Boolean)">
- <summary>
- Sets the Enabled property
- </summary>
- <param name="enabled">Enabled property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithOriginAccessIdentity(Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity)">
- <summary>
- Sets the OriginAccessIdentity property.
- </summary>
- <param name="identity">OriginAccessIdentity property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithTrustedSigners(Amazon.CloudFront.Model.UrlTrustedSigners)">
- <summary>
- Sets the TrustedSigners property.
- This specifies any AWS accounts you want to permit to create signed URLs for private content.
- </summary>
- <param name="signers">TrustedSigners property is set to this value</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithCustomOrigin(Amazon.CloudFront.Model.CustomOrigin)">
- <summary>
- Sets the CustomOrigin property.
- The CustomOrigin contains the information for a non Amazon S3 Bucket origin.
- This instance is returned to allow method chaining.
- </summary>
- <param name="customOrigin">CustomOrigin property is set to this value.</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithLogging(System.String,System.String)">
- <summary>
- Sets the Logging property.
- </summary>
- <param name="bucket">The bucket into which logs will be put</param>
- <param name="prefix">The prefix for the log files</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.IsSetRequiredProtocols">
- <summary>
- Checks if RequiredProtocols property is set.
- </summary>
- <returns>true if RequiredProtocols property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithRequiredProtocols(Amazon.CloudFront.Model.Protocol[])">
- <summary>
- Sets the RequiredProtocols property.
- Defines the protocols required for your distribution. Use this element to restrict
- access to your distribution solely to HTTPS requests. Without this element,
- CloudFront can use any available protocol to serve the request.
- For a list of possible protocol values, refer
- <see cref="T:Amazon.CloudFront.Model.Protocol"/>.
- </summary>
- <param name="protocols">RequiredProtocols property is set to this value</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.WithDefaultRootObject(System.String)">
- <summary>
- Sets the DefaultRootObject property.
- </summary>
- <param name="rootObject">The name of the default root object.</param>
- <returns>This instance.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistributionConfig.IsDefaultRootObjectSet">
- <summary>
- Checks to see if the DefaultRootObject property is set.
- </summary>
- <returns>True if DefaultRootObject is set. False otherwise.</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfig.CustomOrigin">
- <summary>
- Gets and sets the CustomOrigin property.
- The CustomOrigin contains the information for a non Amazon S3 Bucket origin.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfig.RequiredProtocols">
- <summary>
- Gets and sets the RequiredProtocols property.
- Defines the protocols required for your distribution. Use this element to restrict
- access to your distribution solely to HTTPS requests. Without this element,
- CloudFront can use any available protocol to serve the request.
- For a list of possible protocol values, refer
- <see cref="T:Amazon.CloudFront.Model.Protocol"/>.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistributionConfig.DefaultRootObject">
- <summary>
- Gets and sets the DefaultRootObject property.
- Defines the object that will be returned for requests made to the root URL of
- the distribution.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ValidateTemplateResult">
- <summary>
- <para> The output for ValidateTemplate action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ValidateTemplateResult.WithParameters(Amazon.CloudFormation.Model.TemplateParameter[])">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ValidateTemplateResult.WithParameters(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.TemplateParameter})">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ValidateTemplateResult.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResult.Parameters">
- <summary>
- A list of <c>TemplateParameter</c> structures.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ValidateTemplateResult.Description">
- <summary>
- The description found within the template.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.StackResourceSummaryUnmarshaller">
- <summary>
- StackResourceSummary Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.StackResourceDetailUnmarshaller">
- <summary>
- StackResourceDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackResourceResultUnmarshaller">
- <summary>
- DescribeStackResourceResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DeleteStackRequestMarshaller">
- <summary>
- Delete Stack Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.CreateStackResultUnmarshaller">
- <summary>
- CreateStackResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.StackResource">
- <summary>
- <para> The StackResource data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithStackId(System.String)">
- <summary>
- Sets the StackId property
- </summary>
- <param name="stackId">The value to set for the StackId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithLogicalResourceId(System.String)">
- <summary>
- Sets the LogicalResourceId property
- </summary>
- <param name="logicalResourceId">The value to set for the LogicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithPhysicalResourceId(System.String)">
- <summary>
- Sets the PhysicalResourceId property
- </summary>
- <param name="physicalResourceId">The value to set for the PhysicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithResourceType(System.String)">
- <summary>
- Sets the ResourceType property
- </summary>
- <param name="resourceType">The value to set for the ResourceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithTimestamp(System.DateTime)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The value to set for the Timestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithResourceStatus(System.String)">
- <summary>
- Sets the ResourceStatus property
- </summary>
- <param name="resourceStatus">The value to set for the ResourceStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithResourceStatusReason(System.String)">
- <summary>
- Sets the ResourceStatusReason property
- </summary>
- <param name="resourceStatusReason">The value to set for the ResourceStatusReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackResource.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.StackName">
- <summary>
- The name associated with the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.StackId">
- <summary>
- Unique identifier of the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.LogicalResourceId">
- <summary>
- The logical name of the resource specified in the template.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.PhysicalResourceId">
- <summary>
- The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.ResourceType">
- <summary>
- Type of the resource. (For more information, go to the <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS
- CloudFormation User Guide</a>.)
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.Timestamp">
- <summary>
- Time the status was updated.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.ResourceStatus">
- <summary>
- Current status of the resource.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.ResourceStatusReason">
- <summary>
- Success/failure message associated with the resource.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackResource.Description">
- <summary>
- User defined description associated with the resource.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackResourceResult">
- <summary>
- <para> The output for a DescribeStackResource action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackResourceResult.WithStackResourceDetail(Amazon.CloudFormation.Model.StackResourceDetail)">
- <summary>
- Sets the StackResourceDetail property
- </summary>
- <param name="stackResourceDetail">The value to set for the StackResourceDetail property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourceResult.StackResourceDetail">
- <summary>
- A <c>StackResourceDetail</c> structure containing the description of the specified resource in the specified stack.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.TerminateInstanceInAutoScalingGroupRequestMarshaller">
- <summary>
- Terminate Instance In Auto Scaling Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.PutScalingPolicyResultUnmarshaller">
- <summary>
- PutScalingPolicyResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.PutScalingPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PutScalingPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeNotificationConfigurationsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeNotificationConfigurations operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeMetricCollectionTypesRequestMarshaller">
- <summary>
- Describe Metric Collection Types Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingGroupsRequestMarshaller">
- <summary>
- Describe Auto Scaling Groups Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteScheduledActionRequestMarshaller">
- <summary>
- Delete Scheduled Action Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteAutoScalingGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteAutoScalingGroup operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.AutoScalingInstanceDetailsUnmarshaller">
- <summary>
- AutoScalingInstanceDetails Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.SetInstanceHealthRequest">
- <summary>
- Container for the parameters to the SetInstanceHealth operation.
- <para> Sets the health status of an instance. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.SetInstanceHealth(Amazon.AutoScaling.Model.SetInstanceHealthRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SetInstanceHealthRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The value to set for the InstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SetInstanceHealthRequest.WithHealthStatus(System.String)">
- <summary>
- Sets the HealthStatus property
- </summary>
- <param name="healthStatus">The value to set for the HealthStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SetInstanceHealthRequest.WithShouldRespectGracePeriod(System.Boolean)">
- <summary>
- Sets the ShouldRespectGracePeriod property
- </summary>
- <param name="shouldRespectGracePeriod">The value to set for the ShouldRespectGracePeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SetInstanceHealthRequest.InstanceId">
- <summary>
- The identifier of the EC2 instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SetInstanceHealthRequest.HealthStatus">
- <summary>
- The health status of the instance. "Healthy" means that the instance is healthy and should remain in service. "Unhealthy" means that the
- instance is unhealthy. Auto Scaling should terminate and replace it.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SetInstanceHealthRequest.ShouldRespectGracePeriod">
- <summary>
- If True, this call should respect the grace period associated with the group.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScalingProcessTypesRequest">
- <summary>
- Container for the parameters to the DescribeScalingProcessTypes operation.
- <para>Returns scaling process types for use in the ResumeProcesses and SuspendProcesses actions.</para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeScalingProcessTypes(Amazon.AutoScaling.Model.DescribeScalingProcessTypesRequest)"/>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribePoliciesRequest">
- <summary>
- Container for the parameters to the DescribePolicies operation.
- <para> Returns descriptions of what each policy does. This action supports pagination. If the response includes a token, there are more
- records available. To get the additional records, repeat the request with the response token as the NextToken parameter. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribePolicies(Amazon.AutoScaling.Model.DescribePoliciesRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesRequest.WithPolicyNames(System.String[])">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesRequest.WithPolicyNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribePoliciesRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribePoliciesRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribePoliciesRequest.PolicyNames">
- <summary>
- A list of policy names or policy ARNs to be described. If this list is omitted, all policy names are described. If an auto scaling group
- name is provided, the results are limited to that group.The list of requested policy names cannot contain more than 50 items. If unknown
- policy names are requested, they are ignored with no error.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribePoliciesRequest.NextToken">
- <summary>
- A string that is used to mark the start of the next batch of returned results for pagination.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribePoliciesRequest.MaxRecords">
- <summary>
- The maximum number of policies that will be described with each call.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 50</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResponse">
- <summary>
- Returns information about the DescribeNotificationConfigurationsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeNotificationConfigurationsResponse.DescribeNotificationConfigurationsResult">
- <summary>
- Gets and sets the DescribeNotificationConfigurationsResult property.
- The output of the DescribeNotificationConfigurations action.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResult">
- <summary>
- <para> The AutoScalingGroupsType data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResult.WithAutoScalingGroups(Amazon.AutoScaling.Model.AutoScalingGroup[])">
- <summary>
- Adds elements to the AutoScalingGroups collection
- </summary>
- <param name="autoScalingGroups">The values to add to the AutoScalingGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResult.WithAutoScalingGroups(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.AutoScalingGroup})">
- <summary>
- Adds elements to the AutoScalingGroups collection
- </summary>
- <param name="autoScalingGroups">The values to add to the AutoScalingGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResult.AutoScalingGroups">
- <summary>
- A list of Auto Scaling groups.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingGroupsResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Resource">
- <summary>
- Represents a resource involved in an AWS access control policy statement.
- Resources are the service specific AWS entities owned by your account. Amazon
- SQS queues, Amazon S3 buckets and objects, and Amazon SNS topics are all
- examples of AWS resources.
- <para>
- The standard way of specifying an AWS resource is with an Amazon Resource
- Name (ARN).
- </para>
- <para>
- The resource is C in the statement
- "A has permission to do B to C where D applies."
- </para>
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Resource.#ctor(System.String)">
- <summary>
- Constructs a new AWS access control policy resource. Resources are
- typically specified as Amazon Resource Names (ARNs).
- <para>
- You specify the resource using the following Amazon Resource Name (ARN)
- format: arn:aws:&lt;vendor>:&lt;region>:&lt;namespace>:&lt;relative-id>
- <list type="bullet">
- <item>
- <description>>vendor identifies the AWS product (e.g., sns)</description>
- </item>
- <item>
- <description>region is the AWS Region the resource resides in (e.g., us-east-1), if any</description>
- </item>
- <item>
- <description>namespace is the AWS account ID with no hyphens (e.g., 123456789012)</description>
- </item>
- <item>
- <description>relative-id is the service specific portion that identifies the specific resource</description>
- </item>
- </list>
- </para>
- <para>
- For example, an Amazon SQS queue might be addressed with the following
- ARN: arn:aws:sqs:us-east-1:987654321000:MyQueue
- </para>
- <para>
- Some resources may not use every field in an ARN. For example, resources
- in Amazon S3 are global, so they omit the region field:
- arn:aws:s3:::bucket/*
- </para>
- </summary>
- <param name="resource">The Amazon Resource Name (ARN) uniquely identifying the desired AWS resource.</param>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Resource.Id">
- <summary>
- Gets the resource ID, typically an Amazon Resource Name (ARN),
- identifying this resource.
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers">
- <summary>
- The available AWS access control policy actions for Amazon Simple Queue
- Service.
- </summary>
- <see cref="P:Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.AllSqsActions">
- <summary>
- Represents any action being taken on Amazon SQS.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.AddPermission">
- <summary>
- Action for the AddPermission operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.AddPermissionRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.ChangeMessageVisibility">
- <summary>
- Action for the ChangeMessageVisibility operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.ChangeMessageVisibilityRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.CreateQueue">
- <summary>
- Action for the CreateQueue operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.CreateQueueRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.DeleteMessage">
- <summary>
- Action for the DeleteMessage operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.DeleteMessageRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.DeleteQueue">
- <summary>
- Action for the DeleteQueue operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.DeleteQueueRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.GetQueueAttributes">
- <summary>
- Action for the GetQueueAttributes operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.GetQueueAttributesRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.ListQueues">
- <summary>
- Action for the ListQueues operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.ListQueuesRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.ReceiveMessage">
- <summary>
- Action for the ReceiveMessage operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.ReceiveMessageRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.RemovePermission">
- <summary>
- Action for the RemovePermission operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.RemovePermissionRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.SendMessage">
- <summary>
- Action for the SendMessage operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.SendMessageRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SQSActionIdentifiers.SetQueueAttributes">
- <summary>
- Action for the SetQueueAttributes operation on Amazon SQS.
- </summary>
- <see cref="T:Amazon.SQS.Model.SetQueueAttributesRequest"/>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers">
- <summary>
- The available AWS access control policy actions for Amazon CloudFront.
- </summary>
- <see cref="P:Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.AllCloudFrontActions">
- <summary>
- Represents any action being taken on AWS CloudFormation.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.CreateDistribution">
- <summary>
- Action for the <code>CreateDistribution</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.CreateDistribution"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.GetDistribution">
- <summary>
- Action for the <code>GetDistributionInfo</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetDistributionInfo"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.GetDistributionConfig">
- <summary>
- Action for the <code>GetDistributionConfig</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetDistributionConfig"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.UpdateDistribution">
- <summary>
- Action for the <code>SetDistributionConfig</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.SetDistributionConfig"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.ListDistributions">
- <summary>
- Action for the <code>ListDistributions</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.ListDistributions"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.DeleteDistribution">
- <summary>
- Action for the <code>DeleteDistribution</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.DeleteDistribution"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.CreateStreamingDistribution">
- <summary>
- Action for the <code>CreateStreamingDistribution</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.CreateStreamingDistribution"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.GetStreamingDistribution">
- <summary>
- Action for the <code>GetStreamingDistributionInfo</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetStreamingDistributionInfo"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.GetStreamingDistributionConfig">
- <summary>
- Action for the <code>GetStreamingDistributionConfig</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetStreamingDistributionConfig"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.UpdateStreamingDistribution">
- <summary>
- Action for the <code>SetStreamingDistributionConfig</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.SetStreamingDistributionConfig"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.ListStreamingDistributions">
- <summary>
- Action for the <code>ListStreamingDistributions</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.ListStreamingDistributions"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.DeleteStreamingDistribution">
- <summary>
- Action for the <code>DeleteStreamingDistribution</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.DeleteStreamingDistribution"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.CreateInvalidation">
- <summary>
- Action for the <code>PostInvalidation</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.PostInvalidation"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.GetInvalidation">
- <summary>
- Action for the <code>GetInvalidation</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetInvalidation"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.ListInvalidations">
- <summary>
- Action for the <code>GetInvalidationList</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetInvalidationList"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.CreateCloudFrontOriginAccessIdentity">
- <summary>
- Action for the <code>CreateOriginAccessIdentity</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.CreateOriginAccessIdentity"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.GetCloudFrontOriginAccessIdentity">
- <summary>
- Action for the <code>GetOriginAccessIdentityInfo</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetOriginAccessIdentityInfo"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.GetCloudFrontOriginAccessIdentityConfig">
- <summary>
- Action for the <code>GetOriginAccessIdentityConfig</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.GetOriginAccessIdentityConfig"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.UpdateCloudFrontOriginAccessIdentity">
- <summary>
- Action for the <code>SetOriginAccessIdentityConfig</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.SetOriginAccessIdentityConfig"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.ListCloudFrontOriginAccessIdentities">
- <summary>
- Action for the <code>ListOriginAccessIdentities</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.ListOriginAccessIdentities"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFrontActionIdentifers.DeleteCloudFrontOriginAccessIdentity">
- <summary>
- Action for the <code>DeleteOriginAccessIdentity</code> operation.
- </summary>
- <see cref="M:Amazon.CloudFront.AmazonCloudFront.DeleteOriginAccessIdentity"/>
- </member>
- <member name="M:ThirdParty.BouncyCastle.Utilities.IO.Pem.PemObjectGenerator.Generate">
- <returns>
- A <see cref="T:ThirdParty.BouncyCastle.Utilities.IO.Pem.PemObject"/>
- </returns>
- <exception cref="T:ThirdParty.BouncyCastle.Utilities.IO.Pem.PemGenerationException"></exception>
- </member>
- <member name="M:ThirdParty.BouncyCastle.Math.BigInteger.AddMagnitudes(System.Int32[],System.Int32[])">
- return a = a + b - b preserved.
- </member>
- <member name="M:ThirdParty.BouncyCastle.Math.BigInteger.CompareTo(System.Int32,System.Int32[],System.Int32,System.Int32[])">
- unsigned comparison on two arrays - note the arrays may
- start with leading zeros.
- </member>
- <member name="M:ThirdParty.BouncyCastle.Math.BigInteger.Subtract(System.Int32,System.Int32[],System.Int32,System.Int32[])">
- returns x = x - y - we assume x is >= y
- </member>
- <member name="P:ThirdParty.BouncyCastle.Asn1.Asn1Sequence.Item(System.Int32)">
- return the object at the sequence position indicated by index.
-
- @param index the sequence number (starting at zero) of the object
- @return the object at the sequence position indicated by index.
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.DerSequence.#ctor">
- create an empty sequence
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.DerSequence.#ctor(ThirdParty.BouncyCastle.Asn1.Asn1Encodable)">
- create a sequence containing one object
- </member>
- <member name="M:ThirdParty.BouncyCastle.Asn1.DerSequence.#ctor(ThirdParty.BouncyCastle.Asn1.Asn1EncodableVector)">
- create a sequence containing a vector of objects.
- </member>
- <member name="T:Amazon.SQS.Model.ErrorResponse">
- <summary>
- A list of errors associated with a request returned by Amazon SQS.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ErrorResponse.IsSetError">
- <summary>
- Checks if Error property is set
- </summary>
- <returns>true if Error property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ErrorResponse.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ErrorResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ErrorResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ErrorResponse.Error">
- <summary>
- Gets and sets the Error property.
- Error
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ErrorResponse.RequestId">
- <summary>
- Gets and sets the RequestId property.
- A unique ID for tracking the request.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.DeleteMessageRequest">
- <summary>
- The DeleteMessage action unconditionally removes the specified message from the specified queue. Even if the message
- is locked by another reader due to the visibility timeout setting, it is still deleted from the queue.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageRequest.WithReceiptHandle(System.String)">
- <summary>
- Sets the ReceiptHandle property
- </summary>
- <param name="receiptHandle">The receipt handle associated with the message you want to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageRequest.IsSetReceiptHandle">
- <summary>
- Checks if ReceiptHandle property is set
- </summary>
- <returns>true if ReceiptHandle property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageRequest.WithAttribute(Amazon.SQS.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Name and value pair of an attribute associated with the queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteMessageRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.DeleteMessageRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.DeleteMessageRequest.ReceiptHandle">
- <summary>
- Gets and sets the ReceiptHandle property.
- The receipt handle associated with the message you want to delete.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.DeleteMessageRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.Attribute">
- <summary>
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.Attribute.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">Name of the attribute.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Attribute.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Attribute.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">Values of the attribute.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Attribute.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Attribute.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.Attribute.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.Attribute.Name">
- <summary>
- Gets and sets the Name property.
- Name of the attribute.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.Attribute.Value">
- <summary>
- Gets and sets the Value property.
- Values of the attribute.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.UnsubscribeRequest">
- <summary>
- The Unsubscribe action deletes a subscription. If the subscription requires authentication for
- deletion, only the owner of the subscription or the its topic's owner
- can unsubscribe, and an AWS signature is required. If the
- Unsubscribe call does not require authentication and the requester is not
- the subscription owner, a final cancellation message is delivered to the
- endpoint, so that the endpoint owner can easily resubscribe to the topic if
- the Unsubscribe request was unintended.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.UnsubscribeRequest.WithSubscriptionArn(System.String)">
- <summary>
- Sets the SubscriptionArn property
- </summary>
- <param name="subscriptionArn">The ARN of the subscription to be deleted.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.UnsubscribeRequest.IsSetSubscriptionArn">
- <summary>
- Checks if SubscriptionArn property is set
- </summary>
- <returns>true if SubscriptionArn property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.UnsubscribeRequest.SubscriptionArn">
- <summary>
- Gets and sets the SubscriptionArn property.
- The ARN of the subscription to be deleted.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.VerifyEmailAddressRequest">
- <summary>
- Container for the parameters to the VerifyEmailAddress operation.
- <para>Verifies an email address. This action causes a confirmation
- email message to be sent to the specified address.</para>
- </summary>
- <seealso cref="M:Amazon.SimpleEmail.AmazonSimpleEmailService.VerifyEmailAddress(Amazon.SimpleEmail.Model.VerifyEmailAddressRequest)"/>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.VerifyEmailAddressRequest.WithEmailAddress(System.String)">
- <summary>
- Sets the EmailAddress property
- </summary>
- <param name="emailAddress">The value to set for the EmailAddress property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.VerifyEmailAddressRequest.EmailAddress">
- <summary>
- The email address to be verified.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.SendDataPointUnmarshaller">
- <summary>
- SendDataPoint Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesRequest">
- <summary>
- Container for the parameters to the ListVerifiedEmailAddresses operation.
- <para>Returns a list containing all of the email addresses that have
- been verified.</para>
- </summary>
- <seealso cref="M:Amazon.SimpleEmail.AmazonSimpleEmailService.ListVerifiedEmailAddresses(Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesRequest)"/>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Body">
- <summary>
- <para>Represents the body of the message. You can specify text, HTML,
- or both. If you use both, then the message should display correctly in
- the widest variety of email clients.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Body.#ctor">
- <summary>
- Default constructor for a new Body object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Body.#ctor(Amazon.SimpleEmail.Model.Content)">
- <summary>
- Constructs a new Body object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="text"> The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks
- (such as mobile devices). </param>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Body.WithText(Amazon.SimpleEmail.Model.Content)">
- <summary>
- Sets the Text property
- </summary>
- <param name="text">The value to set for the Text property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Body.WithHtml(Amazon.SimpleEmail.Model.Content)">
- <summary>
- Sets the Html property
- </summary>
- <param name="html">The value to set for the Html property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Body.Text">
- <summary>
- The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile
- devices).
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Body.Html">
- <summary>
- The content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted
- text, and much more in an HTML message.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.SelectResult">
- <summary>
- The Select operation returns a set of Attributes for ItemNames that match the select expression.
- The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items
- returned per page to enforce this limit. For example, even if you ask to retrieve 2500 items, but each individual
- item is 10 kB in size, the system returns 100 items and an appropriate next token so you can get the next page of results.
- Operations that run longer than 5 seconds return a time-out error response or a partial or empty result set. Partial
- and empty result sets contains a next token which allow you to continue the operation from where it left off.
- Responses larger than one megabyte return a partial result set.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResult.WithItem(Amazon.SimpleDB.Model.Item[])">
- <summary>
- Sets the Item property
- </summary>
- <param name="list">Items represent individual objects that contain one or more attribute name-value pairs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResult.IsSetItem">
- <summary>
- Checks if Item property is set
- </summary>
- <returns>true if Item property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">An opaque token indicating that more than MaxNumberOfItems matched, the response size exceeded 1 megabyte,
- or the execution time exceeded 5 seconds.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectResult.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.SelectResult.Item">
- <summary>
- Gets and sets the Item property.
- Items represent individual objects that contain one or more attribute name-value pairs.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.SelectResult.NextToken">
- <summary>
- Gets and sets the NextToken property.
- An opaque token indicating that more than MaxNumberOfItems matched, the response size exceeded 1 megabyte,
- or the execution time exceeded 5 seconds.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.Attribute">
- <summary>
- An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The name of the attribute.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value of the attribute.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.WithNameEncoding(System.String)">
- <summary>
- Sets the NameEncoding property
- </summary>
- <param name="nameEncoding">The encoding for the attribute's name. For example: base64</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.IsSetNameEncoding">
- <summary>
- Checks if NameEncoding property is set
- </summary>
- <returns>true if NameEncoding property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.WithValueEncoding(System.String)">
- <summary>
- Sets the ValueEncoding property
- </summary>
- <param name="valueEncoding">The encoding for the attribute's value. For example: base64</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Attribute.IsSetValueEncoding">
- <summary>
- Checks if ValueEncoding property is set
- </summary>
- <returns>true if ValueEncoding property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Attribute.Name">
- <summary>
- Gets and sets the Name property.
- The name of the attribute.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Attribute.Value">
- <summary>
- Gets and sets the Value property.
- The value of the attribute.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Attribute.NameEncoding">
- <summary>
- Gets and sets the NameEncoding property.
- The encoding for the attribute's name. For example: base64
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Attribute.ValueEncoding">
- <summary>
- Gets and sets the ValueEncoding property.
- The encoding for the attribute's value. For example: base64
- </summary>
- </member>
- <member name="T:Amazon.S3.Transfer.TransferUtilityUploadRequest">
- <summary>
- Contains all the parameters
- that can be set when making a this request with the
- <c>TransferUtility</c> method.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithBucketName(System.String)">
- <summary>
- Sets the name of the bucket
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="bucketName">
- The name of the bucket.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithKey(System.String)">
- <summary>
- Sets the key under which the Amazon S3 object is stored
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithCannedACL(Amazon.S3.Model.S3CannedACL)">
- <summary>
- Gets or sets the canned access control list (ACL)
- for the uploaded object.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on Amazon S3 canned ACLs.
- </summary>
- <value>
- The canned access control list (ACL)
- for the uploaded object.
- </value>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.IsSetCannedACL">
- <summary>
- Checks if the CannedACL property is set.
- </summary>
- <returns>true if there is the CannedACL property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.RemoveCannedACL">
- <summary>
- Removes the cannned access control list (ACL)
- for the uploaded object.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithContentType(System.String)">
- <summary>
- Sets the content type of the uploaded Amazon S3 object.
- and returns this object instance,
- enabling additional method calls to be chained together.
- This property defaults to <c>binary/octet-stream</c>.
- </summary>
- <param name="contentType">the value the ContentType to be set to</param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.IsSetContentType">
- <summary>
- Checks if ContentType property is set.
- </summary>
- <returns>true if ContentType property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithMetadata(System.String,System.String)">
- <summary>
- Adds a set of key-value pairs to the request
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="key">
- The key to associate with the Amazon S3 object.
- </param>
- <param name="value">
- The value for the key.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithMetadata(System.Collections.Specialized.NameValueCollection)">
- <summary>
- Adds a set of key-value pairs to the request
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="metaInfo">
- The set of key-value pairs
- associated with the Amazon S3 object.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.IsSetMetadata">
- <summary>
- Checks if Metadata property is set.
- </summary>
- <returns>true if Metadata property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.RemoveMetadata(System.String)">
- <summary>
- Removes a key from the metadata list if it was
- added previously.
- </summary>
- <param name="key">
- The key to remove.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithStorageClass(Amazon.S3.Model.S3StorageClass)">
- <summary>
- Sets the storage class for the uploaded Amazon S3 object.
- and returns this object instance,
- enabling additional method calls to be chained together.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- <param name="sClass">
- The storage class for the uploaded Amazon S3 object.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithFilePath(System.String)">
- <summary>
- Sets the file path location of where the
- Amazon S3 object will be uploaded from
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="filePath">The value that FilePath is set to</param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.IsSetFilePath">
- <summary>
- Checks if FilePath property is set.
- </summary>
- <returns>true if FilePath property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the sets the timeout property in milliseconds
- and returns this object instance,
- enabling additional method calls to be chained together.
- Set the timeout only if certain that
- the file will not be transferred within the default intervals
- for an HttpWebRequest.
- </summary>
- <param name="timeout">
- The timeout in milliseconds.
- </param>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithPartSize(System.Int64)">
- <summary>
- Sets the part size of the upload in bytes
- and returns this object instance,
- enabling additional method calls to be chained together.
- The uploaded file will be divided into
- parts the size specified and
- uploaded to Amazon S3 individually.
- </summary>
- <param name="partSize">
- The part size of the upload.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.IsSetPartSize">
- <summary>
- Checks if PartSize property is set.
- </summary>
- <returns>true if PartSize property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithSubscriber(System.EventHandler{Amazon.S3.Transfer.UploadProgressArgs})">
- <summary>
- The handler will be attached to the UploadProgressEvent which is fired as data
- is uploaded to S3. The handler will be passed information detailing how much data
- has been uploaded as well as how much will be uploaded.
- </summary>
- <param name="handler">A method that is called when UploadProgressEvent is fired.</param>
- <returns>this instance of the TransferUtilityUploadRequest</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.OnRaiseProgressEvent(System.Int64,System.Int64,System.Int64)">
- <summary>
- Causes the UploadProgressEvent event to be fired.
- </summary>
- <param name="incrementTransferred">The how many bytes were transferred since last event.</param>
- <param name="transferred">How many bytes have been transferred.</param>
- <param name="total">The total number of bytes to be tranferred.</param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityUploadRequest.WithAutoCloseStream(System.Boolean)">
- <summary>
- Sets whether or not the stream used with this request is
- automatically closed when all of the content is read from the stream
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="autoCloseStream">
- A value of <c>true</c> if the if the stream is
- automatically closed when all of the content is read from the stream.
- A value of <c>false</c> if otherwise.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.BucketName">
- <summary>
- Gets or sets the name of the bucket.
- </summary>
- <value>
- The name of the bucket.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.Key">
- <summary>
- Gets or sets the key under which the Amazon S3 object is to be stored.
- </summary>
- <value>
- The key under which the Amazon S3 object is to be stored.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.CannedACL">
- <summary>
- Gets or sets the canned access control list (ACL)
- for the uploaded object.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on Amazon S3 canned ACLs.
- </summary>
- <value>
- The canned access control list (ACL)
- for the uploaded object.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.ContentType">
- <summary>
- Gets or sets the content type of the uploaded Amazon S3 object.
- </summary>
- <value>
- The content type of the uploaded Amazon S3 object.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.StorageClass">
- <summary>
- Gets or sets the storage class for the uploaded Amazon S3 object.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- <value>
- The storage class for the uploaded Amazon S3 object.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.FilePath">
- <summary>
- Gets or sets the file path
- where the Amazon S3 object will be uploaded from.
- </summary>
- <value>
- The file path where the Amazon S3 object will be uploaded from.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.Timeout">
- <summary>
- Gets or sets the timeout property in milliseconds.
- The value of this property is assigned to the
- <c>ReadWriteTimeout</c> and <c>Timeout</c> properties of the
- <c>HTTPWebRequest</c> object used for Amazon S3 GET Object requests.
- </summary>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.PartSize">
- <summary>
- Gets or sets the part size of the upload in bytes.
- The uploaded file will be divided into
- parts the size specified and
- uploaded to Amazon S3 individually.
- </summary>
- <value>
- The part size of the upload.
- </value>
- </member>
- <member name="E:Amazon.S3.Transfer.TransferUtilityUploadRequest.UploadProgressEvent">
- <summary>
- The event for UploadProgressEvent notifications. All
- subscribers will be notified when a new progress
- event is raised.
- <para>
- The UploadProgressEvent is fired as data
- is uploaded to S3. The delegates attached to the event
- will be passed information detailing how much data
- has been uploaded as well as how much will be uploaded.
- </para>
- </summary>
- <remarks>
- Subscribe to this event if you want to receive
- UploadProgressEvent notifications. Here is how:<br />
- 1. Define a method with a signature similar to this one:
- <code>
- private void displayProgress(object sender, UploadProgressArgs args)
- {
- Console.WriteLine(args);
- }
- </code>
- 2. Add this method to the UploadProgressEvent delegate's invocation list
- <code>
- TransferUtilityUploadRequest request = new TransferUtilityUploadRequest();
- request.UploadProgressEvent += displayProgress;
- </code>
- </remarks>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.ContentLength">
- <summary>
- Gets the length of the content by either checking the FileInfo.Length property or the Stream.Length property.
- </summary>
- <value>The length of the content.</value>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityUploadRequest.AutoCloseStream">
- <summary>
- Gets or sets whether or not the stream used with this request is
- automatically closed when all of the content is read from the stream.
- </summary>
- <value>
- A value of <c>true</c> if the if the stream is
- automatically closed when all of the content is read from the stream.
- A value of <c>false</c> if otherwise.
- </value>
- </member>
- <member name="T:Amazon.S3.Transfer.UploadProgressArgs">
- <summary>
- Encapsulates the information needed to provide
- transfer progress to subscribers of the Put Object
- Event.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.UploadProgressArgs.#ctor(System.Int64,System.Int64,System.Int64)">
- <summary>
- The constructor takes the number of
- currently transferred bytes and the
- total number of bytes to be transferred
- </summary>
- <param name="incrementTransferred">The how many bytes were transferred since last event.</param>
- <param name="transferred">The number of bytes transferred</param>
- <param name="total">The total number of bytes to be transferred</param>
- </member>
- <member name="T:Amazon.S3.Transfer.Internal.UploadDirectoryCommand">
- <summary>
- This command files all the files that meets the criteria specified in the TransferUtilityUploadDirectoryRequest request
- and uploads them.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketLocationRequest">
- <summary>
- The GetBucketLocationRequest contains the parameters used for the GetBucketLocation operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketLocationRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket the request will get the location for.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketLocationRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketLocationRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetACLResponse">
- <summary>
- The GetACLResponse contains all the information about the
- GetACL operation.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetACLResponse.AccessControlList">
- <summary>
- Gets and sets the AccessControlList property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetACLResponse.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the version-id of the S3 object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetACLResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetACLRequest">
- <summary>
- The GetACLRequest contains the parameters used for the GetACL operation.
- The BucketName is always required, the Key is optional and is to be set
- if you want the ACL for an object instead of a bucket.
- <br />Required Parameters: BucketName
- <br />Optional Parameters: Key, VersionId
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetACLRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is either the S3 Bucket whose ACL you want to get,
- or the S3 Bucket that has the S3 Object whose ACL
- you want to get.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetACLRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetACLRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object whose ACL you
- want to get.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetACLRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetACLRequest.WithVersionId(System.String)">
- <summary>
- Sets the VersionId property for this request.
- This is the Version Id of the S3 Object for
- which the ACL will be retrieved. This property
- is ignored if the ACL is requested for a Bucket.
- </summary>
- <param name="versionId">The value that VersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetACLRequest.IsSetVersionId">
- <summary>
- Checks if VersionId property is set.
- </summary>
- <returns>true if VersionId property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetACLRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetACLRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetACLRequest.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the Version Id of the S3 Object for
- which the ACL will be retrieved. This property
- is ignored if the ACL is requested for a Bucket.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3BucketVersioningConfig">
- <summary>
- Represents an S3 Bucket Versioning Configuration.
- Contains the buckets VersioningStatus - Off, Enabled, Suspended.
- Whether an MFADelete has been enabled for the bucket.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketVersioningConfig.ToString">
- <summary>
- Provides the XML representation of the S3BucketVersioningConfig
- </summary>
- <returns>A String representation of the S3BucketVersioningConfig Object.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketVersioningConfig.WithStatus(System.String)">
- <summary>
- Sets the Status property.
- </summary>
- <param name="status">The value for the Status property</param>
- <returns>The Versioning Configuration object with status modified
- </returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketVersioningConfig.IsSetStatus">
- <summary>
- Checks if Status property is set
- </summary>
- <returns>true if Status property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketVersioningConfig.WithEnableMfaDelete(System.Boolean)">
- <summary>
- Sets the EnableMfaDelete property. If this property is set,
- please ensure that the SetBucketVersioningRequest's MfaCodes
- property is set with the Serial of and Token on the MFA device.
- </summary>
- <param name="fEnabled">Whether MfaDelete will be enabled on the S3 Bucket</param>
- <returns>The S3 Versioning Configuration object with EnableMfaDelete modified
- </returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketVersioningConfig.IsSetEnableMfaDelete">
- <summary>
- Checks if EnableMfaDelete property is set.
- </summary>
- <returns>true if Status property is set</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3BucketVersioningConfig.Status">
- <summary>
- Gets and sets the Status property.
- Accepted Values are Off, Enabled, Suspended
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3BucketVersioningConfig.EnableMfaDelete">
- <summary>
- Gets and Sets the EnableMfaDelete property.
- Specifies whether MFA Delete is enabled on this S3 Bucket.
- If this property is set, please ensure that the
- SetBucketVersioningRequest's MfaCodes property is set with
- the Serial of and Token on the MFA device.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.EnableBucketLoggingResponse">
- <summary>
- The EnableBucketLoggingResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DisableBucketLoggingResponse">
- <summary>
- The DisableBucketLoggingResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PartETag">
- <summary>
- A container object for holding the part number and etag used when completing a
- multipart upload.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PartETag.#ctor">
- <summary>
- Default constructor.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PartETag.CompareTo(Amazon.S3.Model.PartETag)">
- <summary>
- Compares the current object with another object of the same type.
- </summary>
- <param name="other">An object to compare with this object.</param>
- <returns>
- A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings:
- Value
- Meaning
- Less than zero
- This object is less than the <paramref name="other"/> parameter.
- Zero
- This object is equal to <paramref name="other"/>.
- Greater than zero
- This object is greater than <paramref name="other"/>.
- </returns>
- </member>
- <member name="M:Amazon.S3.Model.PartETag.#ctor(System.Int32,System.String)">
- <summary>
- Constructs an instance of PartETag and sets the part number and etag.
- </summary>
- <param name="partNumber">The part number.</param>
- <param name="eTag">the associated ETag for the part number.</param>
- </member>
- <member name="M:Amazon.S3.Model.PartETag.WithPartNumber(System.Int32)">
- <summary>
- Sets the PartNumber property for this request.
- </summary>
- <param name="partNumber">The value that PartNumber is set to</param>
- <returns>the request with the PartNumber set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PartETag.WithETag(System.String)">
- <summary>
- Sets the ETag property for this request.
- </summary>
- <param name="eTag">The value that ETag is set to</param>
- <returns>the request with the ETag set</returns>
- </member>
- <member name="P:Amazon.S3.Model.PartETag.PartNumber">
- <summary>
- Gets and sets the PartNumber property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PartETag.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.InitiateMultipartUploadResponse">
- <summary>
- The InitiateMultipartUploadResponse contains all the information about the
- InitiateMultipartUpload method.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadResponse.BucketName">
- <summary>
- Gets and sets the name of the bucket.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadResponse.Key">
- <summary>
- Gets and sets the object key for which the multipart upload was initiated.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadResponse.UploadId">
- <summary>
- Gets and sets the initiated multipart upload id.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetNotificationConfigurationResponse">
- <summary>
- The GetNotificationConfigurationResponse contains all the information about the
- GetNotificationConfiguration operation.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetNotificationConfigurationResponse.NotificationConfiguration">
- <summary>
- Gets and sets the NotificationConfigurationList property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketWebsiteResponse">
- <summary>
- The GetBucketWebsiteResponse contains the properties for S3 website configuration and
- any headers returned by S3.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketWebsiteResponse.WithWebsiteConfiguration(Amazon.S3.Model.WebsiteConfiguration)">
- <summary>
- Sets the WithWebsiteConfiguration property for this request.
- </summary>
- <param name="config">The value that WithWebsiteConfiguration is set to</param>
- <returns>the request with the WebsiteConfiguration set</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketWebsiteResponse.WebsiteConfiguration">
- <summary>
- Gets and sets the WebsiteConfiguration property.
-
- This is where the index document suffix and custom error page are defined.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketWebsiteRequest">
- <summary>
- The GetBucketWebsiteRequest contains the parameters used for the GetBucketWebsiteRequest operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketWebsiteRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket whose website configuration will be fetched.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketWebsiteRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketWebsiteRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.SignatureException">
- <summary>
- This exception is thrown if there are problems signing the request.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.ErrorResponseUnmarshaller">
- <summary>
- Response Unmarshaller for all Errors
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.ErrorResponseUnmarshaller.Unmarshall(Amazon.Runtime.Internal.Transform.UnmarshallerContext)">
- <summary>
- Build an ErrorResponse from XML
- </summary>
- <param name="context">The XML parsing context.
- Usually an <c>Amazon.Runtime.Internal.UnmarshallerContext</c>.</param>
- <returns>An <c>ErrorResponse</c> object.</returns>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.ErrorResponseUnmarshaller.GetInstance">
- <summary>
- Return an instance of and ErrorResponseUnmarshaller.
- </summary>
- <returns></returns>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RebootDBInstanceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RebootDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.PurchaseReservedDBInstancesOfferingRequestMarshaller">
- <summary>
- Purchase Reserved D B Instances Offering Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ModifyDBInstanceRequestMarshaller">
- <summary>
- Modify D B Instance Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.AuthorizeDBSecurityGroupIngressRequestMarshaller">
- <summary>
- Authorize D B Security Group Ingress Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.SnapshotQuotaExceededException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.SnapshotQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new SnapshotQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.ReservedDBInstanceQuotaExceededException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstanceQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new ReservedDBInstanceQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.ModifyDBInstanceRequest">
- <summary>
- Container for the parameters to the ModifyDBInstance operation.
- <para> Modify settings for a DB Instance. You can change one or more database configuration parameters by specifying these parameters and
- the new values in the request. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.ModifyDBInstance(Amazon.RDS.Model.ModifyDBInstanceRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithAllocatedStorage(System.Int32)">
- <summary>
- Sets the AllocatedStorage property
- </summary>
- <param name="allocatedStorage">The value to set for the AllocatedStorage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithDBSecurityGroups(System.String[])">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithDBSecurityGroups(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithApplyImmediately(System.Boolean)">
- <summary>
- Sets the ApplyImmediately property
- </summary>
- <param name="applyImmediately">The value to set for the ApplyImmediately property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithMasterUserPassword(System.String)">
- <summary>
- Sets the MasterUserPassword property
- </summary>
- <param name="masterUserPassword">The value to set for the MasterUserPassword property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithBackupRetentionPeriod(System.Int32)">
- <summary>
- Sets the BackupRetentionPeriod property
- </summary>
- <param name="backupRetentionPeriod">The value to set for the BackupRetentionPeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithPreferredBackupWindow(System.String)">
- <summary>
- Sets the PreferredBackupWindow property
- </summary>
- <param name="preferredBackupWindow">The value to set for the PreferredBackupWindow property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithPreferredMaintenanceWindow(System.String)">
- <summary>
- Sets the PreferredMaintenanceWindow property
- </summary>
- <param name="preferredMaintenanceWindow">The value to set for the PreferredMaintenanceWindow property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithAllowMajorVersionUpgrade(System.Boolean)">
- <summary>
- Sets the AllowMajorVersionUpgrade property
- </summary>
- <param name="allowMajorVersionUpgrade">The value to set for the AllowMajorVersionUpgrade property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBInstanceRequest.WithAutoMinorVersionUpgrade(System.Boolean)">
- <summary>
- Sets the AutoMinorVersionUpgrade property
- </summary>
- <param name="autoMinorVersionUpgrade">The value to set for the AutoMinorVersionUpgrade property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.DBInstanceIdentifier">
- <summary>
- The DB Instance identifier. This value is stored as a lowercase string. Constraints: <ul> <li>Must be the identifier for an existing DB
- Instance</li> <li>Must contain from 1 to 63 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end
- with a hyphen or contain two consecutive hyphens</li> </ul> Example: <copy>mydbinstance</copy>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.AllocatedStorage">
- <summary>
- The new storage capacity of the RDS instance. This change does not result in an outage and is applied during the next maintenance window
- unless the <c>ApplyImmediately</c> parameter is specified as <c>true</c> for this request. <b>MySQL</b> Default: Uses existing setting Valid
- Values: 5-1024 Constraints: Value supplied must be at least 10% greater than the current value. Values that are not at least 10% greater
- than the existing value are rounded up so that they are 10% greater than the current value. Type: Integer <b>MySQL</b> Default: Uses
- existing setting Valid Values: 10-1024 Constraints: Value supplied must be at least 10% greater than the current value. Values that are not
- at least 10% greater than the existing value are rounded up so that they are 10% greater than the current value.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.DBInstanceClass">
- <summary>
- The new compute and memory capacity of the DB Instance. Passing a value for this parameter causes an outage during the change and is applied
- during the next maintenance window, unless the <c>ApplyImmediately</c> parameter is specified as <c>true</c> for this request. Default: Uses
- existing setting Valid Values: <c>db.m1.small | db.m1.large | db.m1.xlarge | db.m2.xlarge | db.m2.2xlarge | db.m2.4xlarge</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.DBSecurityGroups">
- <summary>
- A list of DB Security Groups to authorize on this DB Instance. This change is asynchronously applied as soon as possible. Constraints: <ul>
- <li>Must be 1 to 255 alphanumeric characters</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two
- consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.ApplyImmediately">
- <summary>
- Specifies whether or not the modifications in this request and any pending modifications are asynchronously applied as soon as possible,
- regardless of the <c>PreferredMaintenanceWindow</c> setting for the DB Instance. If this parameter is passed as <c>false</c>, changes to the
- DB Instance are applied on the next call to <a>RebootDBInstance</a>, the next maintenance reboot, or the next failure reboot, whichever
- occurs first. Default: <c>false</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.MasterUserPassword">
- <summary>
- The new password for the DB Instance master user. This change is asynchronously applied as soon as possible. Between the time of the request
- and the completion of the request, the <c>MasterUserPassword</c> element exists in the <c>PendingModifiedValues</c> element of the operation
- response. Default: Uses existing setting Constraints: Must be 4 to 41 alphanumeric characters (engine specific) <note> Amazon RDS APIs never
- return the password, so this API provides a way to regain access to a master instance user if the password is lost. </note>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.DBParameterGroupName">
- <summary>
- The name of the DB Parameter Group to apply to this DB Instance. This change is asynchronously applied as soon as possible for parameters
- when the <i>ApplyImmediately</i> parameter is specified as <c>true</c> for this request. Default: Uses existing setting Constraints: The DB
- Parameter Group must be in the same DB Parameter Group family as this DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.BackupRetentionPeriod">
- <summary>
- The number of days to retain automated backups. Setting this parameter to a positive number enables backups. Setting this parameter to 0
- disables automated backups. Default: Uses existing setting Constraints: <ul> <li>Must be a value from 0 to 8</li> <li>Cannot be set to 0 if
- the DB Instance is a master instance with read replicas or of the DB Instance is a read replica</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.PreferredBackupWindow">
- <summary>
- The daily time range during which automated backups are created if automated backups are enabled, as determined by the
- <c>BackupRetentionPeriod</c>. Constraints: <ul> <li>Must be in the format hh24:mi-hh24:mi</li> <li>Times should be Universal Time
- Coordinated (UTC)</li> <li>Must not conflict with the preferred maintenance window</li> <li>Must be at least 30 minutes</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.PreferredMaintenanceWindow">
- <summary>
- The weekly time range (in UTC) during which system maintenance can occur, which may result in an outage. This change is made immediately. If
- moving this window to the current time, there must be at least 120 minutes between the current time and end of the window to ensure pending
- changes are applied. Default: Uses existing setting Format: ddd:hh24:mi-ddd:hh24:mi Valid Days: Mon | Tue | Wed | Thu | Fri | Sat | Sun
- Constraints: Must be at least 30 minutes
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.MultiAZ">
- <summary>
- Specifies if the DB Instance is a Multi-AZ deployment. Constraints: Cannot be specified if the DB Instance is a read replica.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.EngineVersion">
- <summary>
- The version number of the database engine to upgrade to. For major version upgrades, if a nondefault DB Parameter Group is currently in use,
- a new DB Parameter Group in the DB Parameter Group Family for the new engine version must be specified. The new DB Parameter Group can be
- the default for that DB Parameter Group Family. Example: <c>5.1.42</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.AllowMajorVersionUpgrade">
- <summary>
- Indicates that major version upgrades are allowed. Constraints: This parameter must be set to true when specifying a value for the
- EngineVersion parameter that is a different major version than the DB Instance's current version.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceRequest.AutoMinorVersionUpgrade">
- <summary>
- Indicates that minor version upgrades will be applied automatically to the DB Instance during the maintenance window.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.InvalidDBSecurityGroupStateException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.InvalidDBSecurityGroupStateException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidDBSecurityGroupStateException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResponse">
- <summary>
- Returns information about the DescribeOrderableDBInstanceOptionsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResponse.DescribeOrderableDBInstanceOptionsResult">
- <summary>
- Gets and sets the DescribeOrderableDBInstanceOptionsResult property.
- Contains the result of a successful invocation of the DescribeOrderableDBInstanceOptions action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeEventsResponse">
- <summary>
- Returns information about the DescribeEventsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsResponse.DescribeEventsResult">
- <summary>
- Gets and sets the DescribeEventsResult property.
- Contains the result of a successful invocation of the DescribeEvents action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeEventsRequest">
- <summary>
- Container for the parameters to the DescribeEvents operation.
- <para> Returns events related to DB Instances, DB Security Groups, DB Snapshots and DB Parameter Groups for the past 14 days. Events
- specific to a particular DB Instance, database security group, database snapshot or database parameter group can be obtained by providing
- the name as a parameter. By default, the past hour of events are returned. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeEvents(Amazon.RDS.Model.DescribeEventsRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsRequest.WithSourceIdentifier(System.String)">
- <summary>
- Sets the SourceIdentifier property
- </summary>
- <param name="sourceIdentifier">The value to set for the SourceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsRequest.WithSourceType(System.String)">
- <summary>
- Sets the SourceType property
- </summary>
- <param name="sourceType">The value to set for the SourceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsRequest.WithStartTime(System.DateTime)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The value to set for the StartTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsRequest.WithEndTime(System.DateTime)">
- <summary>
- Sets the EndTime property
- </summary>
- <param name="endTime">The value to set for the EndTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsRequest.WithDuration(System.Int32)">
- <summary>
- Sets the Duration property
- </summary>
- <param name="duration">The value to set for the Duration property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsRequest.SourceIdentifier">
- <summary>
- The identifier of the event source for which events will be returned. If not specified, then all sources are included in the response.
- Constraints: <ul> <li>If SourceIdentifier is supplied, SourceType must also be provided.</li> <li>If the source type is DBInstance, then a
- DBInstanceIdentifier must be supplied.</li> <li>If the source type is DBSecurityGroup, a DBSecurityGroupName must be supplied.</li> <li>If
- the source type is DBParameterGroup, a DBParameterGroupName must be supplied.</li> <li>If the source type is DBSnapshot, a
- DBSnapshotIdentifier must be supplied.</li> <li>Cannot end with a hyphen or contain two consecutive hyphens.</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsRequest.SourceType">
- <summary>
- The event source to retrieve events for. If no value is specified, all events are returned.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>db-instance, db-parameter-group, db-security-group, db-snapshot</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsRequest.StartTime">
- <summary>
- The beginning of the time interval to retrieve events for, specified in ISO 8601 format. For more information about ISO 8601, go to the <a
- href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia page.</a> Example: 2009-07-08T18:00Z
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsRequest.EndTime">
- <summary>
- The end of the time interval for which to retrieve events, specified in ISO 8601 format. For more information about ISO 8601, go to the <a
- href="http://en.wikipedia.org/wiki/ISO_8601">ISO8601 Wikipedia page.</a> Example: 2009-07-08T18:00Z
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsRequest.Duration">
- <summary>
- The number of minutes to retrieve events for. Default: 60
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeDBInstances request. If this parameter is specified, the response includes only records
- beyond the marker, up to the value specified by <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBParameterGroupsResponse">
- <summary>
- Returns information about the DescribeDBParameterGroupsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParameterGroupsResponse.DescribeDBParameterGroupsResult">
- <summary>
- Gets and sets the DescribeDBParameterGroupsResult property.
- Contains the result of a successful invocation of the DescribeDBParameterGroups action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBInstancesResponse">
- <summary>
- Returns information about the DescribeDBInstancesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBInstancesResponse.DescribeDBInstancesResult">
- <summary>
- Gets and sets the DescribeDBInstancesResult property.
- Contains the result of a successful invocation of the DescribeDBInstances action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBSnapshotResponse">
- <summary>
- Returns information about the DeleteDBSnapshot response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBSnapshotResponse.DeleteDBSnapshotResult">
-
- Gets and sets the DeleteDBSnapshotResult property.
- Contains the result of a successful invocation of the DeleteDBSnapshot
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBInstanceResult">
- <summary>
- The results from the CreateDBInstance action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceResult.DBInstance">
-
- Gets and sets the CreateDBInstanceResult property.
- Contains the result of a successful invocation of the CreateDBInstance
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.AuthorizationNotFoundException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.AuthorizationNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new AuthorizationNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.UpdateJobRequestMarshaller">
- <summary>
- Update Job Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.ListJobsRequestMarshaller">
- <summary>
- List Jobs Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.InvalidAddressException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.InvalidAddressException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidAddressException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.BucketPermissionException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.BucketPermissionException.#ctor(System.String)">
- <summary>
- Constructs a new BucketPermissionException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListAccessKeysResultUnmarshaller">
- <summary>
- ListAccessKeysResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetAccountSummaryResultUnmarshaller">
- <summary>
- GetAccountSummaryResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteGroupPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteGroupPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateAccountAliasResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateAccountAlias operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.AccessKeyUnmarshaller">
- <summary>
- AccessKey Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.NoSuchEntityException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.NoSuchEntityException.#ctor(System.String)">
- <summary>
- Constructs a new NoSuchEntityException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetUserRequest">
- <summary>
- Container for the parameters to the GetUser operation.
- <para>Retrieves information about the specified User, including the
- User's path, GUID, and ARN.</para> <para>If you do not specify a User
- name, IAM determines the User name implicitly based on the AWS Access
- Key ID signing the request.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetUser(Amazon.IdentityManagement.Model.GetUserRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetUserRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserRequest.UserName">
- <summary>
- Name of the User to get information about. This parameter is optional. If it is not included, it defaults to the User making the request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetGroupResponse">
- <summary>
- Returns information about the GetGroupResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupResponse.GetGroupResult">
- <summary>
- Gets and sets the GetGroupResult property.
- Contains the result of a successful invocation of the GetGroup action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateLoginProfileResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- CreateLoginProfile action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateLoginProfileResult.WithLoginProfile(Amazon.IdentityManagement.Model.LoginProfile)">
- <summary>
- Sets the LoginProfile property
- </summary>
- <param name="loginProfile">The value to set for the LoginProfile property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateLoginProfileResult.LoginProfile">
- <summary>
- The new login profile.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.TerminateJobFlowsRequestMarshaller">
- <summary>
- Terminate Job Flows Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.BootstrapActionConfigUnmarshaller">
- <summary>
- BootstrapActionConfig Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.StepFactory">
- <summary>
- This class provides helper methods for creating common Elastic MapReduce step
- types. To use StepFactory, you should construct it with the appropriate bucket
- for your region. The official bucket format is "&lt;region&gt;.elasticmapreduce", so
- us-east-1 would use the bucket "us-east-1.elasticmapreduce".
- </summary>
- <example>Create an interactive Hive job flow with debugging enabled:
- <code>
- AmazonElasticMapReduce emr = AWSClientFactory.CreateAmazonElasticMapReduceClient(accessKey, secretKey);
-
- StepFactory stepFactory = new StepFactory();
-
- StepConfig enableDebugging = new StepConfig()
- .WithName("Enable Debugging")
- .WithActionOnFailure("TERMINATE_JOB_FLOW")
- .WithHadoopJarStep(stepFactory.NewEnableDebuggingStep());
-
- StepConfig installHive = new StepConfig()
- .WithName("Install Hive")
- .WithActionOnFailure("TERMINATE_JOB_FLOW")
- .WithHadoopJarStep(stepFactory.NewInstallHiveStep());
-
- RunJobFlowRequest request = new RunJobFlowRequest()
- .WithName("Hive Interactive")
- .WithSteps(enableDebugging, installHive)
- .WithLogUri("s3://log-bucket/")
- .WithInstances(new JobFlowInstancesConfig()
- .WithEc2KeyName("keypair")
- .WithHadoopVersion("0.20")
- .WithInstanceCount(5)
- .WithKeepJobFlowAliveWhenNoSteps(true)
- .WithMasterInstanceType("m1.small")
- .WithSlaveInstanceType("m1.small"));
-
- RunJobFlowResponse response = emr.RunJobFlow(request);
- </code>
- </example>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepFactory.NewScriptRunnerStep(System.String,System.String[])">
- <summary>
- Runs a specified script on the master node of your cluster.
- </summary>
- <param name="script">The script to run</param>
- <param name="args">Arguments to be passed to the script.</param>
- <returns>HadoopJarStepConfig that can be passed to your job flow.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepFactory.NewEnableDebuggingStep">
- <summary>
- When run as the first step in your job flow, enables the Hadoop debugging UI
- in the AWS Management Console.
- </summary>
- <returns>HadoopJarStepConfig that can be passed to your job flow.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepFactory.NewInstallHiveStep(Amazon.ElasticMapReduce.Model.StepFactory.HiveVersion[])">
- <summary>
- Step that installs Hive on your job flow.
- </summary>
- <param name="hiveVersions">The versions of Hive to install.</param>
- <returns>HadoopJarStepConfig that can be passed to your job flow.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepFactory.NewInstallHiveStep">
- <summary>
- Step that installs Hive on your job flow.
- </summary>
- <returns>HadoopJarStepConfig that can be passed to your job flow.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepFactory.NewRunHiveScriptStep(System.String,System.String[])">
- <summary>
- Step that runs a Hive script on your job flow.
- </summary>
- <param name="script">The script to run.</param>
- <param name="args">Arguments that get passed to the script.</param>
- <returns>HadoopJarStepConfig that can be passed to your job flow.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepFactory.NewInstallPigStep">
- <summary>
- Step that installs Pig on your job flow.
- </summary>
- <returns>HadoopJarStepConfig that can be passed to your job flow.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepFactory.NewRunPigScriptStep(System.String,System.String[])">
- <summary>
- Step that runs a Pig script on your job flow.
- </summary>
- <param name="script">The script to run.</param>
- <param name="args">Arguments that get passed to the script.</param>
- <returns>HadoopJarStepConfig that can be passed to your job flow.</returns>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.StepFactory.HiveVersion">
- <summary>
- The available Hive versions. These are only available on Hadoop 0.20
- Hive_0_5 Hive 0.5
- Hive_0_7 Hive 0.7
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail">
- <summary>
- <para>Describes the status of the job flow.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The value to set for the State property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.WithCreationDateTime(System.DateTime)">
- <summary>
- Sets the CreationDateTime property
- </summary>
- <param name="creationDateTime">The value to set for the CreationDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.WithStartDateTime(System.DateTime)">
- <summary>
- Sets the StartDateTime property
- </summary>
- <param name="startDateTime">The value to set for the StartDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.WithReadyDateTime(System.DateTime)">
- <summary>
- Sets the ReadyDateTime property
- </summary>
- <param name="readyDateTime">The value to set for the ReadyDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.WithEndDateTime(System.DateTime)">
- <summary>
- Sets the EndDateTime property
- </summary>
- <param name="endDateTime">The value to set for the EndDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.WithLastStateChangeReason(System.String)">
- <summary>
- Sets the LastStateChangeReason property
- </summary>
- <param name="lastStateChangeReason">The value to set for the LastStateChangeReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.State">
- <summary>
- The state of the job flow.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>COMPLETED, FAILED, TERMINATED, RUNNING, SHUTTING_DOWN, STARTING, WAITING, BOOTSTRAPPING</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.CreationDateTime">
- <summary>
- The creation date and time of the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.StartDateTime">
- <summary>
- The start date and time of the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.ReadyDateTime">
- <summary>
- The date and time when the job flow was ready to start running
- bootstrap actions.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.EndDateTime">
- <summary>
- The completion date and time of the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowExecutionStatusDetail.LastStateChangeReason">
- <summary>
- Description of the job flow last changed state.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.AddInstanceGroupsResult">
- <summary>
- <para>Output from an AddInstanceGroups call.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddInstanceGroupsResult.WithJobFlowId(System.String)">
- <summary>
- Sets the JobFlowId property
- </summary>
- <param name="jobFlowId">The value to set for the JobFlowId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddInstanceGroupsResult.WithInstanceGroupIds(System.String[])">
- <summary>
- Adds elements to the InstanceGroupIds collection
- </summary>
- <param name="instanceGroupIds">The values to add to the InstanceGroupIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.AddInstanceGroupsResult.JobFlowId">
- <summary>
- The job flow ID in which the instance groups are added.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.AddInstanceGroupsResult.InstanceGroupIds">
- <summary>
- Instance group IDs of the newly created instance groups.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest">
- <summary>
- Container for the parameters to the AddInstanceGroups operation.
- <para>AddInstanceGroups adds an instance group to a running
- cluster.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.AddInstanceGroups(Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest.WithInstanceGroups(Amazon.ElasticMapReduce.Model.InstanceGroupConfig[])">
- <summary>
- Adds elements to the InstanceGroups collection
- </summary>
- <param name="instanceGroups">The values to add to the InstanceGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest.WithJobFlowId(System.String)">
- <summary>
- Sets the JobFlowId property
- </summary>
- <param name="jobFlowId">The value to set for the JobFlowId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest.InstanceGroups">
- <summary>
- Instance Groups to add.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest.JobFlowId">
- <summary>
- Job flow in which to add the instance groups.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DescribeInstanceHealthResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeInstanceHealth operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLoadBalancerResultUnmarshaller">
- <summary>
- CreateLoadBalancerResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerResult">
- <summary>
- <para> The output for the RegisterInstancesWithLoadBalancer action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerResult.WithInstances(Amazon.ElasticLoadBalancing.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerResult.WithInstances(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerResult.Instances">
- <summary>
- An updated list of instances for the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.ListenerDescription">
- <summary>
- <para> The ListenerDescription data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ListenerDescription.#ctor">
- <summary>
- Default constructor for a new ListenerDescription object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ListenerDescription.WithListener(Amazon.ElasticLoadBalancing.Model.Listener)">
- <summary>
- Sets the Listener property
- </summary>
- <param name="listener">The value to set for the Listener property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ListenerDescription.WithPolicyNames(System.String[])">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ListenerDescription.WithPolicyNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.ListenerDescription.Listener">
- <summary>
- The Listener data type.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.ListenerDescription.PolicyNames">
- <summary>
- A list of policies enabled for this listener. An empty list indicates that no policies are enabled.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing">
- <summary>
- Interface for accessing AmazonElasticLoadBalancing.
-
- Elastic Load Balancing <para> Elastic Load Balancing is a cost-effective and easy to use web service to help you improve availability and
- scalability of your application. It makes it easy for you to distribute application loads between two or more EC2 instances. Elastic Load
- Balancing enables availability through redundancy and supports traffic growth of your application. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateLoadBalancer(Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest)">
- <summary>
- <para> Creates a new LoadBalancer. </para> <para> Once the call has completed successfully, a new LoadBalancer is created; however, it will
- not be usable until at least one instance has been registered. When the LoadBalancer creation is completed, the client can check whether or
- not it is usable by using the DescribeInstanceHealth API. The LoadBalancer is usable as soon as any registered instance is <i>InService</i>
- .
- </para> <para><b>NOTE:</b> Currently, the client's quota of LoadBalancers is limited to five per Region. </para> <para><b>NOTE:</b>
- Load balancer DNS names vary depending on the Region they're created in. For load balancers created in the United States, the DNS name ends
- with: us-east-1.elb.amazonaws.com (for the US Standard Region) us-west-1.elb.amazonaws.com (for the Northern California Region) For load
- balancers created in the EU (Ireland) Region, the DNS name ends with: eu-west-1.elb.amazonaws.com </para>
- </summary>
-
- <param name="createLoadBalancerRequest">Container for the necessary parameters to execute the CreateLoadBalancer service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.TooManyLoadBalancersException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicateLoadBalancerNameException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeleteLoadBalancerListeners(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest)">
- <summary>
- <para> Deletes listeners from the LoadBalancer for the specified port. </para>
- </summary>
-
- <param name="deleteLoadBalancerListenersRequest">Container for the necessary parameters to execute the DeleteLoadBalancerListeners service
- method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeleteLoadBalancerListeners service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DescribeInstanceHealth(Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest)">
- <summary>
- <para> Returns the current state of the instances of the specified LoadBalancer. If no instances are specified, the state of all the
- instances for the LoadBalancer is returned. </para> <para><b>NOTE:</b> The client must have created the specified input LoadBalancer in
- order to retrieve this information; the client must provide the same account credentials as those that were used to create the LoadBalancer.
- </para>
- </summary>
-
- <param name="describeInstanceHealthRequest">Container for the necessary parameters to execute the DescribeInstanceHealth service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DescribeInstanceHealth service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeleteLoadBalancer(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest)">
- <summary>
- <para> Deletes the specified LoadBalancer. </para> <para> If attempting to recreate the LoadBalancer, the client must reconfigure all the
- settings. The DNS name associated with a deleted LoadBalancer will no longer be usable. Once deleted, the name and associated DNS record of
- the LoadBalancer no longer exist and traffic sent to any of its IP addresses will no longer be delivered to client instances. The client
- will not receive the same DNS name even if a new LoadBalancer with same LoadBalancerName is created. </para> <para> To successfully call
- this API, the client must provide the same account credentials as were used to create the LoadBalancer. </para> <para><b>NOTE:</b> By
- design, if the LoadBalancer does not exist or has already been deleted, DeleteLoadBalancer still succeeds. </para>
- </summary>
-
- <param name="deleteLoadBalancerRequest">Container for the necessary parameters to execute the DeleteLoadBalancer service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeleteLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateLBCookieStickinessPolicy(Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest)">
- <summary>
- <para> Generates a stickiness policy with sticky session lifetimes controlled by the lifetime of the browser (user-agent) or a specified
- expiration period. This policy can be associated only with HTTP/HTTPS listeners. </para> <para> When a load balancer implements this policy,
- the load balancer uses a special cookie to track the backend server instance for each request. When the load balancer receives a request, it
- first checks to see if this cookie is present in the request. If so, the load balancer sends the request to the application server specified
- in the cookie. If not, the load balancer sends the request to a server that is chosen based on the existing load balancing algorithm.
- </para> <para> A cookie is inserted into the response for binding subsequent requests from the same user to that server. The validity of the
- cookie is based on the cookie expiration time, which is specified in the policy configuration. </para>
- </summary>
-
- <param name="createLBCookieStickinessPolicyRequest">Container for the necessary parameters to execute the CreateLBCookieStickinessPolicy
- service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateLBCookieStickinessPolicy service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.TooManyPoliciesException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicatePolicyNameException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateLoadBalancerListeners(Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest)">
- <summary>
- <para> Creates one or more listeners on a LoadBalancer for the specified port. If a listener with the given port does not already exist, it
- will be created; otherwise, the properties of the new listener must match the properties of the existing listener. </para>
- </summary>
-
- <param name="createLoadBalancerListenersRequest">Container for the necessary parameters to execute the CreateLoadBalancerListeners service
- method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateLoadBalancerListeners service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicateListenerException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DescribeLoadBalancers(Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest)">
- <summary>
- <para> Returns detailed configuration information for the specified LoadBalancers. If no LoadBalancers are specified, the operation returns
- configuration information for all LoadBalancers created by the caller. </para> <para><b>NOTE:</b> The client must have created the specified
- input LoadBalancers in order to retrieve this information; the client must provide the same account credentials as those that were used to
- create the LoadBalancer. </para>
- </summary>
-
- <param name="describeLoadBalancersRequest">Container for the necessary parameters to execute the DescribeLoadBalancers service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DescribeLoadBalancers service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DisableAvailabilityZonesForLoadBalancer(Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest)">
- <summary>
- <para> Removes the specified EC2 Availability Zones from the set of configured Availability Zones for the LoadBalancer. </para> <para> There
- must be at least one Availability Zone registered with a LoadBalancer at all times. A client cannot remove all the Availability Zones from a
- LoadBalancer. Once an Availability Zone is removed, all the instances registered with the LoadBalancer that are in the removed Availability
- Zone go into the OutOfService state. Upon Availability Zone removal, the LoadBalancer attempts to equally balance the traffic among its
- remaining usable Availability Zones. Trying to remove an Availability Zone that was not associated with the LoadBalancer does nothing.
- </para> <para><b>NOTE:</b> In order for this call to be successful, the client must have created the LoadBalancer. The client must provide
- the same account credentials as those that were used to create the LoadBalancer. </para>
- </summary>
-
- <param name="disableAvailabilityZonesForLoadBalancerRequest">Container for the necessary parameters to execute the
- DisableAvailabilityZonesForLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DisableAvailabilityZonesForLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeregisterInstancesFromLoadBalancer(Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest)">
- <summary>
- <para> Deregisters instances from the LoadBalancer. Once the instance is deregistered, it will stop receiving traffic from the LoadBalancer.
- </para> <para> In order to successfully call this API, the same account credentials as those used to create the LoadBalancer must be
- provided. </para>
- </summary>
-
- <param name="deregisterInstancesFromLoadBalancerRequest">Container for the necessary parameters to execute the
- DeregisterInstancesFromLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeregisterInstancesFromLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateAppCookieStickinessPolicy(Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest)">
- <summary>
- <para> Generates a stickiness policy with sticky session lifetimes that follow that of an application-generated cookie. This policy can be
- associated only with HTTP/HTTPS listeners. </para> <para> This policy is similar to the policy created by CreateLBCookieStickinessPolicy,
- except that the lifetime of the special Elastic Load Balancing cookie follows the lifetime of the application-generated cookie specified in
- the policy configuration. The load balancer only inserts a new stickiness cookie when the application response includes a new application
- cookie. </para> <para> If the application cookie is explicitly removed or expires, the session stops being sticky until a new application
- cookie is issued. </para> <para><b>NOTE:</b> An application client must receive and send two cookies: the application-generated cookie and
- the special Elastic Load Balancing cookie named AWSELB. This is the default behavior for many common web browsers. </para>
- </summary>
-
- <param name="createAppCookieStickinessPolicyRequest">Container for the necessary parameters to execute the CreateAppCookieStickinessPolicy
- service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateAppCookieStickinessPolicy service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.TooManyPoliciesException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicatePolicyNameException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.RegisterInstancesWithLoadBalancer(Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest)">
- <summary>
- <para> Adds new instances to the LoadBalancer. </para> <para> Once the instance is registered, it starts receiving traffic and requests from
- the LoadBalancer. Any instance that is not in any of the Availability Zones registered for the LoadBalancer will be moved to the
- <i>OutOfService</i> state. It will move to the <i>InService</i> state when the Availability Zone is added to the LoadBalancer. </para>
- <para><b>NOTE:</b> In order for this call to be successful, the client must have created the LoadBalancer. The client must provide the same
- account credentials as those that were used to create the LoadBalancer. </para> <para><b>NOTE:</b> Completion of this API does not guarantee
- that operation has completed. Rather, it means that the request has been registered and the changes will happen shortly. </para>
- </summary>
-
- <param name="registerInstancesWithLoadBalancerRequest">Container for the necessary parameters to execute the
- RegisterInstancesWithLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the RegisterInstancesWithLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.SetLoadBalancerListenerSSLCertificate(Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest)">
- <summary>
- <para> Sets the certificate that terminates the specified listener's SSL connections. The specified certificate replaces any prior
- certificate that was used on the same LoadBalancer and port. </para>
- </summary>
-
- <param name="setLoadBalancerListenerSSLCertificateRequest">Container for the necessary parameters to execute the
- SetLoadBalancerListenerSSLCertificate service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the SetLoadBalancerListenerSSLCertificate service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.ListenerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeleteLoadBalancerPolicy(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest)">
- <summary>
- <para> Deletes a policy from the LoadBalancer. The specified policy must not be enabled for any listeners. </para>
- </summary>
-
- <param name="deleteLoadBalancerPolicyRequest">Container for the necessary parameters to execute the DeleteLoadBalancerPolicy service method
- on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeleteLoadBalancerPolicy service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.SetLoadBalancerPoliciesOfListener(Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest)">
- <summary>
- <para> Associates, updates, or disables a policy with a listener on the load balancer. Currently only zero (0) or one (1) policy can be
- associated with a listener. </para>
- </summary>
-
- <param name="setLoadBalancerPoliciesOfListenerRequest">Container for the necessary parameters to execute the
- SetLoadBalancerPoliciesOfListener service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the SetLoadBalancerPoliciesOfListener service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.PolicyNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.ListenerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.EnableAvailabilityZonesForLoadBalancer(Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest)">
- <summary>
- <para> Adds one or more EC2 Availability Zones to the LoadBalancer. </para> <para> The LoadBalancer evenly distributes requests across all
- its registered Availability Zones that contain instances. As a result, the client must ensure that its LoadBalancer is appropriately scaled
- for each registered Availability Zone. </para> <para><b>NOTE:</b> The new EC2 Availability Zones to be added must be in the same EC2 Region
- as the Availability Zones for which the LoadBalancer was created. </para>
- </summary>
-
- <param name="enableAvailabilityZonesForLoadBalancerRequest">Container for the necessary parameters to execute the
- EnableAvailabilityZonesForLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the EnableAvailabilityZonesForLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.ConfigureHealthCheck(Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest)">
- <summary>
- <para> Enables the client to define an application healthcheck for the instances. </para>
- </summary>
-
- <param name="configureHealthCheckRequest">Container for the necessary parameters to execute the ConfigureHealthCheck service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the ConfigureHealthCheck service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult">
- <summary>
- <para> Describes the settings for a configuration set. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithDeploymentStatus(System.String)">
- <summary>
- Sets the DeploymentStatus property
- </summary>
- <param name="deploymentStatus">The value to set for the DeploymentStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.SolutionStackName">
- <summary>
- The name of the solution stack this configuration set uses.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.ApplicationName">
- <summary>
- The name of the application associated with this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.TemplateName">
- <summary>
- If not <c>null</c>, the name of the configuration template for this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.Description">
- <summary>
- Describes this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.EnvironmentName">
- <summary>
- If not <c>null</c>, the name of the environment for this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.DeploymentStatus">
- <summary>
- If this configuration set is associated with an environment, the <c>DeploymentStatus</c> parameter indicates the deployment status of this
- configuration set: <enumValues> <value name="null"> <c>null</c>: This configuration is not associated with a running environment. </value>
- <value name="pending"> <c>pending</c>: This is a draft configuration that is not deployed to the associated environment but is in the
- process of deploying. </value> <value name="deployed"> <c>deployed</c>: This is the configuration that is currently deployed to the
- associated running environment. </value> <value name="failed"> <c>failed</c>: This is a draft configuration, that failed to successfully
- deploy. </value> </enumValues> <ul> <li> <c>null</c>: This configuration is not associated with a running environment. </li> <li>
- <c>pending</c>: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying. </li>
- <li> <c>deployed</c>: This is the configuration that is currently deployed to the associated running environment. </li> <li> <c>failed</c>:
- This is a draft configuration that failed to successfully deploy. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>deployed, pending, failed</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.DateCreated">
- <summary>
- The date (in UTC time) when this configuration set was created.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.DateUpdated">
- <summary>
- The date (in UTC time) when this configuration set was last modified.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResult.OptionSettings">
- <summary>
- A list of the configuration options and their values in this configuration set.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResponse">
- <summary>
- Returns information about the UpdateConfigurationTemplateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateConfigurationTemplateResponse.UpdateConfigurationTemplateResult">
- <summary>
- Gets and sets the UpdateConfigurationTemplateResult property.
- Describes the settings for a configuration set.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateApplicationVersionResultUnmarshaller">
- <summary>
- UpdateApplicationVersionResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateApplicationVersionRequestMarshaller">
- <summary>
- Update Application Version Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RequestEnvironmentInfoResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RequestEnvironmentInfo operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteEnvironmentConfigurationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteEnvironmentConfiguration operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateConfigurationTemplateResultUnmarshaller">
- <summary>
- CreateConfigurationTemplateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CheckDNSAvailabilityResultUnmarshaller">
- <summary>
- CheckDNSAvailabilityResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest">
- <summary>
- Container for the parameters to the RetrieveEnvironmentInfo operation.
- <para> Retrieves the compiled information from a RequestEnvironmentInfo request. </para> <para>Related Topics</para>
- <ul>
- <li> RequestEnvironmentInfo </li>
-
- </ul>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RetrieveEnvironmentInfo(Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest.WithInfoType(System.String)">
- <summary>
- Sets the InfoType property
- </summary>
- <param name="infoType">The value to set for the InfoType property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest.EnvironmentId">
- <summary>
- The ID of the data's environment. If no such environment is found, returns an <c>InvalidParameterValue</c> error.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest.EnvironmentName">
- <summary>
- The name of the data's environment. If no such environment is found, returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoRequest.InfoType">
- <summary>
- The type of information to retrieve.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>tail</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.OptionRestrictionRegex">
- <summary>
- <para> A regular expression representing a restriction on a string configuration option value. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.OptionRestrictionRegex.WithPattern(System.String)">
- <summary>
- Sets the Pattern property
- </summary>
- <param name="pattern">The value to set for the Pattern property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.OptionRestrictionRegex.WithLabel(System.String)">
- <summary>
- Sets the Label property
- </summary>
- <param name="label">The value to set for the Label property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.OptionRestrictionRegex.Pattern">
- <summary>
- The regular expression pattern that a string configuration option value with this restriction must match.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.OptionRestrictionRegex.Label">
- <summary>
- A unique name representing this regular expression.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Instance">
- <summary>
- <para>The description of an Amazon EC2 instance.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.Instance.WithId(System.String)">
- <summary>
- Sets the Id property
- </summary>
- <param name="id">The value to set for the Id property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.Instance.Id">
- <summary>
- The ID of the Amazon EC2 instance.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.AutoScalingGroup">
- <summary>
- <para> Describes an Auto Scaling launch configuration. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.AutoScalingGroup.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.AutoScalingGroup.Name">
- <summary>
- The name of the <c>AutoScalingGroup</c> .
-
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.StartInstancesResponse">
- <summary>
- Information returned by the StartInstances
- request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesResponse.IsSetStartInstancesResult">
- <summary>
- Checks if StartInstancesResult property is set
- </summary>
- <returns>true if StartInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.StartInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.StartInstancesResponse.StartInstancesResult">
- <summary>
- Gets and sets the StartInstancesResult property.
- Result of a StartInstances request.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RunInstancesResult">
- <summary>
- Run Instances Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesResult.IsSetReservation">
- <summary>
- Checks if Reservation property is set
- </summary>
- <returns>true if Reservation property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesResult.Reservation">
- <summary>
- Gets and sets the Reservation property.
- Reservation
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReservedInstancesOffering">
- <summary>
- Reserved Instances Offering
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithReservedInstancesOfferingId(System.String)">
- <summary>
- Sets the ReservedInstancesOfferingId property
- </summary>
- <param name="reservedInstancesOfferingId">The ID of the Reserved Instance offering.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetReservedInstancesOfferingId">
- <summary>
- Checks if ReservedInstancesOfferingId property is set
- </summary>
- <returns>true if ReservedInstancesOfferingId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The instance type on which the Reserved
- Instance can be used.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone in which the Reserved
- Instance can be used.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithDuration(System.Decimal)">
- <summary>
- Sets the Duration property
- </summary>
- <param name="duration">The duration of the Reserved Instance, in
- seconds.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetDuration">
- <summary>
- Checks if Duration property is set
- </summary>
- <returns>true if Duration property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithUsagePrice(System.String)">
- <summary>
- Sets the UsagePrice property
- </summary>
- <param name="usagePrice">The usage price of the Reserved Instance, per
- hour.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetUsagePrice">
- <summary>
- Checks if UsagePrice property is set
- </summary>
- <returns>true if UsagePrice property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithFixedPrice(System.String)">
- <summary>
- Sets the FixedPrice property
- </summary>
- <param name="fixedPrice">The purchase price of the Reserved Instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetFixedPrice">
- <summary>
- Checks if FixedPrice property is set
- </summary>
- <returns>true if FixedPrice property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The Reserved Instance description.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetProductDescription">
- <summary>
- Checks if ProductDescription property is set
- </summary>
- <returns>true if ProductDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetInstanceTenancy">
- <summary>
- Checks if InstanceTenancy property is set
- </summary>
- <returns>true if InstanceTenancy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithInstanceTenancy(System.String)">
- <summary>
- Sets the InstanceTenancy property
- </summary>
- <param name="instanceTenancy">The tenancy of the reserved instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.IsSetCurrencyCode">
- <summary>
- Checks if CurrencyCode property is set
- </summary>
- <returns>true if InstanceTenancy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstancesOffering.WithCurrencyCode(System.String)">
- <summary>
- Sets the CurrencyCode property
- </summary>
- <param name="currencyCode">The ISO 4217 CurrencyCode (e.g., USD, JPY).</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.ReservedInstancesOfferingId">
- <summary>
- Gets and sets the ReservedInstancesOfferingId property.
- The ID of the Reserved Instance offering.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- The instance type on which the Reserved
- Instance can be used.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone in which the Reserved
- Instance can be used.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.Duration">
- <summary>
- Gets and sets the Duration property.
- The duration of the Reserved Instance, in
- seconds.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.UsagePrice">
- <summary>
- Gets and sets the UsagePrice property.
- The usage price of the Reserved Instance, per
- hour.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.FixedPrice">
- <summary>
- Gets and sets the FixedPrice property.
- The purchase price of the Reserved Instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.ProductDescription">
- <summary>
- Gets and sets the ProductDescription property.
- The Reserved Instance description.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.InstanceTenancy">
- <summary>
- Gets and sets the InstanceTenancy property.
- The tenancy of the reserved instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstancesOffering.CurrencyCode">
- <summary>
- Gets and sets the CurrencyCode property.
- The currency of the Reserved Instance offering you are purchasing. It's specified using ISO 4217 standard (e.g., USD, JPY).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceRouteTableAssociationRequest">
- <summary>
- Changes the route table associated with a given subnet in a VPC. After you execute this action, the subnet
- uses the routes in the new route table it's associated with. For more information about route tables, go
- to Route Tables in the Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationRequest.WithAssociationId(System.String)">
- <summary>
- Sets the AssociationId property
- </summary>
- <param name="associationId">The ID representing the current association
- between the original route table and the
- subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationRequest.IsSetAssociationId">
- <summary>
- Checks if AssociationId property is set
- </summary>
- <returns>true if AssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationRequest.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The ID of the new route table to associate with
- the subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationRequest.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteTableAssociationRequest.AssociationId">
- <summary>
- Gets and sets the AssociationId property.
- The ID representing the current association
- between the original route table and the
- subnet.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteTableAssociationRequest.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The ID of the new route table to associate with
- the subnet.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RegisterImageResult">
- <summary>
- Register Image Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageResult.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageResult.ImageId">
- <summary>
- Gets and sets the ImageId property.
- Unique ID of the newly registered machine
- image.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclAssociation.WithNetworkAclAssociationId(System.String)">
- <summary>
- Sets the NetworkAclAssociationId property
- </summary>
- <param name="networkAclAssociationId">An identifier representing the association between a network ACL
- and a subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclAssociation.IsSetNetworkAclAssociationId">
- <summary>
- Checks if NetworkAclAssociationId property is set
- </summary>
- <returns>true if NetworkAclAssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclAssociation.WithNetworkAclId(System.String)">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="networkAclId">The ID of the network ACL in the association.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclAssociation.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclAssociation.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">The ID of the subnet in the association.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAclAssociation.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclAssociation.NetworkAclAssociationId">
- <summary>
- Gets and sets the NetworkAclAssociationId property.
- An identifier representing the association between a network ACL
- and a subnet.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclAssociation.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- The ID of the network ACL in the association.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAclAssociation.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- The ID of the subnet in the association.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ModifySnapshotAttributeRequest">
- <summary>
- Adds or remove permission settings for the
- specified snapshot
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The ID of the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Specifies the attribute to modify. Valid
- Values: createVolumePermission</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.WithOperationType(System.String)">
- <summary>
- Sets the OperationType property
- </summary>
- <param name="operationType">Specifies the operation to perform on the
- attribute.
- Valid Values: add | remove</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.IsSetOperationType">
- <summary>
- Checks if OperationType property is set
- </summary>
- <returns>true if OperationType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.WithUserId(System.String[])">
- <summary>
- Sets the UserId property
- </summary>
- <param name="list">User ID of a user that can create volumes from
- the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.IsSetUserId">
- <summary>
- Checks if UserId property is set
- </summary>
- <returns>true if UserId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.WithUserGroup(System.String[])">
- <summary>
- Sets the UserGroup property
- </summary>
- <param name="list">Group that is allowed to create volumes from
- the snapshot (currently
- supports "all").</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifySnapshotAttributeRequest.IsSetUserGroup">
- <summary>
- Checks if UserGroup property is set
- </summary>
- <returns>true if UserGroup property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ModifySnapshotAttributeRequest.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifySnapshotAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Specifies the attribute to modify. Valid
- Values: createVolumePermission
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifySnapshotAttributeRequest.OperationType">
- <summary>
- Gets and sets the OperationType property.
- Specifies the operation to perform on the
- attribute.
- Valid Values: add | remove
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifySnapshotAttributeRequest.UserId">
- <summary>
- Gets and sets the UserId property.
- User ID of a user that can create volumes from
- the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifySnapshotAttributeRequest.UserGroup">
- <summary>
- Gets and sets the UserGroup property.
- Group that is allowed to create volumes from
- the snapshot (currently
- supports "all").
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.WithBytesConverted(System.Decimal)">
- <summary>
- Sets the BytesConverted property
- </summary>
- <param name="bytesConverted">Number of bytes converted so far.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.IsSetBytesConverted">
- <summary>
- Checks if BytesConverted property is set
- </summary>
- <returns>true if BytesConverted property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone where the resulting instance will reside.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.WithImage(Amazon.EC2.Model.DiskImageDescriptionType)">
- <summary>
- Sets the Image property
- </summary>
- <param name="image">Information about the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.IsSetImage">
- <summary>
- Checks if Image property is set
- </summary>
- <returns>true if Image property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Description you provided when starting the import instance task.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.WithVolume(Amazon.EC2.Model.DiskImageVolumeDescriptionType)">
- <summary>
- Sets the Volume property
- </summary>
- <param name="volume">Information about the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.IsSetVolume">
- <summary>
- Checks if Volume property is set
- </summary>
- <returns>true if Volume property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">Status of the import of this particular disk image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.IsSetStatus">
- <summary>
- Checks if Status property is set
- </summary>
- <returns>true if Status property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.WithStatusMessage(System.String)">
- <summary>
- Sets the StatusMessage property
- </summary>
- <param name="statusMessage">Status information or errors related to the disk image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.IsSetStatusMessage">
- <summary>
- Checks if StatusMessage property is set
- </summary>
- <returns>true if StatusMessage property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.BytesConverted">
- <summary>
- Gets and sets the BytesConverted property.
- Number of bytes converted so far.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone where the resulting instance will reside.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.Image">
- <summary>
- Gets and sets the Image property.
- Information about the image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.Description">
- <summary>
- Gets and sets the Description property.
- Description you provided when starting the import instance task.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.Volume">
- <summary>
- Gets and sets the Volume property.
- Information about the volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.Status">
- <summary>
- Gets and sets the Status property.
- Status of the import of this particular disk image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceVolumeDetailItemType.StatusMessage">
- <summary>
- Gets and sets the StatusMessage property.
- Status information or errors related to the disk image.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpnGatewaysResult">
- <summary>
- Describe Vpn Gateways Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysResult.IsSetVpnGateway">
- <summary>
- Checks if VpnGateway property is set
- </summary>
- <returns>true if VpnGateway property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnGatewaysResult.VpnGateway">
- <summary>
- Gets and sets the VpnGateway property.
- List of VPN gateways
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpnGatewaysResponse">
- <summary>
- Describe Vpn Gateways Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysResponse.IsSetDescribeVpnGatewaysResult">
- <summary>
- Checks if DescribeVpnGatewaysResult property is set
- </summary>
- <returns>true if DescribeVpnGatewaysResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnGatewaysResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnGatewaysResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnGatewaysResponse.DescribeVpnGatewaysResult">
- <summary>
- Gets and sets the DescribeVpnGatewaysResult property.
- Describe Vpn Gateways Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpnConnectionsRequest">
- <summary>
- Gives you information about your VPN connections.
-
- Important - we strongly recommend you use HTTPS when calling this
- operation because the response contains sensitive cryptographic
- information for configuring your customer gateway.
-
- You can filter the results to return information only about VPN
- connections that match criteria you specify.
-
- For example, you could ask to get information about a particular VPN
- connection (or all) only if the VPN's state is pending or available.
-
- You can specify multiple filters (e.g., the VPN connection is
- associated with a particular VPN gateway, and
- the gateway's state is pending or available).
-
- The result includes information for a particular VPN connection
- only if the VPN connection matches all your filters.
-
- If there's no match, no special message is returned; the response is
- simply empty.
-
- The returned information consists of:
- 1. The VPN connection ID.
- 2. The type of connection.
- 3. Customer gateway ID.
- 4. VPN gateway ID.
- 5. The current state of the VPN connection (pending, available,
- deleting, deleted).
- 6. The customer gateway configuration information in the
- native XML format.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsRequest.WithVpnConnectionId(System.String[])">
- <summary>
- Sets the VpnConnectionId property
- </summary>
- <param name="list">A VPN connection ID</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsRequest.IsSetVpnConnectionId">
- <summary>
- Checks if VpnConnectionId property is set
- </summary>
- <returns>true if VpnConnectionId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">The filter to apply on the results of DescribeVpnConnections.
- Filters can be:
- a. state - The state of the VPN connection. (pending, available,
- deleting, deleted).
- b. type - The type of VPN connection. Currently the only
- supported type is ipsec.1.
- c. customerGatewayId - The ID of a customer gateway associated
- with the VPN connection.
- d. vpnGatewayId - The ID of a VPN gateway associated with the VPN
- connection.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpnConnectionsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnConnectionsRequest.VpnConnectionId">
- <summary>
- Gets and sets the VpnConnectionId property.
- A VPN connection ID
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpnConnectionsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- The filter to apply on the results of DescribeVpnConnections.
- Filters can be:
- a. state - The state of the VPN connection. (pending, available,
- deleting, deleted).
- b. type - The type of VPN connection. Currently the only
- supported type is ipsec.1.
- c. customerGatewayId - The ID of a customer gateway associated
- with the VPN connection.
- d. vpnGatewayId - The ID of a VPN gateway associated with the VPN
- connection.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsResult.IsSetPlacementGroupInfo">
- <summary>
- Checks if PlacementGroupInfo property is set
- </summary>
- <returns>true if PlacementGroupInfo property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribePlacementGroupsResult.PlacementGroupInfo">
- <summary>
- Gets and sets the PlacementGroupInfo property.
- Contains information about the specified
- PlacementGroups.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribePlacementGroupsRequest">
- <summary>
- Returns information about one or more
- PlacementGroup instances
- in a user's account.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsRequest.WithGroupName(System.String[])">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="list">The name of the PlacementGroup.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with the
- specified PlacementGroups.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribePlacementGroupsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribePlacementGroupsRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- The name of the PlacementGroup.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribePlacementGroupsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with the
- specified PlacementGroups.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeLicensesRequest">
- <summary>
- Provides details of a user's registered licenses.
- Zero or more IDs may be specified on the call.
- When one or more license IDs are specified,
- only data for the specified IDs are returned.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesRequest.WithLicenseId(System.String[])">
- <summary>
- Sets the LicenseId property
- </summary>
- <param name="list">Specifies the license registration for which
- details are to be returned.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesRequest.IsSetLicenseId">
- <summary>
- Checks if LicenseId property is set
- </summary>
- <returns>true if LicenseId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags
- associated with the specified Licenses.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeLicensesRequest.LicenseId">
- <summary>
- Gets and sets the LicenseId property.
- Specifies the license registration for which
- details are to be returned.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeLicensesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags
- associated with the specified Licenses.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeDhcpOptionsRequest">
- <summary>
- Gives you information about one or more sets of DHCP options. You can
- specify one or more DHCP options set IDs, or no IDs (to describe
- all your sets of DHCP options). The returned information consists of:
- 1. The DHCP options set ID
- 2. The options
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsRequest.WithDhcpOptionsId(System.String[])">
- <summary>
- Sets the DhcpOptionsId property
- </summary>
- <param name="list">A DHCP options set ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsRequest.IsSetDhcpOptionsId">
- <summary>
- Checks if DhcpOptionsId property is set
- </summary>
- <returns>true if DhcpOptionsId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with the specified
- DhcpOptions.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeDhcpOptionsRequest.DhcpOptionsId">
- <summary>
- Gets and sets the DhcpOptionsId property.
- A DHCP options set ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeDhcpOptionsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with the specified
- DhcpOptions.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeBundleTasksRequest">
- <summary>
- Describes current bundling tasks. For more
- information on bundling
- instances, go to the
- Amazon Elastic Compute
- Cloud Developer Guide or Amazon Elastic Compute
- Cloud Getting Started Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksRequest.WithBundleId(System.String[])">
- <summary>
- Sets the BundleId property
- </summary>
- <param name="list">The ID of the bundle task to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksRequest.IsSetBundleId">
- <summary>
- Checks if BundleId property is set
- </summary>
- <returns>true if BundleId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated
- with the specified BundleTasks.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeBundleTasksRequest.BundleId">
- <summary>
- Gets and sets the BundleId property.
- The ID of the bundle task to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeBundleTasksRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated
- with the specified BundleTasks.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeAvailabilityZonesResult">
- <summary>
- Describe Availability Zones Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesResult.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAvailabilityZonesResult.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- Availability Zone information.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVpcRequest">
- <summary>
- Deletes a VPC. You must terminate all running instances and delete
- all subnets before deleting the VPC, otherwise Amazon VPC returns an error.
-
- AWS might delete any VPC if you leave it inactive for an extended
- period of time (inactive means that there are no running Amazon EC2 instances in the VPC).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpcRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC you want to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpcRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVpcRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC you want to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteRouteRequest">
- <summary>
- Deletes a route from a route table in a VPC. For more information about route tables, go to Route Tables
- in the Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteRequest.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The ID of the route table where the route will
- be deleted.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteRequest.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteRequest.WithDestinationCidrBlock(System.String)">
- <summary>
- Sets the DestinationCidrBlock property
- </summary>
- <param name="destinationCidrBlock">The CIDR range for the route you want to
- delete. The value you specify must exactly
- match the CIDR for the route you want to
- delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteRequest.IsSetDestinationCidrBlock">
- <summary>
- Checks if DestinationCidrBlock property is set
- </summary>
- <returns>true if DestinationCidrBlock property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteRouteRequest.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The ID of the route table where the route will
- be deleted.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteRouteRequest.DestinationCidrBlock">
- <summary>
- Gets and sets the DestinationCidrBlock property.
- The CIDR range for the route you want to
- delete. The value you specify must exactly
- match the CIDR for the route you want to
- delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteNetworkAclEntryResponse">
- <summary>
- The Response for the
- DeleteNetworkAclEntry operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclEntryResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteNetworkAclEntryResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteInternetGatewayResponse">
- <summary>
- The Response for the
- DeleteInternetGateway operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteInternetGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteInternetGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteInternetGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteInternetGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpnConnectionResponse">
- <summary>
- Create Vpn Connection Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionResponse.IsSetCreateVpnConnectionResult">
- <summary>
- Checks if CreateVpnConnectionResult property is set
- </summary>
- <returns>true if CreateVpnConnectionResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnConnectionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnConnectionResponse.CreateVpnConnectionResult">
- <summary>
- Gets and sets the CreateVpnConnectionResult property.
- Create Vpn Connection Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateRouteTableResult">
- <summary>
- CreateRouteTable Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableResult.IsSetRouteTable">
- <summary>
- Checks if RouteTable property is set
- </summary>
- <returns>true if RouteTable property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteTableResult.RouteTable">
- <summary>
- Gets and sets the RouteTable property.
- Information about the newly created route table.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateRouteTableResponse">
- <summary>
- The Response for the
- CreateRouteTable operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableResponse.IsSetCreateRouteTableResult">
- <summary>
- Checks if CreateRouteTableResult property is set
- </summary>
- <returns>true if CreateRouteTableResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteTableResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteTableResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteTableResponse.CreateRouteTableResult">
- <summary>
- Gets and sets the CreateRouteTableResult property.
- CreateRouteTable Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateDhcpOptionsResponse">
- <summary>
- Create Dhcp Options Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsResponse.IsSetCreateDhcpOptionsResult">
- <summary>
- Checks if CreateDhcpOptionsResult property is set
- </summary>
- <returns>true if CreateDhcpOptionsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateDhcpOptionsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateDhcpOptionsResponse.CreateDhcpOptionsResult">
- <summary>
- Gets and sets the CreateDhcpOptionsResult property.
- Create Dhcp Options Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelBundleTaskResponse">
- <summary>
- CancelBundleTaskResponse
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskResponse.IsSetCancelBundleTaskResult">
- <summary>
- Checks if CancelBundleTaskResult property is set
- </summary>
- <returns>true if CancelBundleTaskResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelBundleTaskResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CancelBundleTaskResponse.CancelBundleTaskResult">
- <summary>
- Gets and sets the CancelBundleTaskResult property.
- Cancel Bundle Task Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.BundleTaskError">
- <summary>
- If the task fails, a description of the error.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTaskError.WithCode(System.String)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">Error code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTaskError.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTaskError.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">Error message.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleTaskError.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTaskError.Code">
- <summary>
- Gets and sets the Code property.
- Error code.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleTaskError.Message">
- <summary>
- Gets and sets the Message property.
- Error message.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmsForMetricResultUnmarshaller">
- <summary>
- DescribeAlarmsForMetricResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmHistoryRequestMarshaller">
- <summary>
- Describe Alarm History Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DatapointUnmarshaller">
- <summary>
- Datapoint Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.AlarmHistoryItemUnmarshaller">
- <summary>
- AlarmHistoryItem Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.PutMetricDataRequest">
- <summary>
- Container for the parameters to the PutMetricData operation.
- <para> Publishes metric data points to Amazon CloudWatch. Amazon
- Cloudwatch associates the data points with the specified metric. If
- the specified metric does not exist, Amazon CloudWatch creates the
- metric. </para> <para><b>NOTE:</b> If you create a metric with the
- PutMetricData action, allow up to fifteen minutes for the metric to
- appear in calls to the ListMetrics action. </para> <para> The size of
- a PutMetricData request is limited to 8 KB for HTTP GET requests and
- 40 KB for HTTP POST requests. </para> <para><b>IMPORTANT:</b> Although
- the Value parameter accepts numbers of type Double, Amazon CloudWatch
- truncates values with very large exponents. Values with base-10
- exponents greater than 126 (1 x 10^126) are truncated. Likewise,
- values with base-10 exponents less than -130 (1 x 10^-130) are also
- truncated. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.PutMetricData(Amazon.CloudWatch.Model.PutMetricDataRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricDataRequest.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricDataRequest.WithMetricData(Amazon.CloudWatch.Model.MetricDatum[])">
- <summary>
- Adds elements to the MetricData collection
- </summary>
- <param name="metricData">The values to add to the MetricData collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricDataRequest.WithMetricData(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.MetricDatum})">
- <summary>
- Adds elements to the MetricData collection
- </summary>
- <param name="metricData">The values to add to the MetricData collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricDataRequest.Namespace">
- <summary>
- The namespace for the metric data.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[^:].*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricDataRequest.MetricData">
- <summary>
- A list of data describing the metric.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.InvalidParameterCombinationException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.InvalidParameterCombinationException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidParameterCombinationException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudFront.Model.ListStreamingDistributionsResponse">
- <summary>
- The ListStreamingDistributionsResponse contains the ListStreamingDistributionsResult and
- any headers or metadata returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListStreamingDistributionsResponse.StreamingDistribution">
- <summary>
- Gets the StreamingDistribution property as a List
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListStreamingDistributionsResponse.Marker">
- <summary>
- Gets and sets the Marker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListStreamingDistributionsResponse.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListStreamingDistributionsResponse.NextMarker">
- <summary>
- Gets and sets the NextMarker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListStreamingDistributionsResponse.IsTruncated">
- <summary>
- Gets and sets the IsTruncated property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetDistributionInfoRequest">
- <summary>
- The GetDistributionInfoRequest contains the parameters used for the GetDistributionInfo operation.
- <br />Required Parameter: Id
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetDistributionInfoRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The distribution's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetDistributionInfoRequest.Id">
- <summary>
- Gets and sets the Id property for the Distribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CreateOriginAccessIdentityResponse">
- <summary>
- This response contains any headers and the CloudFrontOriginAccessIdentity Config
- for the CloudFront Origin Access Identity created.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateOriginAccessIdentityResponse.OriginAccessIdentity">
- <summary>
- Gets and sets the OriginAccessIdentity property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateOriginAccessIdentityResponse.Location">
- <summary>
- Gets and sets the Location property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateOriginAccessIdentityResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Origin Access Identity's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ValidateTemplateRequestMarshaller">
- <summary>
- Validate Template Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.StackUnmarshaller">
- <summary>
- Stack Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackResourcesRequestMarshaller">
- <summary>
- Describe Stack Resources Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackResourceResponse">
- <summary>
- Returns information about the DescribeStackResourceResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackResourceResponse.DescribeStackResourceResult">
- <summary>
- Gets and sets the DescribeStackResourceResult property.
- The output for a DescribeStackResource action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DeleteStackRequest">
- <summary>
- Container for the parameters to the DeleteStack operation.
- <para> Deletes a specified stack. Once the call completes successfully, stack deletion starts. Deleted stacks do not show up in the
- DescribeStacks API if the deletion has been completed successfully. </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.DeleteStack(Amazon.CloudFormation.Model.DeleteStackRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DeleteStackRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DeleteStackRequest.StackName">
- <summary>
- The name or the unique identifier associated with the stack.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.SetDesiredCapacityResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SetDesiredCapacity operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.SetDesiredCapacityRequestMarshaller">
- <summary>
- Set Desired Capacity Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupResponse">
- <summary>
- Returns information about the TerminateInstanceInAutoScalingGroupResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupResponse.TerminateInstanceInAutoScalingGroupResult">
- <summary>
- Gets and sets the TerminateInstanceInAutoScalingGroupResult property.
- The output for the TerminateInstanceInAutoScalingGroup action.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.MetricCollectionType">
- <summary>
- <para> The MetricCollectionType data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.MetricCollectionType.WithMetric(System.String)">
- <summary>
- Sets the Metric property
- </summary>
- <param name="metric">The value to set for the Metric property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.MetricCollectionType.Metric">
- <summary>
-
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResult">
- <summary>
- <para> The AutoScalingInstancesType data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResult.WithAutoScalingInstances(Amazon.AutoScaling.Model.AutoScalingInstanceDetails[])">
- <summary>
- Adds elements to the AutoScalingInstances collection
- </summary>
- <param name="autoScalingInstances">The values to add to the AutoScalingInstances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResult.WithAutoScalingInstances(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.AutoScalingInstanceDetails})">
- <summary>
- Adds elements to the AutoScalingInstances collection
- </summary>
- <param name="autoScalingInstances">The values to add to the AutoScalingInstances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResult.AutoScalingInstances">
- <summary>
- A list of Auto Scaling instances.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ListQueuesResult">
- <summary>
- Information returned by the ListQueuesRequest, including queue URL.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesResult.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ListQueuesResult.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ListQueuesResponse">
- <summary>
- Returns a list of queues and related metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesResponse.IsSetListQueuesResult">
- <summary>
- Checks if ListQueuesResult property is set
- </summary>
- <returns>true if ListQueuesResult property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ListQueuesResponse.ListQueuesResult">
- <summary>
- Gets and sets the ListQueuesResult property.
- Information returned by the ListQueuesRequest, including queue URL.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ListQueuesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest">
- <summary>
- Allows a topic owner to set a topic's attributes.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The Amazon Reference Name (ARN) of the topic the client wishes
- to set the attribute value of.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.WithAttributeName(System.String)">
- <summary>
- Sets the AttributeName property
- </summary>
- <param name="attributeName">The name of the attribute the client wishes to set.
- Only a subset of a topic's attributes can be set.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.IsSetAttributeName">
- <summary>
- Checks if AttributeName property is set
- </summary>
- <returns>true if AttributeName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.WithAttributeValue(System.String)">
- <summary>
- Sets the AttributeValue property
- </summary>
- <param name="attributeValue">The value of the attribute the client wishes to set.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.IsSetAttributeValue">
- <summary>
- Checks if AttributeValue property is set
- </summary>
- <returns>true if AttributeValue property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The Amazon Reference Name (ARN) of the topic the client wishes
- to set the attribute value of.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.AttributeName">
- <summary>
- Gets and sets the AttributeName property.
- The name of the attribute the client wishes to set.
- Only a subset of a topic's attributes can be set.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest.AttributeValue">
- <summary>
- Gets and sets the AttributeValue property.
- The value of the attribute the client wishes to set.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig">
- <summary>
- Configuration for accessing Amazon Simple Notification Service service
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithSignatureMethod(System.String)">
- <summary>
- Sets the SignatureMethod property
- </summary>
- <param name="signatureMethod">SignatureMethod property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetSignatureMethod">
- <summary>
- Checks if SignatureMethod property is set
- </summary>
- <returns>true if SignatureMethod property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithSignatureVersion(System.String)">
- <summary>
- Sets the SignatureVersion property
- </summary>
- <param name="signatureVersion">SignatureVersion property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetSignatureVersion">
- <summary>
- Checks if SignatureVersion property is set
- </summary>
- <returns>true if SignatureVersion property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithUserAgent(System.String)">
- <summary>
- Sets the UserAgent property
- </summary>
- <param name="userAgent">UserAgent property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetUserAgent">
- <summary>
- Checks if UserAgent property is set
- </summary>
- <returns>true if UserAgent property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithServiceURL(System.String)">
- <summary>
- Sets the ServiceURL property
- </summary>
- <param name="serviceURL">ServiceURL property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetServiceURL">
- <summary>
- Checks if ServiceURL property is set
- </summary>
- <returns>true if ServiceURL property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithProxyHost(System.String)">
- <summary>
- Sets the ProxyHost property
- </summary>
- <param name="proxyHost">ProxyHost property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetProxyHost">
- <summary>
- Checks if ProxyHost property is set
- </summary>
- <returns>true if ProxyHost property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithProxyPort(System.Int32)">
- <summary>
- Sets the ProxyPort property
- </summary>
- <param name="proxyPort">ProxyPort property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetProxyPort">
- <summary>
- Checks if ProxyPort property is set
- </summary>
- <returns>true if ProxyPort property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithMaxErrorRetry(System.Int32)">
- <summary>
- Sets the MaxErrorRetry property
- </summary>
- <param name="maxErrorRetry">MaxErrorRetry property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetMaxErrorRetry">
- <summary>
- Checks if MaxErrorRetry property is set
- </summary>
- <returns>true if MaxErrorRetry property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithUseSecureStringForAwsSecretKey(System.Boolean)">
- <summary>
- Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <param name="fSecure">
- Whether a secure string should be used or not.
- </param>
- <returns>The Config object with the property set</returns>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithProxyUsername(System.String)">
- <summary>
- Sets the ProxyUsername property
- </summary>
- <param name="userName">Value for the ProxyUsername property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetProxyUsername">
- <summary>
- Checks if ProxyUsername property is set
- </summary>
- <returns>true if ProxyUsername property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.WithProxyPassword(System.String)">
- <summary>
- Sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- <param name="password">ProxyPassword property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.IsSetProxyPassword">
- <summary>
- Checks if ProxyPassword property is set
- </summary>
- <returns>true if ProxyPassword property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.ServiceVersion">
- <summary>
- Gets Service Version
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.SignatureMethod">
- <summary>
- Gets and sets of the signatureMethod property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.SignatureVersion">
- <summary>
- Gets and sets of the SignatureVersion property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.UserAgent">
- <summary>
- Gets and sets of the UserAgent property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.ServiceURL">
- <summary>
- Gets and sets of the ServiceURL property.
- This is an optional property; change it
- only if you want to try a different service
- endpoint or want to switch between https and http.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.ProxyHost">
- <summary>
- Gets and sets of the ProxyHost property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.ProxyPort">
- <summary>
- Gets and sets of the ProxyPort property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.MaxErrorRetry">
- <summary>
- Gets and sets of the MaxErrorRetry property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.UseSecureStringForAwsSecretKey">
- <summary>
- Gets and Sets the UseSecureStringForAwsSecretKey property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.ProxyUsername">
- <summary>
- Gets and sets the ProxyUsername property.
- Used in conjunction with the ProxyPassword
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.ProxyPassword">
- <summary>
- Gets and sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.GetSendStatisticsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetSendStatistics operation
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.GetSendQuotaRequestMarshaller">
- <summary>
- Get Send Quota Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.GetSendStatisticsResponse">
- <summary>
- Returns information about the GetSendStatisticsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.GetSendStatisticsResponse.GetSendStatisticsResult">
- <summary>
- Gets and sets the GetSendStatisticsResult property.
- Represents a list of SendDataPoint items returned from a successful GetSendStatistics request. This list contains aggregated data from the
- previous two weeks of sending activity.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Content">
- <summary>
- <para>Represents textual data, plus an optional character set
- specification.</para> <para>By default, the text must be 7-bit ASCII,
- due to the constraints of the SMTP protocol. If the text must contain
- any other characters, then you must also specify a character set.
- Examples include UTF-8, ISO-8859-1, and Shift_JIS.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Content.#ctor">
- <summary>
- Default constructor for a new Content object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Content.#ctor(System.String)">
- <summary>
- Constructs a new Content object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="data"> The textual data of the content. </param>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Content.WithData(System.String)">
- <summary>
- Sets the Data property
- </summary>
- <param name="data">The value to set for the Data property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Content.WithCharset(System.String)">
- <summary>
- Sets the Charset property
- </summary>
- <param name="charset">The value to set for the Charset property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Content.Data">
- <summary>
- The textual data of the content.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Content.Charset">
- <summary>
- The character set of the content.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient">
- <summary>
- Implemenation for accessing AmazonSimpleEmailService.
-
- Amazon Simple Email Service <para> This is the API Reference for
- Amazon Simple Email Service (Amazon SES). This documentation is
- intended to be used in conjunction with the Amazon SES Getting Started
- Guide and the Amazon SES Developer Guide. </para> <para> For specific
- details on how to construct a service request, please consult the
- Amazon SES Developer Guide. </para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonSimpleEmailServiceClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.#ctor(System.String,System.String,Amazon.SimpleEmail.AmazonSimpleEmailServiceConfig)">
- <summary>
- Constructs AmazonSimpleEmailServiceClient with AWS Access Key ID, AWS Secret Key and an
- AmazonS3 Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonSimpleEmailServiceClient Configuration Object</param>
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.GetSendQuota(Amazon.SimpleEmail.Model.GetSendQuotaRequest)">
- <summary>
- <para>Returns the user's current activity limits.</para>
- </summary>
-
- <param name="getSendQuotaRequest">Container for the necessary
- parameters to execute the GetSendQuota service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the GetSendQuota service method, as
- returned by AmazonSimpleEmailService.</returns>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.ListVerifiedEmailAddresses(Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesRequest)">
- <summary>
- <para>Returns a list containing all of the email addresses that have
- been verified.</para>
- </summary>
-
- <param name="listVerifiedEmailAddressesRequest">Container for the
- necessary parameters to execute the ListVerifiedEmailAddresses service
- method on AmazonSimpleEmailService.</param>
-
- <returns>The response from the ListVerifiedEmailAddresses service
- method, as returned by AmazonSimpleEmailService.</returns>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.GetSendStatistics(Amazon.SimpleEmail.Model.GetSendStatisticsRequest)">
- <summary>
- <para>Returns the user's sending statistics. The result is a list of
- data points, representing the last two weeks of sending
- activity.</para> <para>Each data point in the list contains statistics
- for a 15-minute interval.</para>
- </summary>
-
- <param name="getSendStatisticsRequest">Container for the necessary
- parameters to execute the GetSendStatistics service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the GetSendStatistics service method, as
- returned by AmazonSimpleEmailService.</returns>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.SendEmail(Amazon.SimpleEmail.Model.SendEmailRequest)">
- <summary>
- <para>Composes an email message, based on input data, and then
- immediately queues the message for sending.</para>
- </summary>
-
- <param name="sendEmailRequest">Container for the necessary parameters
- to execute the SendEmail service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the SendEmail service method, as returned
- by AmazonSimpleEmailService.</returns>
-
- <exception cref="T:Amazon.SimpleEmail.Model.MessageRejectedException"/>
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.DeleteVerifiedEmailAddress(Amazon.SimpleEmail.Model.DeleteVerifiedEmailAddressRequest)">
- <summary>
- <para>Deletes the specified email address from the list of verified
- addresses.</para>
- </summary>
-
- <param name="deleteVerifiedEmailAddressRequest">Container for the
- necessary parameters to execute the DeleteVerifiedEmailAddress service
- method on AmazonSimpleEmailService.</param>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.VerifyEmailAddress(Amazon.SimpleEmail.Model.VerifyEmailAddressRequest)">
- <summary>
- <para>Verifies an email address. This action causes a confirmation
- email message to be sent to the specified address.</para>
- </summary>
-
- <param name="verifyEmailAddressRequest">Container for the necessary
- parameters to execute the VerifyEmailAddress service method on
- AmazonSimpleEmailService.</param>
-
- </member>
- <member name="M:Amazon.SimpleEmail.AmazonSimpleEmailServiceClient.SendRawEmail(Amazon.SimpleEmail.Model.SendRawEmailRequest)">
- <summary>
- <para>Sends an email message, with header and content specified by the
- client. The <c>SendRawEmail</c> action is useful for sending multipart
- MIME emails, with attachments or inline content.</para> <para>The raw
- text of the message must comply with Internet email standards;
- otherwise, the message cannot be sent. For more information, go to
- the Amazon SES Developer Guide.</para>
- </summary>
-
- <param name="sendRawEmailRequest">Container for the necessary
- parameters to execute the SendRawEmail service method on
- AmazonSimpleEmailService.</param>
-
- <returns>The response from the SendRawEmail service method, as
- returned by AmazonSimpleEmailService.</returns>
-
- <exception cref="T:Amazon.SimpleEmail.Model.MessageRejectedException"/>
- </member>
- <member name="T:Amazon.SimpleDB.Model.ListDomainsRequest">
- <summary>
- Lists all domains associated with the account. It returns domain names up to the limit set by MaxNumberOfDomains.
- A NextToken is returned if there are more than MaxNumberOfDomains domains. Calling ListDomains successive times
- with the NextToken returns up to MaxNumberOfDomains more domain names each time.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsRequest.WithMaxNumberOfDomains(System.Decimal)">
- <summary>
- Sets the MaxNumberOfDomains property
- </summary>
- <param name="maxNumberOfDomains">The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsRequest.IsSetMaxNumberOfDomains">
- <summary>
- Checks if MaxNumberOfDomains property is set
- </summary>
- <returns>true if MaxNumberOfDomains property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">String that tells Amazon SimpleDB where to start the next list of domain names.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ListDomainsRequest.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ListDomainsRequest.MaxNumberOfDomains">
- <summary>
- Gets and sets the MaxNumberOfDomains property.
- The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ListDomainsRequest.NextToken">
- <summary>
- Gets and sets the NextToken property.
- String that tells Amazon SimpleDB where to start the next list of domain names.
- </summary>
- </member>
- <member name="T:Amazon.S3.Transfer.TransferUtilityConfig">
- <summary>
- <para>
- Provides configuration options for how <see cref="T:Amazon.S3.Transfer.TransferUtility"/> processes requests.
- </para>
- <para>
- The best configuration settings depend on network
- configuration, latency and bandwidth.
- The default configuration settings are suitable
- for most applications, but this class enables developers to experiment with
- different configurations and tune transfer manager performance.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityConfig.#ctor">
- <summary>
- Default constructor.
- </summary>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityConfig.MinSizeBeforePartUpload">
- <summary>
- Gets or sets the minimum part size for upload parts.
- Decreasing the minimum part size causes
- multipart uploads to be split into a larger number
- of smaller parts. Setting this value too low has a negative effect
- on transfer speeds, causing extra latency and network
- communication for each part.
- </summary>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityConfig.NumberOfUploadThreads">
- <summary>
- Gets or sets the number of executing threads.
- This property determines how many active threads will be used to upload
- the file. The default value is 10 threads.
-
- If this property is set to a value greater then <seealso cref="P:System.Net.ServicePointManager.DefaultConnectionLimit"/> than
- <seealso cref="P:System.Net.ServicePointManager.DefaultConnectionLimit"/> will be updated to the value. If simultaneous uploads are being
- done then consider increasing the <seealso cref="P:System.Net.ServicePointManager.DefaultConnectionLimit"/> property.
- </summary>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityConfig.DefaultTimeout">
- <summary>
- Gets or sets the default timeout in milliseconds used for writing objects to S3. The default value is 5 minutes.
- </summary>
- </member>
- <member name="T:Amazon.S3.Transfer.TransferUtility">
- <summary>
- <para>
- Provides a high level utility for managing transfers to and from Amazon S3.
- </para>
- <para>
- <c>TransferUtility</c> provides a simple API for
- uploading content to and downloading content
- from Amazon S3, and makes extensive use of Amazon S3 multipart uploads to
- achieve enhanced throughput, performance and reliability.
- </para>
- <para>
- When uploading large files by specifing files path as opposed to a stream, <c>TransferUtility</c> uses multiple threads to upload
- multiple parts of a single upload at once. When dealing with large content
- sizes and high bandwidth, this can have a significant increase on throughput.
- </para>
- <para>
- The <c>TransferUtility</c> checks to make sure that <seealso cref="P:System.Net.ServicePointManager.DefaultConnectionLimit"/>
- is equal to or greater than <seealso cref="P:Amazon.S3.Transfer.TransferUtilityConfig.NumberOfUploadThreads"/>. If
- it is not then it will update <seealso cref="P:System.Net.ServicePointManager.DefaultConnectionLimit"/> to the same value as
- <seealso cref="P:Amazon.S3.Transfer.TransferUtilityConfig.NumberOfUploadThreads"/>. If simultaneous uploads are being
- done then consider increasing the <seealso cref="P:System.Net.ServicePointManager.DefaultConnectionLimit"/> property.
- </para>
- </summary>
- <remarks>
- <para>
- Transfers are stored in memory. If the application is restarted,
- previous transfers are no longer accessible. If needed, clean up any multipart uploads
- that are incomplete.
- </para>
- </remarks>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.#ctor(System.String,System.String)">
- <summary>
- Constructs a new <see cref="T:Amazon.S3.Transfer.TransferUtility"/> class.
- </summary>
- <param name="awsAccessKeyId">
- The AWS Access Key ID.
- </param>
- <param name="awsSecretAccessKey">
- The AWS Secret Access Key.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.#ctor(System.String,System.String,Amazon.S3.Transfer.TransferUtilityConfig)">
- <summary>
- Constructs a new instance of the <see cref="T:Amazon.S3.Transfer.TransferUtility"/> class.
- </summary>
- <param name="awsAccessKeyId">
- The AWS Access Key ID.
- </param>
- <param name="awsSecretAccessKey">
- The AWS Secret Access Key.
- </param>
- <param name="config">
- The config for setting advances settings.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.#ctor(Amazon.S3.AmazonS3)">
- <summary>
- Constructs a new instance of the <see cref="T:Amazon.S3.Transfer.TransferUtility"/> class.
- </summary>
- <param name="s3Client">
- The Amazon S3 client.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.#ctor(Amazon.S3.AmazonS3,Amazon.S3.Transfer.TransferUtilityConfig)">
- <summary>
- Initializes a new instance of the <see cref="T:Amazon.S3.Transfer.TransferUtility"/> class.
- </summary>
- <param name="s3Client">
- The Amazon S3 client.
- </param>
- <param name="config">
- The advanced configuration settings for <see cref="T:Amazon.S3.Transfer.TransferUtility"/>.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.Dispose">
- <summary>
- Disposes resources and performs initiates garbage collection
- for the <see cref="T:Amazon.S3.Transfer.TransferUtility"/> class.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginUploadDirectory(System.String,System.String,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the UploadDirectory operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory"/>
- </summary>
- <param name="directory">
- The directory containing files to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload files to.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUploadDirectory.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory(System.String,System.String)">
- <summary>
- Uploads the files in directory. The object key is obtained from the file names
- inside the directory.
- For large uploads, the file will be divided and uploaded in parts using
- Amazon S3's multipart API. The parts will be reassembled as one object in
- Amazon S3.
- </summary>
- <param name="directory">
- The directory containing files to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload files to.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginUploadDirectory(System.String,System.String,System.String,System.IO.SearchOption,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the UploadDirectory operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory"/>
- </summary>
- <param name="directory">
- The directory containing files to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload files to.
- </param>
- <param name="searchPattern">
- The pattern used to find files to upload in the directory.
- </param>
- <param name="searchOption">
- The search option specifying whether or not to recursively search for files to upload
- in subdirectories or not.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUploadDirectory.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory(System.String,System.String,System.String,System.IO.SearchOption)">
- <summary>
- Uploads the files in directory. The object key is obtained from the file names
- inside the directory.
- For large uploads, the file will be divided and uploaded in parts using
- Amazon S3's multipart API. The parts will be reassembled as one object in
- Amazon S3.
- </summary>
- <param name="directory">
- The directory containing files to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload files to.
- </param>
- <param name="searchPattern">
- The pattern used to find files to upload in the directory.
- </param>
- <param name="searchOption">
- The search option specifying whether or not to recursively search for files to upload
- in subdirectories or not.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginUploadDirectory(Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the UploadDirectory operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory"/>
- </summary>
- <param name="request">
- The request that contains all the parameters to upload a directory.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUploadDirectory.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.EndUploadDirectory(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the UploadDirectory operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginUploadDirectory.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory(Amazon.S3.Transfer.TransferUtilityUploadDirectoryRequest)">
- <summary>
- Uploads the files in directory. The object key is obtained from the file names
- inside the directory.
- For large uploads, the file will be divided and uploaded in parts using
- Amazon S3's multipart API. The parts will be reassembled as one object in
- Amazon S3.
- </summary>
- <param name="request">
- The request that contains all the parameters to upload a directory.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginUpload(System.String,System.String,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Upload operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Upload"/>
- </summary>
- <param name="filePath">
- The file path of the file to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload the file to.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUpload.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.Upload(System.String,System.String)">
- <summary>
- Uploads the specified file.
- The object key is obtained from the file's file name.
- Multiple threads are used to read the file and perform multiple uploads in parallel.
- For large uploads, the file will be divided and uploaded in parts using
- Amazon S3's multipart API. The parts will be reassembled as one object in
- Amazon S3.
- </summary>
- <param name="filePath">
- The file path of the file to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload the file to.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginUpload(System.String,System.String,System.String,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Upload operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Upload"/>
- </summary>
- <param name="filePath">
- The file path of the file to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload the file to.
- </param>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUpload.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.Upload(System.String,System.String,System.String)">
- <summary>
- Uploads the specified file.
- Multiple threads are used to read the file and perform multiple uploads in parallel.
- For large uploads, the file will be divided and uploaded in parts using
- Amazon S3's multipart API. The parts will be reassembled as one object in
- Amazon S3.
- </summary>
- <param name="filePath">
- The file path of the file to upload.
- </param>
- <param name="bucketName">
- The name of the bucket to upload the file to.
- </param>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginUpload(System.IO.Stream,System.String,System.String,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Upload operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Upload"/>
- </summary>
- <param name="stream">
- The stream to read to the content of the object.
- </param>
- <param name="bucketName">
- The name of the bucket to upload the stream to.
- </param>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUpload.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.Upload(System.IO.Stream,System.String,System.String)">
- <summary>
- Uploads the contents of the specified stream.
- For large uploads, the file will be divided and uploaded in parts using
- Amazon S3's multipart API. The parts will be reassembled as one object in
- Amazon S3.
- </summary>
- <param name="stream">
- The stream to read to the content of the object.
- </param>
- <param name="bucketName">
- The name of the bucket to upload the stream to.
- </param>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginUpload(Amazon.S3.Transfer.TransferUtilityUploadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Upload operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Upload"/>
- </summary>
- <param name="request">
- Contains all the parameters used for uploading to Amazon S3.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndUpload.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.EndUpload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the Upload operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.UploadDirectory"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginUpload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.Upload(Amazon.S3.Transfer.TransferUtilityUploadRequest)">
- <summary>
- Uploads the file or stream specified by the request.
- To track the progress of the upload,
- add an event listener to the request's <c>UploadProgressEvent</c>.
- For large uploads, the file will be divided and uploaded in parts using
- Amazon S3's multipart API. The parts will be reassembled as one object in
- Amazon S3.
- </summary>
- <param name="request">
- Contains all the parameters used for uploading to Amazon S3.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginOpenStream(System.String,System.String,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the OpenStream operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Upload"/>
- </summary>
- <param name="bucketName">
- The name of the bucket.
- </param>
- <param name="key">
- The object key.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndOpenStream.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.OpenStream(System.String,System.String)">
- <summary>
- Returns a stream to read the contents from Amazon S3 as
- specified by bucket name and key.
- The caller of this method is responsible for closing the stream.
- </summary>
- <param name="bucketName">
- The name of the bucket.
- </param>
- <param name="key">
- The object key.
- </param>
- <returns>
- A stream containing contents returned from Amazon S3.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginOpenStream(Amazon.S3.Transfer.TransferUtilityOpenStreamRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the OpenStream operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Upload"/>
- </summary>
- <param name="request">
- Contains all the parameters used for opening a stream to an S3 object.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndOpenStream.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.OpenStream(Amazon.S3.Transfer.TransferUtilityOpenStreamRequest)">
- <summary>
- Returns a stream to read the contents from Amazon S3 as
- specified by the <c>TransferUtilityOpenStreamRequest</c>.
- The caller of this method is responsible for closing the stream.
- </summary>
- <param name="request">
- Contains all the parameters used for opening a stream to an S3 object.
- </param>
- <returns>
- A stream containing contents returned from Amazon S3.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginDownload(System.String,System.String,System.String,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Download operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Download"/>
- </summary>
- <param name="filePath">
- The file path where the content from Amazon S3 will be written to.
- </param>
- <param name="bucketName">
- The name of the bucket containing the Amazon S3 object to download.
- </param>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDownload.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.Download(System.String,System.String,System.String)">
- <summary>
- Downloads the content from Amazon S3 and writes it to the specified file.
- The object key is obtained from the file's file name.
- </summary>
- <param name="filePath">
- The file path where the content from Amazon S3 will be written to.
- </param>
- <param name="bucketName">
- The name of the bucket containing the Amazon S3 object to download.
- </param>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginDownload(Amazon.S3.Transfer.TransferUtilityDownloadRequest,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the Download operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Download"/>
- </summary>
- <param name="request">
- Contains all the parameters used to download an Amazon S3 object.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndDownload.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.Download(Amazon.S3.Transfer.TransferUtilityDownloadRequest)">
- <summary>
- Downloads the content from Amazon S3 and writes it to the specified file.
- If the key is not specified in the request parameter,
- the file name will be assumed.
- </summary>
- <param name="request">
- Contains all the parameters used to download an Amazon S3 object.
- </param>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.EndDownload(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the Download operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.Download"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginDownload.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.BeginAbortMultipartUploads(System.String,System.DateTime,System.AsyncCallback,System.Object)">
- <summary>
- Initiates the asynchronous execution of the AbortMultipartUploads operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.AbortMultipartUploads"/>
- </summary>
- <param name="bucketName">
- The name of the bucket containing multipart uploads.
- </param>
- <param name="initiatedDate">
- The date before which the multipart uploads were initiated.
- </param>
- <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
- <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback procedure using the AsyncState property.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- <returns>An IAsyncResult that can be used to poll or wait for results, or both;
- this value is also needed when invoking EndAbortMultipartUploads.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.EndAbortMultipartUploads(System.IAsyncResult)">
- <summary>
- Finishes the asynchronous execution of the AbortMultipartUploads operation.
- <seealso cref="M:Amazon.S3.Transfer.TransferUtility.AbortMultipartUploads"/>
- </summary>
- <param name="asyncResult">The IAsyncResult returned by the call to BeginAbortMultipartUploads.</param>
- <exception cref="T:System.ArgumentNullException"></exception>
- <exception cref="T:System.Net.WebException"></exception>
- <exception cref="T:Amazon.S3.AmazonS3Exception"></exception>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtility.AbortMultipartUploads(System.String,System.DateTime)">
- <summary>
- Aborts the multipart uploads that were initiated before the specified date.
- </summary>
- <param name="bucketName">
- The name of the bucket containing multipart uploads.
- </param>
- <param name="initiatedDate">
- The date before which the multipart uploads were initiated.
- </param>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtility.S3Client">
- <summary>
- Gets the Amazon S3 client used for making calls into Amazon S3.
- </summary>
- <value>
- The Amazon S3 client used for making calls into Amazon S3.
- </value>
- </member>
- <member name="T:Amazon.S3.Model.WebsiteConfiguration">
- <summary>
- Properties that define the website configuration for a S3 bucket.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.WebsiteConfiguration.WithIndexDocumentSuffix(System.String)">
- <summary>
- Sets the IndexDocumentSuffix property for this request.
-
- This value is a suffix that is appended to a request that is for a "directory"
- on the website endpoint (e.g. if the suffix is index.html and
- you make a request to samplebucket/images/ the data that
- is returned will be for the object with the key name
- images/index.html)
- The suffix must not be empty and must not include a slash
- character.
- </summary>
- <param name="indexDocumentSuffix">The value that IndexDocumentSuffix is set to</param>
- <returns>the WebsiteConfiguration with the IndexDocumentSuffix set</returns>
- </member>
- <member name="M:Amazon.S3.Model.WebsiteConfiguration.IsSetIndexDocumentSuffix">
- <summary>
- Checks if IndexDocumentSuffix property is set.
- </summary>
- <returns>true if IndexDocumentSuffix property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.WebsiteConfiguration.WithErrorDocument(System.String)">
- <summary>
- Sets the ErrorDocument property for this request.
-
- The object key name to use when a 4XX class error occurs
- </summary>
- <param name="errorDocument">The value that ErrorDocument is set to</param>
- <returns>the WebsiteConfiguration with the ErrorDocument set</returns>
- </member>
- <member name="M:Amazon.S3.Model.WebsiteConfiguration.IsSetErrorDocument">
- <summary>
- Checks if ErrorDocument property is set.
- </summary>
- <returns>true if ErrorDocument property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.WebsiteConfiguration.IndexDocumentSuffix">
- <summary>
- Gets and sets the IndexDocumentSuffix property.
-
- This value is a suffix that is appended to a request that is for a "directory"
- on the website endpoint (e.g. if the suffix is index.html and
- you make a request to samplebucket/images/ the data that
- is returned will be for the object with the key name
- images/index.html)
- The suffix must not be empty and must not include a slash
- character.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.WebsiteConfiguration.ErrorDocument">
- <summary>
- Gets and sets the ErrorDocument property.
-
- The object key name to use when a 4XX class error occurs
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetObjectMetadataResponse">
- <summary>
- The GetObjectMetadataResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataResponse.LastModified">
- <summary>
- Gets and sets the lastModified property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataResponse.ContentType">
- <summary>
- Gets and sets the ContentType property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataResponse.ContentLength">
- <summary>
- Gets and sets the ContentLength property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataResponse.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the version-id of the S3 object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketLocationResponse">
- <summary>
- The GetBucketLocationResponse contains the GetBucketLocationResult and
- any headers returned by S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketLocationResponse.Location">
- <summary>
- Gets and sets the Location property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DeleteBucketResponse">
- <summary>
- The DeleteBucketResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PutBucketPolicyRequest">
- <summary>
- The PutBucketPolicyRequest contains the parameters used for the PutBucketPolicy operation.
- <br />Required Parameters: BucketName, Policy
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketPolicyRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket the request will get the location for.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketPolicyRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketPolicyRequest.WithPolicy(System.String)">
- <summary>
- Sets the Policy property for this request.
- This is the JSON string representing the policy that will be applied to the S3 Bucket.
- </summary>
- <param name="policy">The JSON string for the policy</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketPolicyRequest.IsSetPolicy">
- <summary>
- Checks if policy property is set.
- </summary>
- <returns>true if Policy property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.PutBucketPolicyRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutBucketPolicyRequest.Policy">
- <summary>
- Gets and sets the Policy property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ListPartsResponse">
- <summary>
- The ListPartsResponse contains all the information about the
- ListParts method.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.BucketName">
- <summary>
- Gets and sets the name of the bucket to which the multipart upload was initiated.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.Key">
- <summary>
- Gets and sets the object key for which the multipart upload was initiated.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.UploadId">
- <summary>
- Gets and sets the upload ID identifying the multipart upload whose parts are being listed.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.Owner">
- <summary>
- Gets and sets the Owner property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.Initiator">
- <summary>
- Gets and sets the Initiator property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.StorageClass">
- <summary>
- Gets and sets the class of storage used to store the uploaded object.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.PartNumberMarker">
- <summary>
- Gets and sets the part number after which listing begins.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.NextPartNumberMarker">
- <summary>
- Gets and sets the NextPartNumberMarker property.
- <para>
- When a list is truncated, specifies the last part that should be skipped
- over to resume listing. Use this value for the PartNumberMarker
- request property in a subsequent request.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.MaxParts">
- <summary>
- Gets and sets the maximum number of parts allowed in a response.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.IsTruncated">
- <summary>
- Gets and sets the IsTruncated property.
- <para>
- Indicates whether the returned list of parts is truncated. A value true
- indicates the list was truncated. A list may be truncated if the number of
- parts exceeds the limit specified by MaxParts.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsResponse.Parts">
- <summary>
- Gets and sets the Parts property.
- <para>
- PartDetails is a container for elements related to a particular part. A response can contain
- zero or more Part elements.
- </para>
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ListPartsRequest">
- <summary>
- The ListPartsRequest contains the parameters used for the ListParts method.
- <br />Required Parameters: BucketName, Key, UploadId
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.WithUploadId(System.String)">
- <summary>
- Sets the UploadId property for this request.
- This is the upload id for the multipart upload in process.
- </summary>
- <param name="uploadId">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.IsSetUploadId">
- <summary>
- Checks if UploadId property is set.
- </summary>
- <returns>true if UploadId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.WithMaxParts(System.Int32)">
- <summary>
- Sets the MaxParts property for this request.
- </summary>
- <param name="maxParts">The value that MaxParts is set to</param>
- <returns>the request with the MaxParts set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.IsSetMaxParts">
- <summary>
- Checks if MaxParts property is set.
- </summary>
- <returns>true if MaxParts property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.WithPartNumberMarker(System.String)">
- <summary>
- Sets the Key property for this request.
- </summary>
- <param name="partNumberMarker">The value that PartNumberMarker is set to</param>
- <returns>the request with the PartNumberMarker set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListPartsRequest.IsSetPartNumberMarker">
- <summary>
- Checks if PartNumberMarker property is set.
- </summary>
- <returns>true if PartNumberMarker property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsRequest.UploadId">
- <summary>
- Gets and sets the UploadId property.
- This is the upload id for the multipart upload in process.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsRequest.MaxParts">
- <summary>
- Gets and sets the MaxParts property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListPartsRequest.PartNumberMarker">
- <summary>
- Gets and sets the PartNumberMarker property.
- <para>
- Specifies the part after which listing should begin. Only parts with higher
- part numbers will be listed.
- </para>
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketVersioningRequest">
- <summary>
- The GetBucketVersioningRequest contains the parameters used for the GetBucketVersioning operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketVersioningRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket the request will get the location for.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketVersioningRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketVersioningRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.CopyPartResponse">
- <summary>
- The CopyPartResponse contains all the information about the
- CopyPart operation.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartResponse.LastModified">
- <summary>
- Gets and sets the LastModified property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartResponse.SourceVersionId">
- <summary>
- Gets and sets the SourceVersionId property.
- This is the Version Id of the Source Object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartResponse.PartNumber">
- <summary>
- Gets and sets the PartNumber property.
- This is the part number in it's multi-part upload that will uniquely identify the part
- and determine the relative ordering within the destination object.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.CopyPartRequest">
- <summary>
- The CopyPartRequest contains the parameters used for the CopyPart operation.
- <br />Required Parameters: SourceBucket, SourceKey, DestinationBucket, DestinationKey,
- UploadID, PartNumber
- <br />Optional Parameters: ETagsToMatch, ETagsToNotMatch, ModifiedSinceDate,
- UnmodifiedSinceDate, Timeout, SourceVersionId, FirstByte, LastByte
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithSourceBucket(System.String)">
- <summary>
- Sets the SourceBucket property for this request.
- This is the S3Bucket that contains the S3 Object you
- want to copy.
- </summary>
- <param name="srcBucket">The value that SourceBucket is set to</param>
- <returns>the request with the SourceBucket set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetSourceBucket">
- <summary>
- Checks if SourceBucket property is set.
- </summary>
- <returns>true if SourceBucket property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithSourceKey(System.String)">
- <summary>
- Sets the SourceKey property for this request.
- This is the S3Object you want to copy.
- </summary>
- <param name="srcKey">The value that SourceKey is set to</param>
- <returns>the request with the SourceKey set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetSourceKey">
- <summary>
- Checks if SourceKey property is set.
- </summary>
- <returns>true if SourceKey property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithSourceVersionId(System.String)">
- <summary>
- Sets the SourceVersionId property for this request.
- This is the SourceVersionId for the S3 Object you want to Get.
- </summary>
- <param name="srcVersionId">The value that SourceVersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetSourceVersionId">
- <summary>
- Checks if SourceVersionId property is set.
- </summary>
- <returns>true if SourceVersionId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithDestinationBucket(System.String)">
- <summary>
- Sets the DestinationBucket property for this request.
- This is the S3 Bucket where the copied S3 Object is put.
- </summary>
- <param name="dstBucket">The value that DestinationBucket is set to</param>
- <returns>the request with the DestinationBucket set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetDestinationBucket">
- <summary>
- Checks if DestinationBucket property is set.
- </summary>
- <returns>true if DestinationBucket property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithDestinationKey(System.String)">
- <summary>
- Sets the DestinationKey property for this request.
- This is the key for the new S3 Object that is copied.
- </summary>
- <param name="dstKey">The value that DestinationKey is set to</param>
- <returns>the request with the Destinationkey set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetDestinationKey">
- <summary>
- Checks if DestinationKey property is set.
- </summary>
- <returns>true if DestinationKey property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithUploadID(System.String)">
- <summary>
- Sets the UploadID property for this request.
- This is the ID of the multipart upload for which we are copying a part.
- </summary>
- <param name="uploadID">The value that UploadID is set to</param>
- <returns>the request with the UploadID set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetUploadID">
- <summary>
- Checks if UploadID property is set.
- </summary>
- <returns>true if UploadID property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithETagsToMatch(System.String[])">
- <summary>
- Adds the Etags to the ETagsToMatch property for this request.
- Copies the object if its entity tag (ETag) matches
- one of the specified tag; otherwise return a 412 (precondition failed).
- </summary>
- <param name="etagsToMatch">The items to be added to the ETagsToMatch.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithETagsToMatch(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds the Etags to the ETagsToMatch property for this request.
- Copies the object if its entity tag (ETag) matches
- one of the specified tag; otherwise return a 412 (precondition failed).
- </summary>
- <param name="etagsToMatch">The items to be added to the ETagsToMatch.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetETagToMatch">
- <summary>
- Checks if ETagsToMatch property is set.
- </summary>
- <returns>true if ETagToMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithETagsToNotMatch(System.String[])">
- <summary>
- Adds the Etags to the ETagsToNotMatch property for this request.
- Copies the object if its entity tag (ETag) is different
- from all the specified Etags; otherwise returns a 412 (failed condition).
- </summary>
- <param name="etagsToNotMatch">The ETags to add to the ETagsToNotMatch property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithETagsToNotMatch(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds the Etags to the ETagsToNotMatch property for this request.
- Copies the object if its entity tag (ETag) is different
- from all the specified Etags; otherwise returns a 412 (failed condition).
- </summary>
- <param name="etagsToNotMatch">The ETags to add to the ETagsToNotMatch property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetETagToNotMatch">
- <summary>
- Checks if ETagToNotMatch property is set.
- </summary>
- <returns>true if ETagToNotMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithModifiedSinceDate(System.DateTime)">
- <summary>
- Sets the ModifiedSinceDate property for this request.
- Copies the object if it has been modified since the
- specified time; otherwise returns a 412 (failed condition).
- </summary>
- <param name="modifiedSinceDate">The value that ModifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetModifiedSinceDate">
- <summary>
- Checks if ModifiedSinceDate property is set.
- </summary>
- <returns>true if ModifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithUnmodifiedSinceDate(System.DateTime)">
- <summary>
- Sets the UnmodifiedSinceDate property for this request.
- Copies the object if it hasn't been modified since the
- specified time; otherwise returns a 412 (precondition failed).
- </summary>
- <param name="unmodifiedSinceDate">The value that UnmodifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetUnmodifiedSinceDate">
- <summary>
- Checks if UnmodifiedSinceDate property is set.
- </summary>
- <returns>true if UnmodifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the Timeout property (in milliseconds).
- Please set the timeout only if you are certain that
- the file will not be transferred within the default intervals
- for an HttpWebRequest.
- </summary>
- <param name="timeout">Timeout property</param>
- <remarks>Attempting to set value less than or equal to 0 (and not Infinite)
- will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithReadWriteTimeout(System.Int32)">
- <summary>
- Sets the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout property of the HttpWebRequest.
- </summary>
- <param name="readwritetimeout">ReadWriteTimeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithPartNumber(System.Int32)">
- <summary>
- Sets of the PartNumber property.
- Valid part numbers are from 1 to 10,000 inclusive and will uniquely identify the part
- and determine the relative ordering within the destination object. If a part already
- exists with the PartNumber it will be overwritten.
- </summary>
- <param name="partNumber">value to set the PartNumber property to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetPartNumber">
- <summary>
- Checks if PartNumber property is set.
- </summary>
- <returns>true if PartNumber property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithFirstByte(System.Int64)">
- <summary>
- Sets the firstByte property. This property contains the location of the first
- byte in the range if only a portion of the source object is to be copied as the part.
- The LastByte property must also be set or this value will be ignored.
- </summary>
- <param name="firstByte">The value to set the FirstByte property too</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetFirstByte">
- <summary>
- Checks if FirstByte property is set.
- </summary>
- <returns>true if FirstByte property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.WithLastByte(System.Int64)">
- <summary>
- Gets and sets the lastByte property. This property contains the location of the last
- byte in the range if only a portion of the source object is to be copied as the part.
- The FirstByte property must also be set or this value will be ignored.
- </summary>
- <param name="lastByte">The value to set the LastByte property to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyPartRequest.IsSetLastByte">
- <summary>
- Checks if LastByte property is set.
- </summary>
- <returns>true if LastByte property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.SourceBucket">
- <summary>
- Gets and sets the SourceBucket property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.SourceKey">
- <summary>
- Gets and sets the SourceKey property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.SourceVersionId">
- <summary>
- Gets and sets the SourceVersionId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.DestinationBucket">
- <summary>
- Gets and sets the DestinationBucket property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.DestinationKey">
- <summary>
- Gets and sets the DestinationKey property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.UploadID">
- <summary>
- Gets and sets the UploadID property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.ETagToMatch">
- <summary>
- Gets and sets the ETagsToMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.ETagsToNotMatch">
- <summary>
- Gets and sets the ETagsToNotMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.ModifiedSinceDate">
- <summary>
- Gets and sets the ModifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.UnmodifiedSinceDate">
- <summary>
- Gets and sets the UnmodifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.Timeout">
- <summary>
- Gets and sets of the Timeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout and Timeout properties of the
- HTTPWebRequest object used for S3 COPY requests.
- </summary>
- <remarks>Attempting to set value less than or equal to 0 (and not Infinite)
- will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.ReadWriteTimeout">
- <summary>
- Gets and sets of the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout properties of the
- HTTPWebRequest object used for S3 COPY requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.PartNumber">
- <summary>
- Gets and sets of the PartNumber property.
- Valid part numbers are from 1 to 10,000 inclusive and will uniquely identify the part
- and determine the relative ordering within the destination object. If a part already
- exists with the PartNumber it will be overwritten.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.FirstByte">
- <summary>
- Gets and sets the firstByte property. This property contains the location of the first
- byte in the range if only a portion of the source object is to be copied as the part.
- The LastByte property must also be set or this value will be ignored.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyPartRequest.LastByte">
- <summary>
- Gets and sets the lastByte property. This property contains the location of the last
- byte in the range if only a portion of the source object is to be copied as the part.
- The FirstByte property must also be set or this value will be ignored.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ModifyDBInstanceResultUnmarshaller">
- <summary>
- Result Unmarshaller for ModifyDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBSecurityGroupsRequestMarshaller">
- <summary>
- Describe D B Security Groups Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBInstanceResultUnmarshaller">
- <summary>
- Result Unmarshaller for DeleteDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DBSecurityGroupMembershipUnmarshaller">
- <summary>
- DBSecurityGroupMembership Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBParameterGroupResultUnmarshaller">
- <summary>
- Result Unmarshaller for CreateDBParameterGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ResetDBParameterGroupResult">
- <summary>
- <para> Contains the result of a successful invocation of the ModifyDBParameterGroup or ResetDBParameterGroup action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ResetDBParameterGroupResult.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.ResetDBParameterGroupResult.DBParameterGroupName">
- <summary>
- The name of the DB Parameter Group.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ResetDBParameterGroupRequest">
- <summary>
- Container for the parameters to the ResetDBParameterGroup operation.
- <para> Modifies the parameters of a DBParameterGroup to the engine/system default value. To reset specific parameters submit a list of the
- following: ParameterName and ApplyMethod. To reset the entire DBParameterGroup specify the DBParameterGroup name and ResetAllParameters
- parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to
- take effect on the next DB instance restart or RebootDBInstance request. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.ResetDBParameterGroup(Amazon.RDS.Model.ResetDBParameterGroupRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.ResetDBParameterGroupRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ResetDBParameterGroupRequest.WithResetAllParameters(System.Boolean)">
- <summary>
- Sets the ResetAllParameters property
- </summary>
- <param name="resetAllParameters">The value to set for the ResetAllParameters property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ResetDBParameterGroupRequest.WithParameters(Amazon.RDS.Model.Parameter[])">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ResetDBParameterGroupRequest.WithParameters(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.Parameter})">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.ResetDBParameterGroupRequest.DBParameterGroupName">
- <summary>
- The name of the DB Parameter Group. Constraints: <ul> <li>Must be 1 to 255 alphanumeric characters</li> <li>First character must be a
- letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ResetDBParameterGroupRequest.ResetAllParameters">
- <summary>
- Specifies whether (<c>true</c>) or not (<c>false</c>) to reset all parameters in the DB Parameter Group to default values. Default:
- <c>true</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ResetDBParameterGroupRequest.Parameters">
- <summary>
- An array of parameter names, values, and the apply method for the parameter update. At least one parameter name, value, and apply method
- must be supplied; subsequent arguments are optional. A maximum of 20 parameters may be modified in a single request. <b>MySQL</b> Valid
- Values (for Apply method): <c>immediate</c> | <c>pending-reboot</c> You can use the immediate value with dynamic parameters only. You can
- use the <c>pending-reboot</c> value for both dynamic and static parameters, and changes are applied when DB Instance reboots. <b>Oracle</b>
- Valid Values (for Apply method): <c>pending-reboot</c>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ReservedDBInstanceAlreadyExistsException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstanceAlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new ReservedDBInstanceAlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest">
- <summary>
- Container for the parameters to the DescribeOrderableDBInstanceOptions operation.
- <para> Returns a list of orderable DB Instance options for the specified engine. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeOrderableDBInstanceOptions(Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.WithLicenseModel(System.String)">
- <summary>
- Sets the LicenseModel property
- </summary>
- <param name="licenseModel">The value to set for the LicenseModel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.Engine">
- <summary>
- The name of the engine to retrieve DB Instance options for.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.EngineVersion">
- <summary>
- The engine version filter value. Specify this parameter to show only the available offerings matching the specified engine version.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.DBInstanceClass">
- <summary>
- The DB Instance class filter value. Specify this parameter to show only the available offerings matching the specified DB Instance class.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.LicenseModel">
- <summary>
- The license model filter value. Specify this parameter to show only the available offerings matching the specified license model.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeOrderableDBInstanceOptions request. If this parameter is specified, the response
- includes only records beyond the marker, up to the value specified by <c>MaxRecords</c> .
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeEventsResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeEvents action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsResult.WithEvents(Amazon.RDS.Model.Event[])">
- <summary>
- Adds elements to the Events collection
- </summary>
- <param name="events">The values to add to the Events collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEventsResult.WithEvents(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.Event})">
- <summary>
- Adds elements to the Events collection
- </summary>
- <param name="events">The values to add to the Events collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsResult.Marker">
- <summary>
- The marker obtained from a previous operation response.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEventsResult.Events">
- <summary>
- A list of <a>Event</a> instances.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBParametersResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeDBParameters action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParametersResult.WithParameters(Amazon.RDS.Model.Parameter[])">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParametersResult.WithParameters(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.Parameter})">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParametersResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParametersResult.Parameters">
- <summary>
- A list of <a>Parameter</a> instances.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParametersResult.Marker">
- <summary>
- The marker obtained from a previous operation response.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBInstanceReadReplicaResponse">
- <summary>
- Returns information about the CreateDBInstanceReadReplica response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaResponse.CreateDBInstanceReadReplicaResult">
-
- Gets and sets the CreateDBInstanceReadReplicaResult property.
- Contains the result of a successful invocation of the CreateDBInstanceReadReplica
- action.
-
- </member>
- <member name="T:Amazon.ImportExport.Model.MissingManifestFieldException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.MissingManifestFieldException.#ctor(System.String)">
- <summary>
- Constructs a new MissingManifestFieldException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.ListJobsRequest">
- <summary>
- Container for the parameters to the ListJobs operation.
- <para> This operation returns the jobs associated with the requester.
- AWS Import/Export lists the jobs in reverse chronological order based
- on the date of creation. For example if Job Test1 was created
- 2009Dec30 and Test2 was created 2010Feb05, the ListJobs operation
- would return Test2 followed by Test1. </para>
- </summary>
- <seealso cref="M:Amazon.ImportExport.AmazonImportExport.ListJobs(Amazon.ImportExport.Model.ListJobsRequest)"/>
- </member>
- <member name="M:Amazon.ImportExport.Model.ListJobsRequest.WithMaxJobs(System.Int32)">
- <summary>
- Sets the MaxJobs property
- </summary>
- <param name="maxJobs">The value to set for the MaxJobs property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.ListJobsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.ListJobsRequest.MaxJobs">
- <summary>
- Sets the maximum number of jobs returned in the response. If there are
- additional jobs that were not returned because MaxJobs was exceeded,
- the response contains <IsTruncated>true</IsTruncated>. To return the
- additional jobs, see Marker.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.ListJobsRequest.Marker">
- <summary>
- Specifies the JOBID to start after when listing the jobs created with
- your account. AWS Import/Export lists your jobs in reverse
- chronological order. See MaxJobs.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UploadSigningCertificateResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- UploadSigningCertificate action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadSigningCertificateResult.WithCertificate(Amazon.IdentityManagement.Model.SigningCertificate)">
- <summary>
- Sets the Certificate property
- </summary>
- <param name="certificate">The value to set for the Certificate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadSigningCertificateResult.Certificate">
- <summary>
- Information about the certificate.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UploadServerCertificateRequest">
- <summary>
- Container for the parameters to the UploadServerCertificate operation.
- <para>Uploads a server certificate entity for the AWS Account. The
- server certificate entity includes a public key certificate, a private
- key, and an optional certificate chain, which should all be
- PEM-encoded.</para> <para>For information about the number of server
- certificates you can upload, see Limitations on IAM Entities in
- <i>Using AWS Identity and Access Management</i> .</para>
- <para><b>NOTE:</b>Because the body of the public key certificate,
- private key, and the certificate chain can be large, you should use
- POST rather than GET when calling UploadServerCertificate. For more
- information, see Making Query Requests in Using AWS Identity and
- Access Management.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UploadServerCertificate(Amazon.IdentityManagement.Model.UploadServerCertificateRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.WithPath(System.String)">
- <summary>
- Sets the Path property
- </summary>
- <param name="path">The value to set for the Path property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.WithServerCertificateName(System.String)">
- <summary>
- Sets the ServerCertificateName property
- </summary>
- <param name="serverCertificateName">The value to set for the ServerCertificateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.WithCertificateBody(System.String)">
- <summary>
- Sets the CertificateBody property
- </summary>
- <param name="certificateBody">The value to set for the CertificateBody property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.WithPrivateKey(System.String)">
- <summary>
- Sets the PrivateKey property
- </summary>
- <param name="privateKey">The value to set for the PrivateKey property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.WithCertificateChain(System.String)">
- <summary>
- Sets the CertificateChain property
- </summary>
- <param name="certificateChain">The value to set for the CertificateChain property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.Path">
- <summary>
- The path for the server certificate. For more information about paths, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>. This parameter is optional. If it is not included, it defaults to a slash
- (/).
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.ServerCertificateName">
- <summary>
- The name for the server certificate. Do not include the path in this value.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.CertificateBody">
- <summary>
- The contents of the public key certificate in PEM-encoded format.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16384</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.PrivateKey">
- <summary>
- The contents of the private key in PEM-encoded format.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16384</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadServerCertificateRequest.CertificateChain">
- <summary>
- The contents of the certificate chain. This is typically a concatenation of the PEM-encoded public key certificates of the chain.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 2097152</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateServerCertificateResponse">
- <summary>
- Returns information about the UpdateServerCertificate response metadata.
- The UpdateServerCertificate operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateLoginProfileResponse">
- <summary>
- Returns information about the UpdateLoginProfile response metadata.
- The UpdateLoginProfile operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.SigningCertificateUnmarshaller">
- <summary>
- SigningCertificate Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ServerCertificateMetadataUnmarshaller">
- <summary>
- ServerCertificateMetadata Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListServerCertificatesRequestMarshaller">
- <summary>
- List Server Certificates Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListMFADevicesRequestMarshaller">
- <summary>
- List M F A Devices Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupsForUserRequestMarshaller">
- <summary>
- List Groups For User Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListAccountAliasesResultUnmarshaller">
- <summary>
- ListAccountAliasesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.AccessKeyMetadataUnmarshaller">
- <summary>
- AccessKeyMetadata Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListServerCertificatesRequest">
- <summary>
- Container for the parameters to the ListServerCertificates operation.
- <para>Lists the server certificates that have the specified path
- prefix. If none exist, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListServerCertificates(Amazon.IdentityManagement.Model.ListServerCertificatesRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListServerCertificatesRequest.WithPathPrefix(System.String)">
- <summary>
- Sets the PathPrefix property
- </summary>
- <param name="pathPrefix">The value to set for the PathPrefix property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListServerCertificatesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListServerCertificatesRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListServerCertificatesRequest.PathPrefix">
- <summary>
- The path prefix for filtering the results. For example: <c>/company/servercerts</c> would get all server certificates for which the path
- starts with <c>/company/servercerts</c>. This parameter is optional. If it is not included, it defaults to a slash (/), listing all server
- certificates.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>\u002F[\u0021-\u007F]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListServerCertificatesRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListServerCertificatesRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of server certificates you want in the response. If there are
- additional server certificates beyond the maximum you specify, the <c>IsTruncated</c> response element will be set to <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListAccountAliasesResponse">
- <summary>
- Returns information about the ListAccountAliasesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccountAliasesResponse.ListAccountAliasesResult">
- <summary>
- Gets and sets the ListAccountAliasesResult property.
- Contains the result of a successful invocation of the ListAccountAliases action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetGroupPolicyResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- GetGroupPolicy action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupPolicyResult.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupPolicyResult.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupPolicyResult.WithPolicyDocument(System.String)">
- <summary>
- Sets the PolicyDocument property
- </summary>
- <param name="policyDocument">The value to set for the PolicyDocument property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupPolicyResult.GroupName">
- <summary>
- The group the policy is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupPolicyResult.PolicyName">
- <summary>
- The name of the policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupPolicyResult.PolicyDocument">
- <summary>
- The policy document.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 131072</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateGroupResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- CreateGroup action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateGroupResult.WithGroup(Amazon.IdentityManagement.Model.Group)">
- <summary>
- Sets the Group property
- </summary>
- <param name="group">The value to set for the Group property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateGroupResult.Group">
- <summary>
- Information about the group.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateAccessKeyResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- CreateAccessKey action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateAccessKeyResult.WithAccessKey(Amazon.IdentityManagement.Model.AccessKey)">
- <summary>
- Sets the AccessKey property
- </summary>
- <param name="accessKey">The value to set for the AccessKey property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateAccessKeyResult.AccessKey">
- <summary>
- Information about the access key.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.StepDetailUnmarshaller">
- <summary>
- StepDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.AddInstanceGroupsRequestMarshaller">
- <summary>
- Add Instance Groups Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.StreamingStep">
- <summary>
- Class that makes it easy to define Hadoop Streaming steps.
- <para>
- See also: <a href="http://hadoop.apache.org/common/docs/r0.20.2/streaming.html">Hadoop Streaming</a>
- </para>
- <code>
- AWSCredentials credentials = new BasicAWSCredentials(accessKey, secretKey);
- AmazonElasticMapReduce emr = new AmazonElasticMapReduceClient(credentials);
-
- HadoopJarStepConfig config = new StreamingStep()
- .WithInputs("s3://elasticmapreduce/samples/wordcount/input")
- .WithOutput("s3://my-bucket/output/")
- .WithMapper("s3://elasticmapreduce/samples/wordcount/wordSplitter.py")
- .WithReducer("aggregate")
- .ToHadoopJarStepConfig();
-
- StepConfig wordCount = new StepConfig()
- .WithName("Word Count")
- .WithActionOnFailure("TERMINATE_JOB_FLOW")
- .WithHadoopJarStep(config);
-
- RunJobFlowRequest request = new RunJobFlowRequest()
- .WithName("Word Count")
- .WithSteps(wordCount)
- .WithLogUri("s3://log-bucket/")
- .WithInstances(new JobFlowInstancesConfig()
- .WithEc2KeyName("keypairt")
- .WithHadoopVersion("0.20")
- .WithInstanceCount(5)
- .WithKeepJobFlowAliveWhenNoSteps(true)
- .WithMasterInstanceType("m1.small")
- .WithSlaveInstanceType("m1.small"));
-
- RunJobFlowResult result = emr.RunJobFlow(request).RunJobFlowResult;
- </code>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StreamingStep.#ctor">
- <summary>
- Creates a new default StreamingStep.
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StreamingStep.WithInputs(System.String[])">
- <summary>
- Add more input paths to this step.
- </summary>
- <param name="inputs">inputs a list of inputs to this step.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StreamingStep.WithOutput(System.String)">
- <summary>
- Set the output path for this step.
- </summary>
- <param name="output">The output path.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StreamingStep.WithMapper(System.String)">
- <summary>
- Set the mapper.
- </summary>
- <param name="mapper">The mapper.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StreamingStep.WithReducer(System.String)">
- <summary>
- Set the reducer.
- </summary>
- <param name="reducer">The reducer.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StreamingStep.WithHadoopConfig(System.String,System.String)">
- <summary>
- Add a Hadoop config override (-D value)
- </summary>
- <param name="key">Hadoop configuration key.</param>
- <param name="value">Configuration value.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StreamingStep.ToHadoopJarStepConfig">
- <summary>
- Creates the final HadoopJarStepConfig once you are done configuring the step. You can use
- this as you would any other HadoopJarStepConfig.
- </summary>
- <returns>HadoopJarStepConfig representing this streaming step.</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StreamingStep.Inputs">
- <summary>
- Gets and sets list of step input paths.
- </summary>
- <value>The inputs.</value>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StreamingStep.Output">
- <summary>
- Gets and sets the output path.
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StreamingStep.Mapper">
- <summary>
- Gets and sets the mapper.
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StreamingStep.Reducer">
- <summary>
- Gets and sets the reducer.
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StreamingStep.HadoopConfig">
- <summary>
- Gets and sets the hadoopConfig.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.RunJobFlowResponse">
- <summary>
- Returns information about the RunJobFlowResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowResponse.RunJobFlowResult">
- <summary>
- Gets and sets the RunJobFlowResult property.
- The result of the RunJobFlow operation.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail">
- <summary>
- <para>Specify the type of Amazon EC2 instances to run the job flow
- on.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithMasterInstanceType(System.String)">
- <summary>
- Sets the MasterInstanceType property
- </summary>
- <param name="masterInstanceType">The value to set for the MasterInstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithMasterPublicDnsName(System.String)">
- <summary>
- Sets the MasterPublicDnsName property
- </summary>
- <param name="masterPublicDnsName">The value to set for the MasterPublicDnsName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithMasterInstanceId(System.String)">
- <summary>
- Sets the MasterInstanceId property
- </summary>
- <param name="masterInstanceId">The value to set for the MasterInstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithSlaveInstanceType(System.String)">
- <summary>
- Sets the SlaveInstanceType property
- </summary>
- <param name="slaveInstanceType">The value to set for the SlaveInstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithInstanceCount(System.Int32)">
- <summary>
- Sets the InstanceCount property
- </summary>
- <param name="instanceCount">The value to set for the InstanceCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithInstanceGroups(Amazon.ElasticMapReduce.Model.InstanceGroupDetail[])">
- <summary>
- Adds elements to the InstanceGroups collection
- </summary>
- <param name="instanceGroups">The values to add to the InstanceGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithNormalizedInstanceHours(System.Int32)">
- <summary>
- Sets the NormalizedInstanceHours property
- </summary>
- <param name="normalizedInstanceHours">The value to set for the NormalizedInstanceHours property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithEc2KeyName(System.String)">
- <summary>
- Sets the Ec2KeyName property
- </summary>
- <param name="ec2KeyName">The value to set for the Ec2KeyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithPlacement(Amazon.ElasticMapReduce.Model.PlacementType)">
- <summary>
- Sets the Placement property
- </summary>
- <param name="placement">The value to set for the Placement property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithKeepJobFlowAliveWhenNoSteps(System.Boolean)">
- <summary>
- Sets the KeepJobFlowAliveWhenNoSteps property
- </summary>
- <param name="keepJobFlowAliveWhenNoSteps">The value to set for the KeepJobFlowAliveWhenNoSteps property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.WithHadoopVersion(System.String)">
- <summary>
- Sets the HadoopVersion property
- </summary>
- <param name="hadoopVersion">The value to set for the HadoopVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.MasterInstanceType">
- <summary>
- The Amazon EC2 master node instance type.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.MasterPublicDnsName">
- <summary>
- The DNS name of the master node.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.MasterInstanceId">
- <summary>
- The Amazon EC2 instance identifier of the master node.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.SlaveInstanceType">
- <summary>
- The Amazon EC2 slave node instance type.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.InstanceCount">
- <summary>
- The number of Amazon EC2 instances in the cluster. If the value is 1,
- the same instance serves as both the master and slave node. If the
- value is greater than 1, one instance is the master node and all
- others are slave nodes.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.InstanceGroups">
- <summary>
- Details about the job flow's instance groups.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.NormalizedInstanceHours">
- <summary>
- An approximation of the cost of the job flow, represented in
- m1.small/hours. This value is incremented once for every hour an
- m1.small runs. Larger instances are weighted more, so an Amazon EC2
- instance that is roughly four times more expensive would result in the
- normalized instance hours being incremented by four. This result is
- only an approximation and does not reflect the actual billing rate.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.Ec2KeyName">
- <summary>
- The name of an Amazon EC2 key pair that can be used to ssh to the
- master node of job flow.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.Placement">
- <summary>
- Specifies the Amazon EC2 Availability Zone for the job flow.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.KeepJobFlowAliveWhenNoSteps">
- <summary>
- Specifies whether or not the job flow should terminate after
- completing all steps.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.HadoopVersion">
- <summary>
- Specifies the Hadoop version for the job flow.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest">
- <summary>
- Container for the parameters to the DescribeJobFlows operation.
- <para> DescribeJobFlows returns a list of job flows that match all of
- the supplied parameters. The parameters can include a list of job flow
- IDs, job flow states, and restrictions on job flow creation date and
- time.</para> <para> Regardless of supplied parameters, only job flows
- created within the last two months are returned.</para> <para> If no
- parameters are supplied, then job flows matching either of the
- following criteria are returned:</para>
- <ul>
- <li>Job flows created and completed in the last two weeks</li>
- <li> Job flows created within the last two months that are in one of
- the following states: <c>RUNNING</c> ,
-
- <c>WAITING</c> ,
-
- <c>SHUTTING_DOWN</c> ,
-
- <c>STARTING</c> </li>
-
- </ul>
- <para> Amazon Elastic MapReduce can return a maximum of 512 job flow
- descriptions. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticMapReduce.AmazonElasticMapReduce.DescribeJobFlows(Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.WithCreatedAfter(System.DateTime)">
- <summary>
- Sets the CreatedAfter property
- </summary>
- <param name="createdAfter">The value to set for the CreatedAfter property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.WithCreatedBefore(System.DateTime)">
- <summary>
- Sets the CreatedBefore property
- </summary>
- <param name="createdBefore">The value to set for the CreatedBefore property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.WithJobFlowIds(System.String[])">
- <summary>
- Adds elements to the JobFlowIds collection
- </summary>
- <param name="jobFlowIds">The values to add to the JobFlowIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.WithJobFlowStates(System.String[])">
- <summary>
- Adds elements to the JobFlowStates collection
- </summary>
- <param name="jobFlowStates">The values to add to the JobFlowStates collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.CreatedAfter">
- <summary>
- Return only job flows created after this date and time.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.CreatedBefore">
- <summary>
- Return only job flows created before this date and time.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.JobFlowIds">
- <summary>
- Return only job flows whose job flow ID is contained in this list.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest.JobFlowStates">
- <summary>
- Return only job flows whose state is contained in this list.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.ListenerUnmarshaller">
- <summary>
- Listener Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerListenersResultUnmarshaller">
- <summary>
- DeleteLoadBalancerListenersResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.TooManyLoadBalancersException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.TooManyLoadBalancersException.#ctor(System.String)">
- <summary>
- Constructs a new TooManyLoadBalancersException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.InstanceState">
- <summary>
- <para> The InstanceState data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.InstanceState.#ctor">
- <summary>
- Default constructor for a new InstanceState object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.InstanceState.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The value to set for the InstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.InstanceState.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The value to set for the State property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.InstanceState.WithReasonCode(System.String)">
- <summary>
- Sets the ReasonCode property
- </summary>
- <param name="reasonCode">The value to set for the ReasonCode property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.InstanceState.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.InstanceState.InstanceId">
- <summary>
- Provides an EC2 instance ID.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.InstanceState.State">
- <summary>
- Specifies the current status of the instance.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.InstanceState.ReasonCode">
- <summary>
- Provides information about the cause of <i>OutOfService</i> instances. Specifically, it indicates whether the cause is Elastic Load
- Balancing or the instance behind the Load Balancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.InstanceState.Description">
- <summary>
- Provides a description of the instance.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersResult">
- <summary>
- <para> The output for the DescribeLoadBalancers action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersResult.WithLoadBalancerDescriptions(Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription[])">
- <summary>
- Adds elements to the LoadBalancerDescriptions collection
- </summary>
- <param name="loadBalancerDescriptions">The values to add to the LoadBalancerDescriptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersResult.WithLoadBalancerDescriptions(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription})">
- <summary>
- Adds elements to the LoadBalancerDescriptions collection
- </summary>
- <param name="loadBalancerDescriptions">The values to add to the LoadBalancerDescriptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersResult.LoadBalancerDescriptions">
- <summary>
- A list of LoadBalancer description structures.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest">
- <summary>
- Container for the parameters to the CreateLoadBalancer operation.
- <para> Creates a new LoadBalancer. </para> <para> Once the call has completed successfully, a new LoadBalancer is created; however, it will
- not be usable until at least one instance has been registered. When the LoadBalancer creation is completed, the client can check whether or
- not it is usable by using the DescribeInstanceHealth API. The LoadBalancer is usable as soon as any registered instance is <i>InService</i>
- .
- </para> <para><b>NOTE:</b> Currently, the client's quota of LoadBalancers is limited to five per Region. </para> <para><b>NOTE:</b>
- Load balancer DNS names vary depending on the Region they're created in. For load balancers created in the United States, the DNS name ends
- with: us-east-1.elb.amazonaws.com (for the US Standard Region) us-west-1.elb.amazonaws.com (for the Northern California Region) For load
- balancers created in the EU (Ireland) Region, the DNS name ends with: eu-west-1.elb.amazonaws.com </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateLoadBalancer(Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.#ctor">
- <summary>
- Default constructor for a new CreateLoadBalancerRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.#ctor(System.String)">
- <summary>
- Constructs a new CreateLoadBalancerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within your set of LoadBalancers.
- </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.#ctor(System.String,System.Collections.Generic.List{Amazon.ElasticLoadBalancing.Model.Listener},System.Collections.Generic.List{System.String})">
- <summary>
- Constructs a new CreateLoadBalancerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within your set of LoadBalancers.
- </param>
- <param name="listeners"> A list of the following tuples: LoadBalancerPort, InstancePort, and Protocol. </param>
- <param name="availabilityZones"> A list of Availability Zones. At least one Availability Zone must be specified. Specified Availability
- Zones must be in the same EC2 Region as the LoadBalancer. Traffic will be equally distributed across all zones. This list can be modified
- after the creation of the LoadBalancer. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.WithListeners(Amazon.ElasticLoadBalancing.Model.Listener[])">
- <summary>
- Adds elements to the Listeners collection
- </summary>
- <param name="listeners">The values to add to the Listeners collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.WithListeners(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Listener})">
- <summary>
- Adds elements to the Listeners collection
- </summary>
- <param name="listeners">The values to add to the Listeners collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within your set of LoadBalancers.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.Listeners">
- <summary>
- A list of the following tuples: LoadBalancerPort, InstancePort, and Protocol.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest.AvailabilityZones">
- <summary>
- A list of Availability Zones. At least one Availability Zone must be specified. Specified Availability Zones must be in the same EC2 Region
- as the LoadBalancer. Traffic will be equally distributed across all zones. This list can be modified after the creation of the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyResult">
- <summary>
- <para> The output for the CreateAppCookieStickinessPolicy action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckResult">
- <summary>
- <para> The output for the ConfigureHealthCheck action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckResult.WithHealthCheck(Amazon.ElasticLoadBalancing.Model.HealthCheck)">
- <summary>
- Sets the HealthCheck property
- </summary>
- <param name="healthCheck">The value to set for the HealthCheck property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckResult.HealthCheck">
- <summary>
- The updated healthcheck for the instances.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateEnvironmentResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateEnvironment operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateConfigurationTemplateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateConfigurationTemplate operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateApplicationRequestMarshaller">
- <summary>
- Update Application Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.TerminateEnvironmentResponseUnmarshaller">
- <summary>
- Response Unmarshaller for TerminateEnvironment operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RetrieveEnvironmentInfoRequestMarshaller">
- <summary>
- Retrieve Environment Info Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.EnvironmentInfoDescriptionUnmarshaller">
- <summary>
- EnvironmentInfoDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeConfigurationOptionsResultUnmarshaller">
- <summary>
- DescribeConfigurationOptionsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteApplicationRequestMarshaller">
- <summary>
- Delete Application Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateStorageLocationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateStorageLocation operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoResponse">
- <summary>
- Returns information about the RetrieveEnvironmentInfoResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RetrieveEnvironmentInfoResponse.RetrieveEnvironmentInfoResult">
- <summary>
- Gets and sets the RetrieveEnvironmentInfoResult property.
- Result message containing a description of the requested environment info.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RestartAppServerResponse">
- <summary>
- Returns information about the RestartAppServer response metadata.
- The RestartAppServer operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Listener">
- <summary>
- <para>Describes the properties of a Listener for the LoadBalancer.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.Listener.WithProtocol(System.String)">
- <summary>
- Sets the Protocol property
- </summary>
- <param name="protocol">The value to set for the Protocol property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.Listener.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.Listener.Protocol">
- <summary>
- The protocol that is used by the Listener.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.Listener.Port">
- <summary>
- The port that is used by the Listener.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateStorageLocationResult">
- <summary>
- <para>Results of a CreateStorageLocationResult call.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateStorageLocationResult.WithS3Bucket(System.String)">
- <summary>
- Sets the S3Bucket property
- </summary>
- <param name="s3Bucket">The value to set for the S3Bucket property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateStorageLocationResult.S3Bucket">
- <summary>
- The name of the Amazon S3 bucket created.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult">
- <summary>
- <para>Describes the properties of an environment.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithEndpointURL(System.String)">
- <summary>
- Sets the EndpointURL property
- </summary>
- <param name="endpointURL">The value to set for the EndpointURL property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithCNAME(System.String)">
- <summary>
- Sets the CNAME property
- </summary>
- <param name="cNAME">The value to set for the CNAME property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithHealth(System.String)">
- <summary>
- Sets the Health property
- </summary>
- <param name="health">The value to set for the Health property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.WithResources(Amazon.ElasticBeanstalk.Model.EnvironmentResourcesDescription)">
- <summary>
- Sets the Resources property
- </summary>
- <param name="resources">The value to set for the Resources property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.EnvironmentName">
- <summary>
- The name of this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.EnvironmentId">
- <summary>
- The ID of this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.ApplicationName">
- <summary>
- The name of the application associated with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.VersionLabel">
- <summary>
- The application version deployed in this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.SolutionStackName">
- <summary>
- The name of the <c>SolutionStack</c> deployed with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.TemplateName">
- <summary>
- The name of the configuration template used to originally launch this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.Description">
- <summary>
- Describes this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.EndpointURL">
- <summary>
- The URL to the LoadBalancer for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.CNAME">
- <summary>
- The URL to the CNAME for this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.DateCreated">
- <summary>
- The creation date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.DateUpdated">
- <summary>
- The last modified date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.Status">
- <summary>
- The current operational status of the environment: <ul> <li> <c>Launching</c>: Environment is in the process of initial deployment. </li>
- <li> <c>Updating</c>: Environment is in the process of updating its configuration settings or application version. </li> <li> <c>Ready</c>:
- Environment is available to have an action performed on it, such as update or terminate. </li> <li> <c>Terminating</c>: Environment is in
- the shut-down process. </li> <li> <c>Terminated</c>: Environment is not running. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Launching, Updating, Ready, Terminating, Terminated</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.Health">
- <summary>
- Describes the health status of the environment. AWS Elastic Beanstalk indicates the failure levels for a running environment: <enumValues>
- <value name="Red"> <c>Red</c> : Indicates the environment is not working. </value> <value name="Yellow"> <c>Yellow</c>: Indicates that
- something is wrong, the application might not be available, but the instances appear running. </value> <value name="Green"> <c>Green</c>:
- Indicates the environment is healthy and fully functional. </value> </enumValues> <ul> <li> <c>Red</c>: Indicates the environment is not
- responsive. Occurs when three or more consecutive failures occur for an environment. </li> <li> <c>Yellow</c>: Indicates that something is
- wrong. Occurs when two consecutive failures occur for an environment. </li> <li> <c>Green</c>: Indicates the environment is healthy and
- fully functional. </li> <li> <c>Grey</c>: Default health for a new environment. The environment is not fully launched and health checks have
- not started or health checks are suspended during an <c>UpdateEnvironment</c> or <c>RestartEnvironement</c> request. </li> </ul> Default:
- <c>Grey</c>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Green, Yellow, Red, Grey</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentResult.Resources">
- <summary>
- The description of the AWS resources used by this environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult">
- <summary>
- <para> Describes the settings for a configuration set. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithDeploymentStatus(System.String)">
- <summary>
- Sets the DeploymentStatus property
- </summary>
- <param name="deploymentStatus">The value to set for the DeploymentStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.SolutionStackName">
- <summary>
- The name of the solution stack this configuration set uses.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.ApplicationName">
- <summary>
- The name of the application associated with this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.TemplateName">
- <summary>
- If not <c>null</c>, the name of the configuration template for this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.Description">
- <summary>
- Describes this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.EnvironmentName">
- <summary>
- If not <c>null</c>, the name of the environment for this configuration set.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.DeploymentStatus">
- <summary>
- If this configuration set is associated with an environment, the <c>DeploymentStatus</c> parameter indicates the deployment status of this
- configuration set: <enumValues> <value name="null"> <c>null</c>: This configuration is not associated with a running environment. </value>
- <value name="pending"> <c>pending</c>: This is a draft configuration that is not deployed to the associated environment but is in the
- process of deploying. </value> <value name="deployed"> <c>deployed</c>: This is the configuration that is currently deployed to the
- associated running environment. </value> <value name="failed"> <c>failed</c>: This is a draft configuration, that failed to successfully
- deploy. </value> </enumValues> <ul> <li> <c>null</c>: This configuration is not associated with a running environment. </li> <li>
- <c>pending</c>: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying. </li>
- <li> <c>deployed</c>: This is the configuration that is currently deployed to the associated running environment. </li> <li> <c>failed</c>:
- This is a draft configuration that failed to successfully deploy. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>deployed, pending, failed</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.DateCreated">
- <summary>
- The date (in UTC time) when this configuration set was created.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.DateUpdated">
- <summary>
- The date (in UTC time) when this configuration set was last modified.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateConfigurationTemplateResult.OptionSettings">
- <summary>
- A list of the configuration options and their values in this configuration set.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateApplicationResult">
- <summary>
- <para>Result message containing a single description of an application.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationResult.WithApplication(Amazon.ElasticBeanstalk.Model.ApplicationDescription)">
- <summary>
- Sets the Application property
- </summary>
- <param name="application">The value to set for the Application property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationResult.Application">
- <summary>
- The <a>ApplicationDescription</a> of the application.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting">
- <summary>
- <para> A specification identifying an individual configuration option along with its current value. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting.WithOptionName(System.String)">
- <summary>
- Sets the OptionName property
- </summary>
- <param name="optionName">The value to set for the OptionName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value to set for the Value property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting.Namespace">
- <summary>
- A unique namespace identifying the option's associated AWS resource.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting.OptionName">
- <summary>
- The name of the configuration option.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting.Value">
- <summary>
- The current value for the configuration option.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription">
- <summary>
- <para> Describes the possible values for a configuration option. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithDefaultValue(System.String)">
- <summary>
- Sets the DefaultValue property
- </summary>
- <param name="defaultValue">The value to set for the DefaultValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithChangeSeverity(System.String)">
- <summary>
- Sets the ChangeSeverity property
- </summary>
- <param name="changeSeverity">The value to set for the ChangeSeverity property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithUserDefined(System.Boolean)">
- <summary>
- Sets the UserDefined property
- </summary>
- <param name="userDefined">The value to set for the UserDefined property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithValueType(System.String)">
- <summary>
- Sets the ValueType property
- </summary>
- <param name="valueType">The value to set for the ValueType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithValueOptions(System.String[])">
- <summary>
- Adds elements to the ValueOptions collection
- </summary>
- <param name="valueOptions">The values to add to the ValueOptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithValueOptions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ValueOptions collection
- </summary>
- <param name="valueOptions">The values to add to the ValueOptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithMinValue(System.Int32)">
- <summary>
- Sets the MinValue property
- </summary>
- <param name="minValue">The value to set for the MinValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithMaxValue(System.Int32)">
- <summary>
- Sets the MaxValue property
- </summary>
- <param name="maxValue">The value to set for the MaxValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithMaxLength(System.Int32)">
- <summary>
- Sets the MaxLength property
- </summary>
- <param name="maxLength">The value to set for the MaxLength property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.WithRegex(Amazon.ElasticBeanstalk.Model.OptionRestrictionRegex)">
- <summary>
- Sets the Regex property
- </summary>
- <param name="regex">The value to set for the Regex property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.Namespace">
- <summary>
- A unique namespace identifying the option's associated AWS resource.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.Name">
- <summary>
- The name of the configuration option.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.DefaultValue">
- <summary>
- The default value for this configuration option.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.ChangeSeverity">
- <summary>
- An indication of which action is required if the value for this configuration option changes: <enumValues> <value name="NoInterruption">
- NoInterruption - There is no interruption to the environment or application availability. </value> <value name="RestartEnvironment">
- RestartEnvironment - The environment is restarted, all AWS resources are deleted and recreated, and the environment is unavailable during
- the process. </value> <value name="RestartApplicationServer"> RestartApplicationServer - The environment is available the entire time.
- However, a short application outage occurs when the application servers on the running Amazon EC2 instances are restarted. </value>
- </enumValues> <ul> <li> <c>NoInterruption</c> : There is no interruption to the environment or application availability. </li> <li>
- <c>RestartEnvironment</c> : The environment is entirely restarted, all AWS resources are deleted and recreated, and the environment is
- unavailable during the process. </li> <li> <c>RestartApplicationServer</c> : The environment is available the entire time. However, a short
- application outage occurs when the application servers on the running Amazon EC2 instances are restarted. </li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.UserDefined">
- <summary>
- An indication of whether the user defined this configuration option: <enumValues> <value name="true"> <c>true</c> : This configuration
- option was defined by the user. It is a valid choice for specifying this as an Option to Remove when updating configuration settings.
- </value> <value name="false"> <c>false</c> : This configuration was not defined by the user. </value> </enumValues> <ul> <li> <c>true</c> :
- This configuration option was defined by the user. It is a valid choice for specifying if this as an <c>Option to Remove</c> when updating
- configuration settings. </li> <li> <c>false</c> : This configuration was not defined by the user. </li> </ul> Constraint: You can remove
- only <c>UserDefined</c> options from a configuration. Valid Values: <c>true</c> | <c>false</c>
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.ValueType">
- <summary>
- An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values:
- <enumValues> <value name="Scalar"> <c>Scalar</c> : Values for this option are a single selection from the possible values, or a unformatted
- string or numeric value governed by the MIN/MAX/Regex constraints: </value> <value name="List"> <c>List</c> : Values for this option are
- multiple selections of the possible values. </value> <value name="Boolean"> <c>Boolean</c> : Values for this option are either <c>true</c>
- or <c>false</c> . </value> </enumValues> <ul> <li> <c>Scalar</c> : Values for this option are a single selection from the possible values,
- or an unformatted string, or numeric value governed by the <c>MIN/MAX/Regex</c> constraints. </li> <li> <c>List</c> : Values for this option
- are multiple selections from the possible values. </li> <li> <c>Boolean</c> : Values for this option are either <c>true</c> or <c>false</c>
- . </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Scalar, List</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.ValueOptions">
- <summary>
- If specified, values for the configuration option are selected from this list.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.MinValue">
- <summary>
- If specified, the configuration option must be a numeric value greater than this value.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.MaxValue">
- <summary>
- If specified, the configuration option must be a numeric value less than this value.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.MaxLength">
- <summary>
- If specified, the configuration option must be a string value no longer than this value.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ConfigurationOptionDescription.Regex">
- <summary>
- If specified, the configuration option must be a string value that satisfies this regular expression.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityRequest">
- <summary>
- Container for the parameters to the CheckDNSAvailability operation.
- <para> Checks if the specified CNAME is available. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CheckDNSAvailability(Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityRequest.WithCNAMEPrefix(System.String)">
- <summary>
- Sets the CNAMEPrefix property
- </summary>
- <param name="cNAMEPrefix">The value to set for the CNAMEPrefix property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityRequest.CNAMEPrefix">
- <summary>
- The prefix used when this CNAME is reserved.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 63</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.SpotInstanceStateFault">
- <summary>
- Fault details for the Spot Instance request, if
- any.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceStateFault.WithCode(System.String)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">The reason code for the Spot Instance request
- fault</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceStateFault.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceStateFault.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The message for the Spot Instance request
- fault.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceStateFault.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceStateFault.Code">
- <summary>
- Gets and sets the Code property.
- The reason code for the Spot Instance request
- fault
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceStateFault.Message">
- <summary>
- Gets and sets the Message property.
- The message for the Spot Instance request
- fault.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Route.WithDestinationCidrBlock(System.String)">
- <summary>
- Sets the DestinationCidrBlock property
- </summary>
- <param name="destinationCidrBlock">The CIDR address block used for the destination match. For example:
- 0.0.0.0/0.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Route.IsSetDestinationCidrBlock">
- <summary>
- Checks if DestinationCidrBlock property is set
- </summary>
- <returns>true if DestinationCidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Route.WithGatewayId(System.String)">
- <summary>
- Sets the GatewayId property
- </summary>
- <param name="gatewayId">The ID of a gateway attached to your VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Route.IsSetGatewayId">
- <summary>
- Checks if GatewayId property is set
- </summary>
- <returns>true if GatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Route.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of a NAT instance in your VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Route.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Route.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The state of the route.The blackhole state indicates that the route's
- target isn't available (e.g., the specified gateway isn't attached to the
- VPC, the specified NAT instance has been terminated, etc.).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Route.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Route.DestinationCidrBlock">
- <summary>
- Gets and sets the DestinationCidrBlock property.
- The CIDR address block used for the destination match. For example:
- 0.0.0.0/0.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Route.GatewayId">
- <summary>
- Gets and sets the GatewayId property.
- The ID of a gateway attached to your VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Route.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of a NAT instance in your VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Route.State">
- <summary>
- Gets and sets the State property.
- The state of the route.The blackhole state indicates that the route's
- target isn't available (e.g., the specified gateway isn't attached to the
- VPC, the specified NAT instance has been terminated, etc.).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest">
- <summary>
- Replaces an entry (i.e., rule) in a network ACL. For more information about network ACLs, go to Network
- ACLs in the Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithNetworkAclId(System.String)">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="networkAclId">ID of the ACL where the entry will be replaced.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithRuleNumber(System.Decimal)">
- <summary>
- Sets the RuleNumber property
- </summary>
- <param name="ruleNumber">Rule number of the entry to replace.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetRuleNumber">
- <summary>
- Checks if RuleNumber property is set
- </summary>
- <returns>true if RuleNumber property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithProtocol(System.String)">
- <summary>
- Sets the Protocol property
- </summary>
- <param name="protocol">IP protocol the rule applies to.
-
- Valid Values: tcp | udp | icmp or an IP protocol number.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetProtocol">
- <summary>
- Checks if Protocol property is set
- </summary>
- <returns>true if Protocol property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithRuleAction(System.String)">
- <summary>
- Sets the RuleAction property
- </summary>
- <param name="ruleAction">Whether to allow or deny traffic that matches the rule.
-
- Valid Values: allow | deny</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetRuleAction">
- <summary>
- Checks if RuleAction property is set
- </summary>
- <returns>true if RuleAction property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithEgress(System.Boolean)">
- <summary>
- Sets the Egress property
- </summary>
- <param name="egress">Whether this rule applies to egress traffic from the No
- subnet (true) or ingress traffic (false).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetEgress">
- <summary>
- Checks if Egress property is set
- </summary>
- <returns>true if Egress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithCidrBlock(System.String)">
- <summary>
- Sets the CidrBlock property
- </summary>
- <param name="cidrBlock">The CIDR range to allow or deny, in CIDR notation
- (e.g., 172.16.0.0/24).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetCidrBlock">
- <summary>
- Checks if CidrBlock property is set
- </summary>
- <returns>true if CidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithIcmp(Amazon.EC2.Model.Icmp)">
- <summary>
- Sets the Icmp property
- </summary>
- <param name="icmp">For the ICMP protocol, this is the ICMP type and code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetIcmp">
- <summary>
- Checks if Icmp property is set
- </summary>
- <returns>true if Icmp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.WithPortRange(Amazon.EC2.Model.PortRange)">
- <summary>
- Sets the PortRange property
- </summary>
- <param name="portRange">For the TCP or UDP protocols, the range of ports the rule applies to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.IsSetPortRange">
- <summary>
- Checks if PortRange property is set
- </summary>
- <returns>true if PortRange property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- ID of the ACL where the entry will be replaced.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.RuleNumber">
- <summary>
- Gets and sets the RuleNumber property.
- Rule number of the entry to replace.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.Protocol">
- <summary>
- Gets and sets the Protocol property.
- IP protocol the rule applies to.
-
- Valid Values: tcp | udp | icmp or an IP protocol number.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.RuleAction">
- <summary>
- Gets and sets the RuleAction property.
- Whether to allow or deny traffic that matches the rule.
-
- Valid Values: allow | deny
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.Egress">
- <summary>
- Gets and sets the Egress property.
- Whether this rule applies to egress traffic from the No
- subnet (true) or ingress traffic (false).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.CidrBlock">
- <summary>
- Gets and sets the CidrBlock property.
- The CIDR range to allow or deny, in CIDR notation
- (e.g., 172.16.0.0/24).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.Icmp">
- <summary>
- Gets and sets the Icmp property.
- For the ICMP protocol, this is the ICMP type and code.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclEntryRequest.PortRange">
- <summary>
- Gets and sets the PortRange property.
- For the TCP or UDP protocols, the range of ports the rule applies to.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Placement">
- <summary>
- Specifies the placement constraints.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Placement.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">Availability Zones for launching the instances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Placement.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Placement.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The name of a PlacementGroup.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Placement.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Placement.IsSetTenancy">
- <summary>
- Checks if Tenancy property is set
- </summary>
- <returns>true if Tenancy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Placement.WithTenancy(System.String)">
- <summary>
- Sets the Tenancy property
-
- Valid Values: default | dedicated
- </summary>
- <param name="tenancy">The tenancy of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Placement.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- Availability Zones for launching the instances.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Placement.GroupName">
- <summary>
- Gets and sets the GroupName property.
- The name of a PlacementGroup.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Placement.Tenancy">
- <summary>
- Gets and sets the Tenancy property.
- The tenancy of the instance.
-
- Valid Values: default | dedicated
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceAttribute">
- <summary>
- A list of instance attributes.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The instance type (e.g., m1.small, c1.medium,
- m2.2xlarge, and so
- on).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">The kernel ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetKernelId">
- <summary>
- Checks if KernelId property is set
- </summary>
- <returns>true if KernelId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">The RAM disk ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetRamdiskId">
- <summary>
- Checks if RamdiskId property is set
- </summary>
- <returns>true if RamdiskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithUserData(System.String)">
- <summary>
- Sets the UserData property
- </summary>
- <param name="userData">MIME, Base64-encoded user data.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetUserData">
- <summary>
- Checks if UserData property is set
- </summary>
- <returns>true if UserData property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithDisableApiTermination(System.Boolean)">
- <summary>
- Sets the DisableApiTermination property
- </summary>
- <param name="disableApiTermination">Specifies whether the instance can be
- terminated. You must
- modify this attribute before you can
- terminate any "locked" instances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetDisableApiTermination">
- <summary>
- Checks if DisableApiTermination property is set
- </summary>
- <returns>true if DisableApiTermination property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithInstanceInitiatedShutdownBehavior(System.String)">
- <summary>
- Sets the InstanceInitiatedShutdownBehavior property
- </summary>
- <param name="instanceInitiatedShutdownBehavior">Specifies whether the instance's Amazon EBS
- volumes are deleted when the instance is shut down.
- Type:
- NullableAttributeBooleanValueType</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetInstanceInitiatedShutdownBehavior">
- <summary>
- Checks if InstanceInitiatedShutdownBehavior property is set
- </summary>
- <returns>true if InstanceInitiatedShutdownBehavior property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithRootDeviceName(System.String)">
- <summary>
- Sets the RootDeviceName property
- </summary>
- <param name="rootDeviceName">The root device name (e.g., /dev/sda1).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetRootDeviceName">
- <summary>
- Checks if RootDeviceName property is set
- </summary>
- <returns>true if RootDeviceName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.WithBlockDeviceMapping(Amazon.EC2.Model.InstanceBlockDeviceMapping[])">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="list">Block device mapping set.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceAttribute.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- The instance type (e.g., m1.small, c1.medium,
- m2.2xlarge, and so
- on).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.KernelId">
- <summary>
- Gets and sets the KernelId property.
- The kernel ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.RamdiskId">
- <summary>
- Gets and sets the RamdiskId property.
- The RAM disk ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.UserData">
- <summary>
- Gets and sets the UserData property.
- MIME, Base64-encoded user data.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.DisableApiTermination">
- <summary>
- Gets and sets the DisableApiTermination property.
- Specifies whether the instance can be
- terminated. You must
- modify this attribute before you can
- terminate any "locked" instances.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.InstanceInitiatedShutdownBehavior">
- <summary>
- Gets and sets the InstanceInitiatedShutdownBehavior property.
- Specifies whether the instance's Amazon EBS
- volumes are deleted when the instance is shut down.
- Type:
- NullableAttributeBooleanValueType
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.RootDeviceName">
- <summary>
- Gets and sets the RootDeviceName property.
- The root device name (e.g., /dev/sda1).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceAttribute.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- Block device mapping set.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType">
- <summary>
- Specifies additional launch instance information.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithArchitecture(System.String)">
- <summary>
- Sets the Architecture property
- </summary>
- <param name="architecture">Architecture of the instance.
-
- Valid Values: i386 | x86_64</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetArchitecture">
- <summary>
- Checks if Architecture property is set
- </summary>
- <returns>true if Architecture property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithSecurityGroup(System.String[])">
- <summary>
- Sets the SecurityGroup property
- </summary>
- <param name="list">One or more security group names.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetSecurityGroup">
- <summary>
- Checks if SecurityGroup property is set
- </summary>
- <returns>true if SecurityGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithUserData(System.String)">
- <summary>
- Sets the UserData property
- </summary>
- <param name="userData">User data to be made available to the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetUserData">
- <summary>
- Checks if UserData property is set
- </summary>
- <returns>true if UserData property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">Specifies the instance type.
-
- Valid Values:
- m1.small | m1.large | m1.xlarge | c1.medium |
- c1.xlarge |
- m2.2xlarge | m2.4xlarge
-
- Default: m1.small</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithPlacement(Amazon.EC2.Model.Placement)">
- <summary>
- Sets the Placement property
- </summary>
- <param name="placement">Specifies the placement constraints.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetPlacement">
- <summary>
- Checks if Placement property is set
- </summary>
- <returns>true if Placement property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithMonitoring(Amazon.EC2.Model.MonitoringSpecification)">
- <summary>
- Sets the Monitoring property
- </summary>
- <param name="monitoring">Enables monitoring for the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetMonitoring">
- <summary>
- Checks if Monitoring property is set
- </summary>
- <returns>true if Monitoring property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">If you're using Amazon Virtual Private Cloud, this specifies the ID of the subnet you want to launch the instance into.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithInstanceInitiatedShutdownBehavior(System.String)">
- <summary>
- Sets the InstanceInitiatedShutdownBehavior property
- </summary>
- <param name="instanceInitiatedShutdownBehavior">Determines whether the instance stops or terminates on instance-initiated shutdown.
-
- Valid Values: stop | terminate</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetInstanceInitiatedShutdownBehavior">
- <summary>
- Checks if InstanceInitiatedShutdownBehavior property is set
- </summary>
- <returns>true if InstanceInitiatedShutdownBehavior property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.WithPrivateIpAddress(System.String)">
- <summary>
- Sets the PrivateIpAddress property
- </summary>
- <param name="privateIpAddress">If you're using Amazon Virtual Private Cloud, you can optionally use this parameter to assign the instance a specific available IP address from the subnet (e.g., 10.0.0.25).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.IsSetPrivateIpAddress">
- <summary>
- Checks if PrivateIpAddress property is set
- </summary>
- <returns>true if PrivateIpAddress property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.Architecture">
- <summary>
- Gets and sets the Architecture property.
- Architecture of the instance.
-
- Valid Values: i386 | x86_64
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.SecurityGroup">
- <summary>
- Gets and sets the SecurityGroup property.
- One or more security group names.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.UserData">
- <summary>
- Gets and sets the UserData property.
- User data to be made available to the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- Specifies the instance type.
-
- Valid Values:
- m1.small | m1.large | m1.xlarge | c1.medium |
- c1.xlarge |
- m2.2xlarge | m2.4xlarge
-
- Default: m1.small
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.Placement">
- <summary>
- Gets and sets the Placement property.
- Specifies the placement constraints.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.Monitoring">
- <summary>
- Gets and sets the Monitoring property.
- Enables monitoring for the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- If you're using Amazon Virtual Private Cloud, this specifies the ID of the subnet you want to launch the instance into.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.InstanceInitiatedShutdownBehavior">
- <summary>
- Gets and sets the InstanceInitiatedShutdownBehavior property.
- Determines whether the instance stops or terminates on instance-initiated shutdown.
-
- Valid Values: stop | terminate
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportInstanceLaunchSpecificationType.PrivateIpAddress">
- <summary>
- Gets and sets the PrivateIpAddress property.
- If you're using Amazon Virtual Private Cloud, you can optionally use this parameter to assign the instance a specific available IP address from the subnet (e.g., 10.0.0.25).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotPriceHistoryResult">
- <summary>
- The Result containing the Spot Price history data.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResult.IsSetSpotPriceHistory">
- <summary>
- Checks if SpotPriceHistory property is set
- </summary>
- <returns>true if SpotPriceHistory property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResult.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryResult.SpotPriceHistory">
- <summary>
- Gets and sets the SpotPriceHistory property.
- List of data points specifying the Spot Price history.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryResult.NextToken">
- <summary>
- Gets and sets the NextToken property.
- The string marking the next set of results returned. Displays empty
- if there are no more results to be returned.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSnapshotsResponse">
- <summary>
- Describe Snapshots Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsResponse.IsSetDescribeSnapshotsResult">
- <summary>
- Checks if DescribeSnapshotsResult property is set
- </summary>
- <returns>true if DescribeSnapshotsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotsResponse.DescribeSnapshotsResult">
- <summary>
- Gets and sets the DescribeSnapshotsResult property.
- Describe Snapshots Result
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeRouteTablesRequest">
- <summary>
- Gives you information about your route tables.You can filter the results to return information only about
- tables that match criteria you specify. For example, you could get information only about a table associated
- with a particular subnet.You can specify multiple values for the filter. The table must match at least one
- of the specified values for it to be included in the results.
-
- You can specify multiple filters (e.g., the table has a particular route, and is associated with a particular
- subnet). The result includes information for a particular table only if it matches all your filters. If there's
- no match, no special message is returned; the response is simply empty.
-
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesRequest.WithRouteTableId(System.String[])">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="list">IDs of the route tables.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesRequest.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRouteTablesRequest.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- IDs of the route tables.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRouteTablesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeRegionsResponse">
- <summary>
- Describe Regions Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsResponse.IsSetDescribeRegionsResult">
- <summary>
- Checks if DescribeRegionsResult property is set
- </summary>
- <returns>true if DescribeRegionsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRegionsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRegionsResponse.DescribeRegionsResult">
- <summary>
- Gets and sets the DescribeRegionsResult property.
- Describe Regions Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeRegionsRequest">
- <summary>
- Describes regions that are currently available to
- the account.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsRequest.WithRegionName(System.String[])">
- <summary>
- Sets the RegionName property
- </summary>
- <param name="list">Name of a region.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsRequest.IsSetRegionName">
- <summary>
- Checks if RegionName property is set
- </summary>
- <returns>true if RegionName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated
- with the specified Region.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRegionsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRegionsRequest.RegionName">
- <summary>
- Gets and sets the RegionName property.
- Name of a region.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRegionsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated
- with the specified Region.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInternetGatewaysResponse">
- <summary>
- The Response for the
- DescribeInternetGateways operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysResponse.IsSetDescribeInternetGatewaysResult">
- <summary>
- Checks if DescribeInternetGatewaysResult property is set
- </summary>
- <returns>true if DescribeInternetGatewaysResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInternetGatewaysResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInternetGatewaysResponse.DescribeInternetGatewaysResult">
- <summary>
- Gets and sets the DescribeInternetGatewaysResult property.
- DescribeInternetGateways Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeImagesRequest">
- <summary>
- Returns information about AMIs, AKIs, and ARIs.
- This includes image type, product
- codes, architecture, and kernel
- and RAM disk IDs. Images available to
- you include public images,
- private images that you own, and private images owned by other
- users for which you have explicit launch permissions.
-
- Launch
- permissions fall into three categories:
-
- 1. public:
- The owner of the AMI granted launch permissions for the AMI to the
- all group. All users have launch permissions for these AMIs.
-
- explicit:
- The owner of the AMI granted launch permissions to a specific user.
-
- 3. implicit:
- A user has implicit launch permissions for all AMIs he or she
- owns.
-
- The list of AMIs returned can be modified by specifying AMI IDs,
- AMI owners, or users with launch permissions. If no options are
- specified, Amazon EC2 returns all AMIs for
- which the user has launch permissions.
-
- If you specify one or more AMI IDs, only AMIs that have the
- specified IDs are returned. If you specify an invalid AMI
- ID, a fault is returned. If you specify an AMI ID for which
- you do not have access, it will not be included in the returned
- results.
-
- If you specify one or more AMI owners, only AMIs from the
- specified owners and for which you have access are returned. The
- results can include the account IDs of the
- specified owners, amazon for AMIs owned by Amazon or self for AMIs that you
- own.
-
- If you specify a list of executable users, only users that have
- launch permissions for the AMIs are returned. You can specify account IDs
- (if you own the AMI(s)), self for AMIs for which you own or have
- explicit permissions, or all for public AMIs.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.WithImageId(System.String[])">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="list">AMI IDs to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.WithOwner(System.String[])">
- <summary>
- Sets the Owner property
- </summary>
- <param name="list">Returns AMIs owned by the specified owner.
- Multiple owners can be specified.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.IsSetOwner">
- <summary>
- Checks if Owner property is set
- </summary>
- <returns>true if Owner property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.WithExecutableBy(System.String[])">
- <summary>
- Sets the ExecutableBy property
- </summary>
- <param name="list">Returns AMIs for which the specified user has
- explicit launch permissions.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.IsSetExecutableBy">
- <summary>
- Checks if ExecutableBy property is set
- </summary>
- <returns>true if ExecutableBy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated
- with the specified Images.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImagesRequest.ImageId">
- <summary>
- Gets and sets the ImageId property.
- AMI IDs to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImagesRequest.Owner">
- <summary>
- Gets and sets the Owner property.
- Returns AMIs owned by the specified owner.
- Multiple owners can be specified.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImagesRequest.ExecutableBy">
- <summary>
- Gets and sets the ExecutableBy property.
- Returns AMIs for which the specified user has
- explicit launch permissions.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImagesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated
- with the specified Images.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeConversionTasksResult">
- <summary>
- DescribeConversionTasks Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksResult.IsSetConversionTasks">
- <summary>
- Checks if ConversionTasks property is set
- </summary>
- <returns>true if ConversionTasks property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeConversionTasksResult.ConversionTasks">
- <summary>
- Gets and sets the ConversionTasks property.
- A list of conversion tasks.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVpnGatewayResponse">
- <summary>
- Delete Vpn Gateway Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVpnGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSnapshotRequest">
- <summary>
- Deletes a snapshot of an Amazon EBS volume that
- you own.
-
- For more information, go to the Amazon Elastic Compute Cloud
- Developer Guide
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSnapshotRequest.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The ID of the Amazon EBS snapshot to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSnapshotRequest.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSnapshotRequest.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the Amazon EBS snapshot to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteNetworkAclRequest">
- <summary>
- Deletes a network ACL from a VPC. The ACL must not have any subnets associated with it.You can't
- delete the default network ACL. For more information about network ACLs, go to Network ACLs in the
- Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclRequest.WithNetworkAclId(System.String)">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="networkAclId">The ID of the network ACL to be deleted.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclRequest.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteNetworkAclRequest.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- The ID of the network ACL to be deleted.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CustomerGateway">
- <summary>
- Customer Gateway
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.WithCustomerGatewayId(System.String)">
- <summary>
- Sets the CustomerGatewayId property
- </summary>
- <param name="customerGatewayId">The ID of the customer gateway</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.IsSetCustomerGatewayId">
- <summary>
- Checks if CustomerGatewayId property is set
- </summary>
- <returns>true if CustomerGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.WithCustomerGatewayState(System.String)">
- <summary>
- Sets the CustomerGatewayState property
- </summary>
- <param name="customerGatewayState">The current state of the customer gateway
- (pending, available, deleting, deleted)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.IsSetCustomerGatewayState">
- <summary>
- Checks if CustomerGatewayState property is set
- </summary>
- <returns>true if CustomerGatewayState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The type of VPN connection the customer gateway
- supports (ipsec.1).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.WithIpAddress(System.String)">
- <summary>
- Sets the IpAddress property
- </summary>
- <param name="ipAddress">The Internet-routable IP address of the
- customer gateway's outside
- interface</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.IsSetIpAddress">
- <summary>
- Checks if IpAddress property is set
- </summary>
- <returns>true if IpAddress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.WithBgpAsn(System.String)">
- <summary>
- Sets the BgpAsn property
- </summary>
- <param name="bgpAsn">The customer gateway's Border Gateway Protocol
- (BGP) Autonomous System Number (ASN).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.IsSetBgpAsn">
- <summary>
- Checks if BgpAsn property is set
- </summary>
- <returns>true if BgpAsn property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the CustomerGateway.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CustomerGateway.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CustomerGateway.CustomerGatewayId">
- <summary>
- Gets and sets the CustomerGatewayId property.
- The ID of the customer gateway
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CustomerGateway.CustomerGatewayState">
- <summary>
- Gets and sets the CustomerGatewayState property.
- The current state of the customer gateway
- (pending, available, deleting, deleted)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CustomerGateway.Type">
- <summary>
- Gets and sets the Type property.
- The type of VPN connection the customer gateway
- supports (ipsec.1).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CustomerGateway.IpAddress">
- <summary>
- Gets and sets the IpAddress property.
- The Internet-routable IP address of the
- customer gateway's outside
- interface
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CustomerGateway.BgpAsn">
- <summary>
- Gets and sets the BgpAsn property.
- The customer gateway's Border Gateway Protocol
- (BGP) Autonomous System Number (ASN).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CustomerGateway.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the CustomerGateway.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpnGatewayResult">
- <summary>
- Create Vpn Gateway Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayResult.IsSetVpnGateway">
- <summary>
- Checks if VpnGateway property is set
- </summary>
- <returns>true if VpnGateway property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnGatewayResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnGatewayResult.VpnGateway">
- <summary>
- Gets and sets the VpnGateway property.
- Vpn gateway
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVolumeRequest">
- <summary>
- Creates a new Amazon EBS volume to which any
- Amazon EC2 instance can attach
- within the same Availability Zone.
- For more information about Amazon
- EBS, go to the Amazon Elastic
- Compute Cloud Developer Guide.
-
- You must specify an Availability
- Zone when creating a volume. The
- volume and the instance to which it
- attaches must be in the same Availability Zone.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeRequest.WithSize(System.String)">
- <summary>
- Sets the Size property
- </summary>
- <param name="size">The size of the volume, in GiBs. Required if
- you are not creating
- a volume from a snapshot.
-
- Valid Values: 1-1024</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeRequest.IsSetSize">
- <summary>
- Checks if Size property is set
- </summary>
- <returns>true if Size property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeRequest.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The snapshot from which to create the new
- volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeRequest.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone in which to create the
- new volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeRequest.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumeRequest.Size">
- <summary>
- Gets and sets the Size property.
- The size of the volume, in GiBs. Required if
- you are not creating
- a volume from a snapshot.
-
- Valid Values: 1-1024
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumeRequest.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The snapshot from which to create the new
- volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumeRequest.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone in which to create the
- new volume.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSnapshotRequest">
- <summary>
- Creates a snapshot of an Amazon EBS volume and
- stores it in Amazon S3. You can
- use snapshots for backups, to make
- identical copies of instance
- devices, and to save data before
- shutting down an instance. For more information about
- Amazon EBS, go to the Amazon Elastic Compute Cloud Developer Guide.
-
- When taking a snapshot of a file system, we recommend unmounting it
- first. This ensures the file system metadata is in a consistent state,
- that the 'mounted indicator' is cleared, and that all applications
- using that file system are stopped and in a consistent state. Some file
- systems, such as xfs, can freeze and unfreeze activity so a
- snapshot can be made without unmounting.
-
- For Linux/UNIX, enter the
- following command from the command line.
-
- umount -d /dev/sdh
-
- For Windows, open Disk Management, right-click the volume to unmount,
- and select Change Drive Letter and Path. Then, select the mount
- point to remove
- and click Remove.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotRequest.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the Amazon EBS volume of which to
- take a snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotRequest.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Description of the Amazon EBS snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotRequest.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSnapshotRequest.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the Amazon EBS volume of which to
- take a snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSnapshotRequest.Description">
- <summary>
- Gets and sets the Description property.
- Description of the Amazon EBS snapshot.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateNetworkAclResponse">
- <summary>
- The Response for the
- CreateNetworkAcl operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclResponse.IsSetCreateNetworkAclResult">
- <summary>
- Checks if CreateNetworkAclResult property is set
- </summary>
- <returns>true if CreateNetworkAclResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclResponse.CreateNetworkAclResult">
- <summary>
- Gets and sets the CreateNetworkAclResult property.
- CreateNetworkAcl Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateNetworkAclEntryResponse">
- <summary>
- The Response for the
- CreateNetworkAclEntry operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachVolumeResponse">
- <summary>
- Attach Volume Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeResponse.IsSetAttachVolumeResult">
- <summary>
- Checks if AttachVolumeResult property is set
- </summary>
- <returns>true if AttachVolumeResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVolumeResponse.AttachVolumeResult">
- <summary>
- Gets and sets the AttachVolumeResult property.
- Attach Volume Result
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVolumeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.GetMetricStatisticsRequestMarshaller">
- <summary>
- Get Metric Statistics Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.ListStreamingDistributionsRequest">
- <summary>
- The ListStreamingDistributionsRequest contains the parameters used for the ListStreamingDistributions operation.
- All parameters to this request object are optional.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.ListStreamingDistributionsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property for this request.
- All keys returned will be lexiographically after the marker.
- </summary>
- <param name="marker">the value that Marker is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.ListStreamingDistributionsRequest.WithMaxItems(System.String)">
- <summary>
- Sets the MaxItems property for this request.
- Limits the result set of keys to MaxItems.
- </summary>
- <param name="maxItems">the value that MaxItems is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListStreamingDistributionsRequest.Marker">
- <summary>
- Gets and sets the Marker property.
- All keys returned will be lexiographically after the marker.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListStreamingDistributionsRequest.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- Limits the result set of keys to MaxItems.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ListStacksResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListStacks operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.TemplateParameter">
- <summary>
- <para> The TemplateParameter data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.TemplateParameter.WithParameterKey(System.String)">
- <summary>
- Sets the ParameterKey property
- </summary>
- <param name="parameterKey">The value to set for the ParameterKey property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.TemplateParameter.WithDefaultValue(System.String)">
- <summary>
- Sets the DefaultValue property
- </summary>
- <param name="defaultValue">The value to set for the DefaultValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.TemplateParameter.WithNoEcho(System.Boolean)">
- <summary>
- Sets the NoEcho property
- </summary>
- <param name="noEcho">The value to set for the NoEcho property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.TemplateParameter.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.TemplateParameter.ParameterKey">
- <summary>
- The name associated with the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.TemplateParameter.DefaultValue">
- <summary>
- The default value associated with the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.TemplateParameter.NoEcho">
- <summary>
- Flag indicating whether the parameter should be displayed as plain text in logs and UIs.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.TemplateParameter.Description">
- <summary>
- User defined description associated with the parameter.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.GetTemplateResponse">
- <summary>
- Returns information about the GetTemplateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.GetTemplateResponse.GetTemplateResult">
- <summary>
- Gets and sets the GetTemplateResult property.
- The output for GetTemplate action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.AmazonCloudFormationClient">
- <summary>
- Implemenation for accessing AmazonCloudFormation.
-
- AWS CloudFormation <para>This is the AWS CloudFormation API Reference. The major sections of this guide are described in the following
- table.</para>
- <ul>
- <li> Actions: Alphabetical list of CloudFormation actions</li>
- <li> Data Types: Alphabetical list of CloudFormation data types</li>
- <li> Common Parameters: Parameters that all Query actions can use</li>
- <li> Common Errors: Client and server errors that all actions can return</li>
-
- </ul>
- <para>This guide is for programmers who need detailed information about the CloudFormation APIs. You use AWS CloudFormation to create and
- manage AWS infrastructure deployments predictably and repeatedly. CloudFormation helps you leverage AWS products such as Amazon EC2, EBS,
- Amazon SNS, ELB, and Auto Scaling to build highly-reliable, highly scalable, cost effective applications without worrying about creating and
- configuring the underlying the AWS infrastructure.</para> <para>Through the use of a template file you write, and a few AWS CloudFormation
- commands or API actions, AWS CloudFormation enables you to manage a collection of resources together as a single unit called a stack. AWS
- CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for
- you.</para> <para>For more information about this product, go to the CloudFormation Product Page.</para> <para>Amazon CloudFormation makes
- use of other AWS products. If you need additional technical information about a specific AWS product, you can find the product's technical
- documentation at http://aws.amazon.com/documentation/.</para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.AmazonCloudFormation">
- <summary>
- Interface for accessing AmazonCloudFormation.
-
- AWS CloudFormation <para>This is the AWS CloudFormation API Reference. The major sections of this guide are described in the following
- table.</para>
- <ul>
- <li> Actions: Alphabetical list of CloudFormation actions</li>
- <li> Data Types: Alphabetical list of CloudFormation data types</li>
- <li> Common Parameters: Parameters that all Query actions can use</li>
- <li> Common Errors: Client and server errors that all actions can return</li>
-
- </ul>
- <para>This guide is for programmers who need detailed information about the CloudFormation APIs. You use AWS CloudFormation to create and
- manage AWS infrastructure deployments predictably and repeatedly. CloudFormation helps you leverage AWS products such as Amazon EC2, EBS,
- Amazon SNS, ELB, and Auto Scaling to build highly-reliable, highly scalable, cost effective applications without worrying about creating and
- configuring the underlying the AWS infrastructure.</para> <para>Through the use of a template file you write, and a few AWS CloudFormation
- commands or API actions, AWS CloudFormation enables you to manage a collection of resources together as a single unit called a stack. AWS
- CloudFormation creates and deletes all member resources of the stack together and manages all dependencies between the resources for
- you.</para> <para>For more information about this product, go to the CloudFormation Product Page.</para> <para>Amazon CloudFormation makes
- use of other AWS products. If you need additional technical information about a specific AWS product, you can find the product's technical
- documentation at http://aws.amazon.com/documentation/.</para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.ListStacks(Amazon.CloudFormation.Model.ListStacksRequest)">
- <summary>
- <para> Returns the summary information for stacks whose status matches the specified StackStatusFilter. Summary information for stacks that
- have been deleted is kept for 90 days after the stack is deleted. If no StackStatusFilter is specified, summary information for all stacks
- is returned (including existing stacks and stacks that have been deleted). </para>
- </summary>
-
- <param name="listStacksRequest">Container for the necessary parameters to execute the ListStacks service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the ListStacks service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.CreateStack(Amazon.CloudFormation.Model.CreateStackRequest)">
- <summary>
- <para> Creates a stack as specified in the template. After the call completes successfully, the stack creation starts. You can check the
- status of the stack via the DescribeStacks API. </para> <para><b>NOTE:</b> Currently, the limit for stacks is 20 stacks per account per
- region. </para>
- </summary>
-
- <param name="createStackRequest">Container for the necessary parameters to execute the CreateStack service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the CreateStack service method, as returned by AmazonCloudFormation.</returns>
-
- <exception cref="T:Amazon.CloudFormation.Model.AlreadyExistsException"/>
- <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.ValidateTemplate(Amazon.CloudFormation.Model.ValidateTemplateRequest)">
- <summary>
- <para> Validates a specified template. </para>
- </summary>
-
- <param name="validateTemplateRequest">Container for the necessary parameters to execute the ValidateTemplate service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the ValidateTemplate service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStacks(Amazon.CloudFormation.Model.DescribeStacksRequest)">
- <summary>
- <para> Returns the description for the specified stack; if no stack name was specified, then it returns the description for all the stacks
- created. </para>
- </summary>
-
- <param name="describeStacksRequest">Container for the necessary parameters to execute the DescribeStacks service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStacks service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStackEvents(Amazon.CloudFormation.Model.DescribeStackEventsRequest)">
- <summary>
- <para> Returns all the stack related events for the AWS account. If <c>StackName</c> is specified, returns events related to all the stacks
- with the given name. If <c>StackName</c> is not specified, returns all the events for the account. For more information about a stack's
- event history, go to the AWS CloudFormation User Guide. </para> <para><b>NOTE:</b>Events are returned, even if the stack never existed or
- has been successfully deleted.</para>
- </summary>
-
- <param name="describeStackEventsRequest">Container for the necessary parameters to execute the DescribeStackEvents service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStackEvents service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.GetTemplate(Amazon.CloudFormation.Model.GetTemplateRequest)">
- <summary>
- <para>Returns the template body for a specified stack name. You can get the template for running or deleted stacks.</para> <para>For deleted
- stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted. </para> <para><b>NOTE:</b> If the template does
- not exist, a ValidationError is returned. </para>
- </summary>
-
- <param name="getTemplateRequest">Container for the necessary parameters to execute the GetTemplate service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the GetTemplate service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStackResource(Amazon.CloudFormation.Model.DescribeStackResourceRequest)">
- <summary>
- <para> Returns the description for the specified resource in the specified stack. </para> <para>For deleted stacks, DescribeStackResource
- returns resource information for up to 90 days after the stack has been deleted. </para> <para> You must specify <c>StackName</c> and
- <c>LogicalResourceId</c> .
- </para>
- </summary>
-
- <param name="describeStackResourceRequest">Container for the necessary parameters to execute the DescribeStackResource service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStackResource service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.DeleteStack(Amazon.CloudFormation.Model.DeleteStackRequest)">
- <summary>
- <para> Deletes a specified stack. Once the call completes successfully, stack deletion starts. Deleted stacks do not show up in the
- DescribeStacks API if the deletion has been completed successfully. </para>
- </summary>
-
- <param name="deleteStackRequest">Container for the necessary parameters to execute the DeleteStack service method on
- AmazonCloudFormation.</param>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.ListStackResources(Amazon.CloudFormation.Model.ListStackResourcesRequest)">
- <summary>
- <para> Returns descriptions for all resources of the specified stack. </para> <para>For deleted stacks, ListStackResources returns resource
- information for up to 90 days after the stack has been deleted. </para>
- </summary>
-
- <param name="listStackResourcesRequest">Container for the necessary parameters to execute the ListStackResources service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the ListStackResources service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormation.DescribeStackResources(Amazon.CloudFormation.Model.DescribeStackResourcesRequest)">
- <summary>
- <para> Returns AWS resource descriptions for running and deleted stacks. If <c>StackName</c> is specified, all the associated resources that
- are part of the stack are returned. If <c>PhysicalResourceId</c> is specified, all the associated resources of the stack the resource
- belongs to are returned. </para> <para>For deleted stacks, DescribeStackResources returns resource information for up to 90 days after the
- stack has been deleted. </para> <para> You must specify <c>StackName</c> or <c>PhysicalResourceId.</c> In addition, you can specify
- <c>LogicalResourceId</c> to filter the returned result. For more information about resources, the <c>LogicalResourceId</c> and
- <c>PhysicalResourceId</c> , go to the AWS CloudFormation User Guide. </para> <para><b>NOTE:</b> A ValidationError is returned if you specify
- both StackName and PhysicalResourceId in the same request. </para>
- </summary>
-
- <param name="describeStackResourcesRequest">Container for the necessary parameters to execute the DescribeStackResources service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStackResources service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonCloudFormationClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.#ctor(System.String,System.String,Amazon.CloudFormation.AmazonCloudFormationConfig)">
- <summary>
- Constructs AmazonCloudFormationClient with AWS Access Key ID, AWS Secret Key and an
- AmazonCloudFormationClient Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonCloudFormationClient Configuration Object</param>
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStacks(Amazon.CloudFormation.Model.ListStacksRequest)">
- <summary>
- <para> Returns the summary information for stacks whose status matches the specified StackStatusFilter. Summary information for stacks that
- have been deleted is kept for 90 days after the stack is deleted. If no StackStatusFilter is specified, summary information for all stacks
- is returned (including existing stacks and stacks that have been deleted). </para>
- </summary>
-
- <param name="listStacksRequest">Container for the necessary parameters to execute the ListStacks service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the ListStacks service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.CreateStack(Amazon.CloudFormation.Model.CreateStackRequest)">
- <summary>
- <para> Creates a stack as specified in the template. After the call completes successfully, the stack creation starts. You can check the
- status of the stack via the DescribeStacks API. </para> <para><b>NOTE:</b> Currently, the limit for stacks is 20 stacks per account per
- region. </para>
- </summary>
-
- <param name="createStackRequest">Container for the necessary parameters to execute the CreateStack service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the CreateStack service method, as returned by AmazonCloudFormation.</returns>
-
- <exception cref="T:Amazon.CloudFormation.Model.AlreadyExistsException"/>
- <exception cref="T:Amazon.CloudFormation.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ValidateTemplate(Amazon.CloudFormation.Model.ValidateTemplateRequest)">
- <summary>
- <para> Validates a specified template. </para>
- </summary>
-
- <param name="validateTemplateRequest">Container for the necessary parameters to execute the ValidateTemplate service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the ValidateTemplate service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStacks(Amazon.CloudFormation.Model.DescribeStacksRequest)">
- <summary>
- <para> Returns the description for the specified stack; if no stack name was specified, then it returns the description for all the stacks
- created. </para>
- </summary>
-
- <param name="describeStacksRequest">Container for the necessary parameters to execute the DescribeStacks service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStacks service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackEvents(Amazon.CloudFormation.Model.DescribeStackEventsRequest)">
- <summary>
- <para> Returns all the stack related events for the AWS account. If <c>StackName</c> is specified, returns events related to all the stacks
- with the given name. If <c>StackName</c> is not specified, returns all the events for the account. For more information about a stack's
- event history, go to the AWS CloudFormation User Guide. </para> <para><b>NOTE:</b>Events are returned, even if the stack never existed or
- has been successfully deleted.</para>
- </summary>
-
- <param name="describeStackEventsRequest">Container for the necessary parameters to execute the DescribeStackEvents service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStackEvents service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.GetTemplate(Amazon.CloudFormation.Model.GetTemplateRequest)">
- <summary>
- <para>Returns the template body for a specified stack name. You can get the template for running or deleted stacks.</para> <para>For deleted
- stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted. </para> <para><b>NOTE:</b> If the template does
- not exist, a ValidationError is returned. </para>
- </summary>
-
- <param name="getTemplateRequest">Container for the necessary parameters to execute the GetTemplate service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the GetTemplate service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackResource(Amazon.CloudFormation.Model.DescribeStackResourceRequest)">
- <summary>
- <para> Returns the description for the specified resource in the specified stack. </para> <para>For deleted stacks, DescribeStackResource
- returns resource information for up to 90 days after the stack has been deleted. </para> <para> You must specify <c>StackName</c> and
- <c>LogicalResourceId</c> .
- </para>
- </summary>
-
- <param name="describeStackResourceRequest">Container for the necessary parameters to execute the DescribeStackResource service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStackResource service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DeleteStack(Amazon.CloudFormation.Model.DeleteStackRequest)">
- <summary>
- <para> Deletes a specified stack. Once the call completes successfully, stack deletion starts. Deleted stacks do not show up in the
- DescribeStacks API if the deletion has been completed successfully. </para>
- </summary>
-
- <param name="deleteStackRequest">Container for the necessary parameters to execute the DeleteStack service method on
- AmazonCloudFormation.</param>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.ListStackResources(Amazon.CloudFormation.Model.ListStackResourcesRequest)">
- <summary>
- <para> Returns descriptions for all resources of the specified stack. </para> <para>For deleted stacks, ListStackResources returns resource
- information for up to 90 days after the stack has been deleted. </para>
- </summary>
-
- <param name="listStackResourcesRequest">Container for the necessary parameters to execute the ListStackResources service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the ListStackResources service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="M:Amazon.CloudFormation.AmazonCloudFormationClient.DescribeStackResources(Amazon.CloudFormation.Model.DescribeStackResourcesRequest)">
- <summary>
- <para> Returns AWS resource descriptions for running and deleted stacks. If <c>StackName</c> is specified, all the associated resources that
- are part of the stack are returned. If <c>PhysicalResourceId</c> is specified, all the associated resources of the stack the resource
- belongs to are returned. </para> <para>For deleted stacks, DescribeStackResources returns resource information for up to 90 days after the
- stack has been deleted. </para> <para> You must specify <c>StackName</c> or <c>PhysicalResourceId.</c> In addition, you can specify
- <c>LogicalResourceId</c> to filter the returned result. For more information about resources, the <c>LogicalResourceId</c> and
- <c>PhysicalResourceId</c> , go to the AWS CloudFormation User Guide. </para> <para><b>NOTE:</b> A ValidationError is returned if you specify
- both StackName and PhysicalResourceId in the same request. </para>
- </summary>
-
- <param name="describeStackResourcesRequest">Container for the necessary parameters to execute the DescribeStackResources service method on
- AmazonCloudFormation.</param>
-
- <returns>The response from the DescribeStackResources service method, as returned by AmazonCloudFormation.</returns>
-
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ScheduledUpdateGroupActionUnmarshaller">
- <summary>
- ScheduledUpdateGroupAction Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DisableMetricsCollectionRequestMarshaller">
- <summary>
- Disable Metrics Collection Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScalingActivitiesResultUnmarshaller">
- <summary>
- DescribeScalingActivitiesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeNotificationConfigurationsRequestMarshaller">
- <summary>
- Describe Notification Configurations Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteLaunchConfigurationRequestMarshaller">
- <summary>
- Delete Launch Configuration Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteAutoScalingGroupRequestMarshaller">
- <summary>
- Delete Auto Scaling Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ProcessType">
- <summary>
- <para> There are two primary Auto Scaling process types-- <c>Launch</c> and <c>Terminate</c> . The <c>Launch</c> process creates a new
- Amazon EC2 instance for an Auto Scaling group, and the <c>Terminate</c> process removes an existing Amazon EC2 instance. </para> <para> The
- remaining Auto Scaling process types relate to specific Auto Scaling features:
- <ul>
- <li>AlarmNotifications</li>
- <li>AZRebalance</li>
- <li>HealthCheck</li>
- <li>ReplaceUnhealthy</li>
- <li>ScheduledActions</li>
-
- </ul>
- </para> <para><b>IMPORTANT:</b> If you suspend Launch or Terminate, all other process types are affected to varying degrees. The following
- descriptions discuss how each process type is affected by a suspension of Launch or Terminate. </para> <para> The <c>AlarmNotifications</c>
- process type accepts notifications from Amazon CloudWatch alarms that are associated with the Auto Scaling group. If you suspend the
- <c>AlarmNotifications</c> process type, Auto Scaling will not automatically execute scaling policies that would be triggered by alarms.
- </para> <para> Although the <c>AlarmNotifications</c> process type is not directly affected by a suspension of <c>Launch</c> or
- <c>Terminate</c> ,
- alarm notifications are often used to signal that a change in the size of the Auto Scaling group is warranted. If you suspend
- <c>Launch</c> or <c>Terminate</c> , Auto Scaling might not be able to implement the alarm's associated policy. </para> <para> The
- <c>AZRebalance</c> process type seeks to maintain a balanced number of instances across Availability Zones within a Region. If you remove an
- Availability Zone from your Auto Scaling group or an Availability Zone otherwise becomes unhealthy or unavailable, Auto Scaling launches new
- instances in an unaffected Availability Zone before terminating the unhealthy or unavailable instances. When the unhealthy Availability Zone
- returns to a healthy state, Auto Scaling automatically redistributes the application instances evenly across all of the designated
- Availability Zones. </para> <para><b>IMPORTANT:</b> If you call SuspendProcesses on the launch process type, the AZRebalance process will
- neither launch new instances nor terminate existing instances. This is because the AZRebalance process terminates existing instances only
- after launching the replacement instances. If you call SuspendProcesses on the terminate process type, the AZRebalance process can cause
- your Auto Scaling group to grow up to ten percent larger than the maximum size. This is because Auto Scaling allows groups to temporarily
- grow larger than the maximum size during rebalancing activities. If Auto Scaling cannot terminate instances, your Auto Scaling group could
- remain up to ten percent larger than the maximum size until you resume the terminate process type. </para> <para> The <c>HealthCheck</c>
- process type checks the health of the instances. Auto Scaling marks an instance as unhealthy if Amazon EC2 or Elastic Load Balancing informs
- Auto Scaling that the instance is unhealthy. The <c>HealthCheck</c> process can override the health status of an instance that you set with
- SetInstanceHealth. </para> <para> The <c>ReplaceUnhealthy</c> process type terminates instances that are marked as unhealthy and
- subsequently creates new instances to replace them. This process calls both of the primary process types--first <c>Terminate</c> and then
- <c>Launch</c> .
- </para> <para><b>IMPORTANT:</b> The HealthCheck process type works in conjunction with the ReplaceUnhealthly process type to provide
- health check functionality. If you suspend either Launch or Terminate, the ReplaceUnhealthy process type will not function properly. </para>
- <para> The <c>ScheduledActions</c> process type performs scheduled actions that you create with PutScheduledUpdateGroupAction. Scheduled
- actions often involve launching new instances or terminating existing instances. If you suspend either <c>Launch</c> or <c>Terminate</c> ,
- your scheduled actions might not function as expected. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ProcessType.WithProcessName(System.String)">
- <summary>
- Sets the ProcessName property
- </summary>
- <param name="processName">The value to set for the ProcessName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ProcessType.ProcessName">
- <summary>
- The name of a process.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.NotificationConfiguration">
- <summary>
- <para> The NotificationConfiguration data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.NotificationConfiguration.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.NotificationConfiguration.WithTopicARN(System.String)">
- <summary>
- Sets the TopicARN property
- </summary>
- <param name="topicARN">The value to set for the TopicARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.NotificationConfiguration.WithNotificationType(System.String)">
- <summary>
- Sets the NotificationType property
- </summary>
- <param name="notificationType">The value to set for the NotificationType property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.NotificationConfiguration.AutoScalingGroupName">
- <summary>
- Specifies the Auto Scaling group name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.NotificationConfiguration.TopicARN">
- <summary>
- The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.NotificationConfiguration.NotificationType">
- <summary>
- The types of events for an action to start.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.InvalidNextTokenException">
- <summary>
- AmazonAutoScaling exception
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.InvalidNextTokenException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidNextTokenException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ExecutePolicyResponse">
- <summary>
- Returns information about the ExecutePolicy response metadata.
- The ExecutePolicy operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest">
- <summary>
- Container for the parameters to the CreateLaunchConfiguration operation.
- <para> Creates a new launch configuration. Once created, the new launch configuration is available for immediate use. </para>
- <para><b>NOTE:</b> The launch configuration name used must be unique, within the scope of the client's AWS account, and the maximum limit of
- launch configurations must not yet have been met, or else the call will fail. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.CreateLaunchConfiguration(Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">The value to set for the ImageId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">The value to set for the KeyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithSecurityGroups(System.String[])">
- <summary>
- Adds elements to the SecurityGroups collection
- </summary>
- <param name="securityGroups">The values to add to the SecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithSecurityGroups(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the SecurityGroups collection
- </summary>
- <param name="securityGroups">The values to add to the SecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithUserData(System.String)">
- <summary>
- Sets the UserData property
- </summary>
- <param name="userData">The value to set for the UserData property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The value to set for the InstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">The value to set for the KernelId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">The value to set for the RamdiskId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithBlockDeviceMappings(Amazon.AutoScaling.Model.BlockDeviceMapping[])">
- <summary>
- Adds elements to the BlockDeviceMappings collection
- </summary>
- <param name="blockDeviceMappings">The values to add to the BlockDeviceMappings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithBlockDeviceMappings(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.BlockDeviceMapping})">
- <summary>
- Adds elements to the BlockDeviceMappings collection
- </summary>
- <param name="blockDeviceMappings">The values to add to the BlockDeviceMappings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.WithInstanceMonitoring(Amazon.AutoScaling.Model.InstanceMonitoring)">
- <summary>
- Sets the InstanceMonitoring property
- </summary>
- <param name="instanceMonitoring">The value to set for the InstanceMonitoring property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.LaunchConfigurationName">
- <summary>
- The name of the launch configuration to create.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.ImageId">
- <summary>
- Unique ID of the <i>Amazon Machine Image</i> (AMI) which was assigned during registration. For more information about Amazon EC2 images,
- please see <a href="http://aws.amazon.com/ec2/"> Amazon EC2 product documentation</a>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.KeyName">
- <summary>
- The name of the EC2 key pair.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.SecurityGroups">
- <summary>
- The names of the security groups with which to associate EC2 instances. For more information about Amazon EC2 security groups, go to the <a
- href="http://aws.amazon.com/ec2/"> Amazon EC2 product documentation.</a>
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.UserData">
- <summary>
- The user data available to the launched EC2 instances. For more information about Amazon EC2 user data, please see <a
- href="http://aws.amazon.com/ec2/"> Amazon EC2 product documentation</a>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 21847</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.InstanceType">
- <summary>
- The instance type of the EC2 instance. For more information about Amazon EC2 instance types, please see <a
- href="http://aws.amazon.com/ec2/"> Amazon EC2 product documentation</a>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.KernelId">
- <summary>
- The ID of the kernel associated with the EC2 AMI.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.RamdiskId">
- <summary>
- The ID of the RAM disk associated with the EC2 AMI.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.BlockDeviceMappings">
- <summary>
- A list of mappings that specify how block devices are exposed to the instance. Each mapping is made up of a <i>VirtualName</i>, a
- <i>DeviceName</i>, and an <i>ebs</i> data structure that contains information about the associated Elastic Block Storage volume. For more
- information about Amazon EC2 BlockDeviceMappings, please go to <a
- href="http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/index.html?block-device-mapping-concepts.html"> Block Device Mapping</a> in
- the Amazon EC2 product documentation.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateLaunchConfigurationRequest.InstanceMonitoring">
- <summary>
- Enables detailed monitoring.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.AutoScalingInstanceDetails">
- <summary>
- <para> The AutoScalingInstanceDetails data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The value to set for the InstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.WithLifecycleState(System.String)">
- <summary>
- Sets the LifecycleState property
- </summary>
- <param name="lifecycleState">The value to set for the LifecycleState property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.WithHealthStatus(System.String)">
- <summary>
- Sets the HealthStatus property
- </summary>
- <param name="healthStatus">The value to set for the HealthStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.InstanceId">
- <summary>
- The instance's Amazon EC2 instance ID.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group associated with this instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.AvailabilityZone">
- <summary>
- The availability zone in which this instance resides.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.LifecycleState">
- <summary>
- The life cycle state of this instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.HealthStatus">
- <summary>
- The health status of this instance. "Healthy" means that the instance is healthy and should remain in service. "Unhealthy" means that the
- instance is unhealthy. Auto Scaling should terminate and replace it.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingInstanceDetails.LaunchConfigurationName">
- <summary>
- The launch configuration associated with this instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Alarm">
- <summary>
- <para>The Alarm data type.</para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Alarm.WithAlarmName(System.String)">
- <summary>
- Sets the AlarmName property
- </summary>
- <param name="alarmName">The value to set for the AlarmName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.Alarm.WithAlarmARN(System.String)">
- <summary>
- Sets the AlarmARN property
- </summary>
- <param name="alarmARN">The value to set for the AlarmARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Alarm.AlarmName">
- <summary>
- The name of the alarm
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.Alarm.AlarmARN">
- <summary>
- The Amazon Resource Name (ARN) of the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers">
- <summary>
- The available AWS access control policy actions for Amazon Simple
- Notification Service.
- </summary>
- <see cref="P:Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.AddPermission">
- <summary>
- Action for the AddPermission operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.AddPermissionRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.DeleteTopic">
- <summary>
- Action for the AddPermission operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.AddPermissionRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.GetTopicAttributes">
- <summary>
- Action for the GetTopicAttributes operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.ListSubscriptionsByTopic">
- <summary>
- Action for the ListSubscriptionsByTopic operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.Publish">
- <summary>
- Action for the Publish operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.PublishRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.RemovePermission">
- <summary>
- Action for the RemovePermission operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.RemovePermissionRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.SetTopicAttributes">
- <summary>
- Action for the SetTopicAttributes operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.SNSActionIdentifiers.Subscribe">
- <summary>
- Action for the Subscribe operation on Amazon SNS.
- </summary>
- <see cref="T:Amazon.SimpleNotificationService.Model.SubscribeRequest"/>
- </member>
- <member name="M:ThirdParty.BouncyCastle.Utilities.IO.Pem.PemObjectParser.ParseObject(ThirdParty.BouncyCastle.Utilities.IO.Pem.PemObject)">
- <param name="obj">
- A <see cref="T:ThirdParty.BouncyCastle.Utilities.IO.Pem.PemObject"/>
- </param>
- <returns>
- A <see cref="T:System.Object"/>
- </returns>
- <exception cref="T:System.IO.IOException"></exception>
- </member>
- <member name="T:Amazon.SQS.Model.SendMessageResult">
- <summary>
- Information about the message sent to Amazon SQS.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResult.IsSetMessageId">
- <summary>
- Checks if MessageId property is set
- </summary>
- <returns>true if MessageId property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResult.IsSetMD5OfMessageBody">
- <summary>
- Checks if MD5OfMessageBody property is set
- </summary>
- <returns>true if MD5OfMessageBody property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.SendMessageResult.MessageId">
- <summary>
- Gets and sets the MessageId property.
- An element containing the message ID of the message sent to the queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.SendMessageResult.MD5OfMessageBody">
- <summary>
- Gets and sets the MD5OfMessageBody property.
- An MD5 digest of the non-URL-encoded message body string. You can use this to verify that SQS received the message
- correctly. SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to
- http://faqs.org/rfcs/rfc1321.html.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ReceiveMessageResponse">
- <summary>
- Returns a list of messages and metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageResponse.IsSetReceiveMessageResult">
- <summary>
- Checks if ReceiveMessageResult property is set
- </summary>
- <returns>true if ReceiveMessageResult property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ReceiveMessageResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ReceiveMessageResponse.ReceiveMessageResult">
- <summary>
- Gets and sets the ReceiveMessageResult property.
- A list of messages associated with the ReceiveMessageRequest.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ReceiveMessageResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.GetQueueAttributesResult">
- <summary>
- A list of attributes returned by the GetQueueAttributesRequest.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesResult.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.GetQueueAttributesResult.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.GetQueueAttributesResponse">
- <summary>
- Returns the attributes that match the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesResponse.IsSetGetQueueAttributesResult">
- <summary>
- Checks if GetQueueAttributesResult property is set
- </summary>
- <returns>true if GetQueueAttributesResult property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.GetQueueAttributesResponse.GetQueueAttributesResult">
- <summary>
- Gets and sets the GetQueueAttributesResult property.
- A list of attributes returned by the GetQueueAttributesRequest.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.GetQueueAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.AddPermissionRequest">
- <summary>
- Adds the specified permission(s) to a queue for the specified principal(s). This allows for sharing access to the queue.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.WithLabel(System.String)">
- <summary>
- Sets the Label property
- </summary>
- <param name="label">The unique identification of the permission you're setting. Maximum 80 characters; alphanumeric characters, hyphens (-),
- and underscores (_) are allowed.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.IsSetLabel">
- <summary>
- Checks if Label property is set
- </summary>
- <returns>true if Label property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.WithAWSAccountId(System.String[])">
- <summary>
- Sets the AWSAccountId property
- </summary>
- <param name="list">The AWS account number of the principal who will be given permission. The principal must have an AWS account, but does
- not need to be signed up for Amazon SQS.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.IsSetAWSAccountId">
- <summary>
- Checks if AWSAccountId property is set
- </summary>
- <returns>true if AWSAccountId property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.WithActionName(System.String[])">
- <summary>
- Sets the ActionName property
- </summary>
- <param name="list">The action you want to allow for the specified principal. For more information about these actions, see Understanding
- Permissions in the Amazon SQS Developer Guide.
-
- Valid values are: * | SendMessage | ReceiveMessage | DeleteMessage | ChangeMessageVisibility | GetQueueAttributes</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionRequest.IsSetActionName">
- <summary>
- Checks if ActionName property is set
- </summary>
- <returns>true if ActionName property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.AddPermissionRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.AddPermissionRequest.Label">
- <summary>
- Gets and sets the Label property.
- The unique identification of the permission you're setting. Maximum 80 characters; alphanumeric characters, hyphens (-),
- and underscores (_) are allowed.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.AddPermissionRequest.AWSAccountId">
- <summary>
- Gets and sets the AWSAccountId property.
- The AWS account number of the principal who will be given permission. The principal must have an AWS account, but does
- not need to be signed up for Amazon SQS.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.AddPermissionRequest.ActionName">
- <summary>
- Gets and sets the ActionName property.
- The action you want to allow for the specified principal. For more information about these actions, see Understanding
- Permissions in the Amazon SQS Developer Guide.
-
- Valid values are: * | SendMessage | ReceiveMessage | DeleteMessage | ChangeMessageVisibility | GetQueueAttributes
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.UnsubscribeResponse">
- <summary>
- Encapsulates the metadata and result of the Unsubscribe action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.UnsubscribeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.UnsubscribeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.UnsubscribeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.UnsubscribeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.Topic">
- <summary>
- A wrapper type for the topic's Amazon Resource Name (ARN).
- To retrieve a topic's attributes, use GetTopicAttributes.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Topic.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">TopicArn property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Topic.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Topic.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ResponseMetadata">
- <summary>
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ResponseMetadata.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">The Id associated with the request. Be sure to reference
- this Id when contacting AWS support.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ResponseMetadata.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ResponseMetadata.RequestId">
- <summary>
- Gets and sets the RequestId property.
- The Id associated with the request. Be sure to reference
- this Id when contacting AWS support.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.Error">
- <summary>
- A specific error associated with a Amazon SimpleDB request.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The error type.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.WithCode(System.String)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">The specific error code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The specific error code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.WithDetail(System.Object)">
- <summary>
- Sets the Detail property
- </summary>
- <param name="detail">Details associated with the error.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Error.IsSetDetail">
- <summary>
- Checks if Detail property is set
- </summary>
- <returns>true if Detail property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Error.Type">
- <summary>
- Gets and sets the Type property.
- The error type.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Error.Code">
- <summary>
- Gets and sets the Code property.
- The specific error code.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Error.Message">
- <summary>
- Gets and sets the Message property.
- The specific error code.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Error.Detail">
- <summary>
- Gets and sets the Detail property.
- Details associated with the error.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.BatchPutAttributesResponse">
- <summary>
- Returns metadata about the response, including box usage and request ID.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchPutAttributesResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchPutAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchPutAttributesResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.BatchPutAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.SetACLResponse">
- <summary>
- The SetACLResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetACLResponse.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the version-id of the S3 object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetACLResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Transfer.Internal.MultipartUploadCommand">
- <summary>
- The command to manage an upload using the S3 multipart API.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.Internal.MultipartUploadCommand.#ctor(Amazon.S3.AmazonS3,Amazon.S3.Transfer.TransferUtilityConfig,Amazon.S3.Transfer.TransferUtilityUploadRequest)">
- <summary>
- Initializes a new instance of the <see cref="T:Amazon.S3.Transfer.Internal.MultipartUploadCommand"/> class.
- </summary>
- <param name="s3Client">The s3 client.</param>
- <param name="config">The config object that has the number of threads to use.</param>
- <param name="fileTransporterRequest">The file transporter request.</param>
- </member>
- <member name="M:Amazon.S3.Transfer.Internal.MultipartUploadCommand.Execute">
- <summary>
- Runs the multipart upload.
- </summary>
- </member>
- <member name="T:Amazon.S3.Transfer.Internal.MultipartUploadCommand.UploadPartInvoker">
- <summary>
- Used as the ThreadStart for the threads doing the upload.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetObjectRequest">
- <summary>
- The GetObjectRequest contains the parameters used for the GetObject operation.
- For more information about the optional parameters,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/RESTObjectGET.html"/>
- <br />Required Parameters: BucketName, Key
- <br />Optional Parameters: VersionId, ModifiedSinceDate, UnmodifiedSinceDate,
- ETagToMatch, ETagToNotMatch, ByteRange
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket that contains the S3 Object you
- want to get.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object you want to Get.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithVersionId(System.String)">
- <summary>
- Sets the VersionId property for this request.
- This is the VersionId for the S3 Object you want to Get.
- </summary>
- <param name="versionId">The value that VersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetVersionId">
- <summary>
- Checks if VersionId property is set.
- </summary>
- <returns>true if VersionId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithModifiedSinceDate(System.DateTime)">
- <summary>
- Sets the ModifiedSinceDate property for this request.
- When this is set the S3 object is returned only if it
- has been modified since the specified time, otherwise
- returns a 304 (not modified).
- </summary>
- <param name="modifiedSinceDate">The value that ModifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetModifiedSinceDate">
- <summary>
- Checks if ModifiedSinceDate property is set.
- </summary>
- <returns>true if ModifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithUnmodifiedSinceDate(System.DateTime)">
- <summary>
- Sets the UnmodifiedSinceDate property for this request.
- When this is set the S3 object is returned only if it
- has not been modified since the specified time, otherwise
- return a 412 (precondition failed).
- </summary>
- <param name="unmodifiedSinceDate">The value that UnmodifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetUnmodifiedSinceDate">
- <summary>
- Checks if UnmodifiedSinceDate property is set.
- </summary>
- <returns>true if UnmodifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithETagToMatch(System.String)">
- <summary>
- Sets the ETagToMatch property for this request.
- When this is set the S3 object is returned only if
- its entity tag (ETag) is the same as the one specified,
- otherwise return a 412 (precondition failed).
- </summary>
- <param name="etagToMatch">The value that ETagToMatch is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetETagToMatch">
- <summary>
- Checks if ETagToMatch property is set.
- </summary>
- <returns>true if ETagToMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithETagToNotMatch(System.String)">
- <summary>
- Sets the ETagToNotMatch property for this request.
- When this is set the S3 object is returned only if
- its entity tag (ETag) is different from the one
- specified, otherwise return a 304 (not modified).
- </summary>
- <param name="etagToNotMatch">The value that ETagToNotMatch is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetETagToNotMatch">
- <summary>
- Checks if ETagToNotMatch property is set.
- </summary>
- <returns>true if ETagToNotMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithByteRangeLong(System.Int64,System.Int64)">
- <summary>
- Sets the ByteRangeLong property with the start and end index
- specified.
- When this is set the request downloads the specified range of an object.
- </summary>
- <param name="startIndex">Specifies the index to start at</param>
- <param name="endIndex">Specifies the index to end at</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithByteRange(System.Int32,System.Int32)">
- <summary>
- Sets the ByteRange property with the start and end index
- specified.
- When this is set the request downloads the specified range of an object.
- </summary>
- <param name="startIndex">Specifies the index to start at</param>
- <param name="endIndex">Specifies the index to end at</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.IsSetByteRange">
- <summary>
- Checks if ByteRange property is set.
- </summary>
- <returns>true if ByteRange property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the Timeout property (in milliseconds).
- The value of this property is assigned to the
- Timeout property of the HttpWebRequest
- Please specify a timeout value only if you are certain that
- the file will not be retrieved within the default intervals
- specified for an HttpWebRequest.
- </summary>
- <param name="timeout">Timeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithReadWriteTimeout(System.Int32)">
- <summary>
- Sets the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout property of the HttpWebRequest.
- </summary>
- <param name="readwritetimeout">ReadWriteTimeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectRequest.WithResponseHeaderOverrides(Amazon.S3.Model.ResponseHeaderOverrides)">
- <summary>
- Sets the ResponseHeaderOverrides property and returns back this instance for method chaining.
- </summary>
- <param name="responseHeaderOverrides">The response headers</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.VersionId">
- <summary>
- Gets and sets the VersionId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.ModifiedSinceDate">
- <summary>
- Gets and sets the ModifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.UnmodifiedSinceDate">
- <summary>
- Gets and sets the UnmodifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.ETagToMatch">
- <summary>
- Gets and sets the ETagToMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.ETagToNotMatch">
- <summary>
- Gets and sets the ETagToNotMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.ByteRangeLong">
- <summary>
- Gets and sets the ByteRangeLong property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.ByteRange">
- <summary>
- Gets the ByteRange property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.Timeout">
- <summary>
- Gets and sets of the Timeout property (in milliseconds).
- The value of this property is assigned to the
- Timeout property of the
- HTTPWebRequest object used for S3 GET Object requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.ReadWriteTimeout">
- <summary>
- Gets and sets of the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout properties of the
- HTTPWebRequest object used for S3 GET Object requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectRequest.ResponseHeaderOverrides">
- <summary>
- Gets and sets the response headers to be returned back with the response of the object.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.CopyObjectResponse">
- <summary>
- The CopyObjectResponse contains all the information about the
- CopyObject operation.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectResponse.LastModified">
- <summary>
- Gets and sets the LastModified property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectResponse.SourceVersionId">
- <summary>
- Gets and sets the SourceVersionId property.
- This is the Version Id of the Source Object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectResponse.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the version-id of the object in the destination bucket
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Bucket">
- <summary>
- Represents an S3 Bucket.
- Contains a Bucket Name which is the name of the S3 Bucket.
- And a Creation Date which is the date that the S3 Bucket was created.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Bucket.IsSetBucketName">
- <summary>
- Checks if BucketName property is set
- </summary>
- <returns>true if BucketName property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Bucket.IsSetCreationDate">
- <summary>
- Checks if CreationDate property is set
- </summary>
- <returns>true if CreationDate property is set</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3Bucket.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Bucket.CreationDate">
- <summary>
- Gets and sets the CreationDate property.
- The date conforms to the ISO8601 date format.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetPreSignedUrlRequest">
- <summary>
- The GetPreSignedUrlRequest contains the parameters used to create
- a pre signed URL. For more information, refer:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/dev/S3_QSAuth.html"/>
- <br />Required Parameters: BucketName, Expires
- <br />Optional Parameters: Key, VersionId, Verb: default is GET
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket that contains the S3 Object
- you want to create a pre signed URL for.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object you want to create a
- pre signed URL for.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithContentType(System.String)">
- <summary>
- Sets the ContentType property for this request.
- This property defaults to "binary/octet-stream",
- but if you require something else you can set this property.
- </summary>
- <param name="contentType">the value the ContentType to be set to</param>
- <returns>The request with the ContentType set</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.IsSetContentType">
- <summary>
- Checks if ContentType property is set.
- </summary>
- <returns>true if ContentType property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithExpires(System.DateTime)">
- <summary>
- Sets the Expires property for this request.
- The time when the signature expires, specified as a DateTime
- Object.
- </summary>
- <param name="expires">The value that Expires is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.IsSetExpires">
- <summary>
- Checks if Expires property is set.
- </summary>
- <returns>true if Expires property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithProtocol(Amazon.S3.Model.Protocol)">
- <summary>
- Sets the Protocol property for this request.
- Specifies whether the pre signed URL will use
- http or https. Defaults to https unless otherwise
- set.
- </summary>
- <param name="protocol">The value that Protocol is set to</param>
- <returns>the response with the Protocol set</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithVerb(Amazon.S3.Model.HttpVerb)">
- <summary>
- Sets the Verb property for this request.
- Specifies which verb to use in the pre-signed URL.
- Accepted verbs are GET, PUT and HEAD.
- Default value is GET.
- </summary>
- <param name="verb">The value that Verb is set to</param>
- <returns>the response with the Verb set</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithVersionId(System.String)">
- <summary>
- Sets the VersionId property for this request.
- This is the VersionId for the S3 Object you want to get
- a PreSigned URL for. The VersionId property will be ignored
- for PreSigned "PUT" requests and for requests that don't specify
- the Key property.
- </summary>
- <param name="versionId">The value that VersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.IsSetVersionId">
- <summary>
- Checks if VersionId property is set.
- </summary>
- <returns>true if VersionId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetPreSignedUrlRequest.WithResponseHeaderOverrides(Amazon.S3.Model.ResponseHeaderOverrides)">
- <summary>
- Sets the ResponseHeaderOverrides property and returns back this instance for method chaining.
- </summary>
- <param name="responseHeaderOverrides">The response headers</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.ContentType">
- <summary>
- Gets and sets the ContentType property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.Expires">
- <summary>
- Gets and sets the Expires property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.Protocol">
- <summary>
- Gets and sets the Protocol property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.Verb">
- <summary>
- Gets and sets the Verb property.
- Specifies the verb used in the pre-signed URL.
- Accepted verbs are GET, PUT and HEAD.
- Default is GET.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the VersionId for the S3 Object you want to get
- a PreSigned URL for. The VersionId property will be ignored
- for PreSigned "PUT" requests and for requests that don't specify
- the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetPreSignedUrlRequest.ResponseHeaderOverrides">
- <summary>
- Gets and sets the response headers to be returned back with the response of the object.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.SigningAlgorithm">
- <summary>
- The valid hashing algorithm supported by the sdk for request signing.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.ErrorType">
- <summary>
- Which end of a request was responsible for a service error response.
- </summary>
- </member>
- <member name="F:Amazon.Runtime.ErrorType.Sender">
- <summary>
- The sender was responsible for the error, i.e. the client
- request failed validation or was improperly formatted.
- </summary>
- </member>
- <member name="F:Amazon.Runtime.ErrorType.Receiver">
- <summary>
- The error occured within the service.
- </summary>
- </member>
- <member name="F:Amazon.Runtime.ErrorType.Unknown">
- <summary>
- An unrecognized error type was returned.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RevokeDBSecurityGroupIngressResultUnmarshaller">
- <summary>
- Result Unmarshaller for RevokeDBSecurityGroupIngress operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RebootDBInstanceRequestMarshaller">
- <summary>
- Reboot D B Instance Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ModifyDBParameterGroupResultUnmarshaller">
- <summary>
- ModifyDBParameterGroupResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ModifyDBParameterGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ModifyDBParameterGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeReservedDBInstancesOfferingsRequestMarshaller">
- <summary>
- Describe Reserved D B Instances Offerings Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeEventsResultUnmarshaller">
- <summary>
- DescribeEventsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBEngineVersionsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeDBEngineVersions operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBSecurityGroupRequestMarshaller">
- <summary>
- Delete D B Security Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RevokeDBSecurityGroupIngressResponse">
- <summary>
- Returns information about the RevokeDBSecurityGroupIngress response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RevokeDBSecurityGroupIngressResponse.RevokeDBSecurityGroupIngressResult">
-
- Gets and sets the RevokeDBSecurityGroupIngressResult property.
- Contains the result of a successful invocation of the RevokeDBSecurityGroupIngress
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest">
- <summary>
- Container for the parameters to the RestoreDBInstanceFromDBSnapshot operation.
- <para> Restores a DB Instance to an arbitrary point-in-time. Users can restore to any point in time before the latestRestorableTime for up
- to backupRetentionPeriod days. The target database is created from the source database with the same configuration as the original database
- except that the DB instance is created with the default DB security group. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.RestoreDBInstanceFromDBSnapshot(Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithDBSnapshotIdentifier(System.String)">
- <summary>
- Sets the DBSnapshotIdentifier property
- </summary>
- <param name="dBSnapshotIdentifier">The value to set for the DBSnapshotIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithAutoMinorVersionUpgrade(System.Boolean)">
- <summary>
- Sets the AutoMinorVersionUpgrade property
- </summary>
- <param name="autoMinorVersionUpgrade">The value to set for the AutoMinorVersionUpgrade property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithLicenseModel(System.String)">
- <summary>
- Sets the LicenseModel property
- </summary>
- <param name="licenseModel">The value to set for the LicenseModel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithDBName(System.String)">
- <summary>
- Sets the DBName property
- </summary>
- <param name="dBName">The value to set for the DBName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.DBInstanceIdentifier">
- <summary>
- The identifier for the DB Snapshot to restore from. Constraints: <ul> <li>Must contain from 1 to 63 alphanumeric characters or hyphens</li>
- <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.DBSnapshotIdentifier">
- <summary>
- Name of the DB Instance to create from the DB Snapshot. This parameter isn't case sensitive. Constraints: <ul> <li>Must contain from 1 to
- 255 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two
- consecutive hyphens</li> </ul> Example: <c>my-snapshot-id</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.DBInstanceClass">
- <summary>
- The compute and memory capacity of the Amazon RDS DB instance. Valid Values: <c>db.m1.small | db.m1.large | db.m1.xlarge | db.m2.2xlarge |
- db.m2.4xlarge</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.Port">
- <summary>
- The port number on which the database accepts connections. Default: The same port as the original DB Instance Constraints: Value must be
- <c>1115-65535</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.AvailabilityZone">
- <summary>
- The EC2 Availability Zone that the database instance will be created in. Default: A random, system-chosen Availability Zone. Constraint: You
- cannot specify the AvailabilityZone parameter if the MultiAZ parameter is set to <c>true</c>. Example: <c>us-east-1a</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.MultiAZ">
- <summary>
- Specifies if the DB Instance is a Multi-AZ deployment. Constraint: You cannot specify the AvailabilityZone parameter if the MultiAZ
- parameter is set to <c>true</c>.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.AutoMinorVersionUpgrade">
- <summary>
- Indicates that minor version upgrades will be applied automatically to the DB Instance during the maintenance window.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.LicenseModel">
- <summary>
- License model information for the restored DB Instance. Default: Same as source. Valid values: <c>license-included</c> |
- <c>bring-your-own-license</c> | <c>general-public-license</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.DBName">
- <summary>
- The database name for the restored DB Instance. <note> This parameter doesn't apply to the MySQL engine. </note>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.Engine">
- <summary>
- The database engine to use for the new instance. Default: The same as source Constraint: Must be compatible with the engine of the source
- Example: <c>oracle-ee</c>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.InvalidDBInstanceStateException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.InvalidDBInstanceStateException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidDBInstanceStateException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeReservedDBInstancesOfferings action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResult.WithReservedDBInstancesOfferings(Amazon.RDS.Model.ReservedDBInstancesOffering[])">
- <summary>
- Adds elements to the ReservedDBInstancesOfferings collection
- </summary>
- <param name="reservedDBInstancesOfferings">The values to add to the ReservedDBInstancesOfferings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResult.WithReservedDBInstancesOfferings(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.ReservedDBInstancesOffering})">
- <summary>
- Adds elements to the ReservedDBInstancesOfferings collection
- </summary>
- <param name="reservedDBInstancesOfferings">The values to add to the ReservedDBInstancesOfferings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResult.Marker">
- <summary>
- A marker provided for paginated results.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResult.ReservedDBInstancesOfferings">
- <summary>
- A list of DB Instance offerings.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResponse">
- <summary>
- Returns information about the DescribeReservedDBInstancesOfferingsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesOfferingsResponse.DescribeReservedDBInstancesOfferingsResult">
- <summary>
- Gets and sets the DescribeReservedDBInstancesOfferingsResult property.
- Contains the result of a successful invocation of the DescribeReservedDBInstancesOfferings action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeEngineDefaultParametersResponse">
- <summary>
- Returns information about the DescribeEngineDefaultParameters response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEngineDefaultParametersResponse.DescribeEngineDefaultParametersResult">
-
- Gets and sets the DescribeEngineDefaultParametersResult property.
- Contains the result of a successful invocation of the DescribeEngineDefaultParameters
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBSnapshotsResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeDBSnapshots action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSnapshotsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSnapshotsResult.WithDBSnapshots(Amazon.RDS.Model.DBSnapshot[])">
- <summary>
- Adds elements to the DBSnapshots collection
- </summary>
- <param name="dBSnapshots">The values to add to the DBSnapshots collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSnapshotsResult.WithDBSnapshots(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.DBSnapshot})">
- <summary>
- Adds elements to the DBSnapshots collection
- </summary>
- <param name="dBSnapshots">The values to add to the DBSnapshots collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSnapshotsResult.Marker">
- <summary>
- The marker obtained from a previous operation response.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSnapshotsResult.DBSnapshots">
- <summary>
- A list of <a>DBSnapshot</a> instances.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBSecurityGroupsResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeDBSecurityGroups action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSecurityGroupsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSecurityGroupsResult.WithDBSecurityGroups(Amazon.RDS.Model.DBSecurityGroup[])">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBSecurityGroupsResult.WithDBSecurityGroups(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.DBSecurityGroup})">
- <summary>
- Adds elements to the DBSecurityGroups collection
- </summary>
- <param name="dBSecurityGroups">The values to add to the DBSecurityGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSecurityGroupsResult.Marker">
- <summary>
- The marker obtained from a previous operation response.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSecurityGroupsResult.DBSecurityGroups">
- <summary>
- A list of <a>DBSecurityGroup</a> instances.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBInstancesResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeDBInstances action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBInstancesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBInstancesResult.WithDBInstances(Amazon.RDS.Model.DBInstance[])">
- <summary>
- Adds elements to the DBInstances collection
- </summary>
- <param name="dBInstances">The values to add to the DBInstances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBInstancesResult.WithDBInstances(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.DBInstance})">
- <summary>
- Adds elements to the DBInstances collection
- </summary>
- <param name="dBInstances">The values to add to the DBInstances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBInstancesResult.Marker">
- <summary>
- The marker obtained from a previous operation response.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBInstancesResult.DBInstances">
- <summary>
- A list of <a>DBInstance</a> instances.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBSnapshotRequest">
- <summary>
- Container for the parameters to the DeleteDBSnapshot operation.
- <para> Deletes a DBSnapshot. </para> <para><b>NOTE:</b>The DBSnapshot must be in the available state to be deleted.</para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DeleteDBSnapshot(Amazon.RDS.Model.DeleteDBSnapshotRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DeleteDBSnapshotRequest.WithDBSnapshotIdentifier(System.String)">
- <summary>
- Sets the DBSnapshotIdentifier property
- </summary>
- <param name="dBSnapshotIdentifier">The value to set for the DBSnapshotIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBSnapshotRequest.DBSnapshotIdentifier">
- <summary>
- The DBSnapshot identifier. Constraints: Must be the name of an existing DB Snapshot in the <c>available</c> state.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBSecurityGroupResponse">
- <summary>
- Returns information about the DeleteDBSecurityGroup response metadata.
- The DeleteDBSecurityGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBInstanceRequest">
- <summary>
- Container for the parameters to the DeleteDBInstance operation.
- <para> The DeleteDBInstance API deletes a previously provisioned RDS instance. A successful response from the web service indicates the
- request was received correctly. If a final DBSnapshot is requested the status of the RDS instance will be "deleting" until the DBSnapshot is
- created. DescribeDBInstance is used to monitor the status of this operation. This cannot be canceled or reverted once submitted. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DeleteDBInstance(Amazon.RDS.Model.DeleteDBInstanceRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DeleteDBInstanceRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DeleteDBInstanceRequest.WithSkipFinalSnapshot(System.Boolean)">
- <summary>
- Sets the SkipFinalSnapshot property
- </summary>
- <param name="skipFinalSnapshot">The value to set for the SkipFinalSnapshot property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DeleteDBInstanceRequest.WithFinalDBSnapshotIdentifier(System.String)">
- <summary>
- Sets the FinalDBSnapshotIdentifier property
- </summary>
- <param name="finalDBSnapshotIdentifier">The value to set for the FinalDBSnapshotIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBInstanceRequest.DBInstanceIdentifier">
- <summary>
- The DB Instance identifier for the DB Instance to be deleted. This parameter isn't case sensitive. Constraints: <ul> <li>Must contain from 1
- to 63 alphanumeric characters or hyphens</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two
- consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBInstanceRequest.SkipFinalSnapshot">
- <summary>
- Determines whether a final DB Snapshot is created before the DB Instance is deleted. If <c>true</c> is specified, no DBSnapshot is created.
- If false is specified, a DB Snapshot is created before the DB Instance is deleted. <note>The FinalDBSnapshotIdentifier parameter must be
- specified if SkipFinalSnapshot is <c>false</c>.</note> Default: <c>false</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBInstanceRequest.FinalDBSnapshotIdentifier">
- <summary>
- The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to <c>false</c>. <note> Specifying this parameter and
- also setting the SkipFinalShapshot parameter to true results in an error. </note> Constraints: <ul> <li>Must be 1 to 255 alphanumeric
- characters</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBSecurityGroupQuotaExceededException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroupQuotaExceededException.#ctor(System.String)">
- <summary>
- Constructs a new DBSecurityGroupQuotaExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBSecurityGroupMembership">
- <summary>
- <para> This data type is used as a response element in the following actions: </para>
- <ul>
- <li> ModifyDBInstance </li>
- <li> RebootDBInstance </li>
- <li> RestoreDBInstanceFromDBSnapshot </li>
- <li> RestoreDBInstanceToPointInTime </li>
-
- </ul>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroupMembership.WithDBSecurityGroupName(System.String)">
- <summary>
- Sets the DBSecurityGroupName property
- </summary>
- <param name="dBSecurityGroupName">The value to set for the DBSecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroupMembership.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DBSecurityGroupMembership.DBSecurityGroupName">
- <summary>
- The name of the DB Security Group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBSecurityGroupMembership.Status">
- <summary>
- The status of the DB Security Group.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest">
- <summary>
- Container for the parameters to the AuthorizeDBSecurityGroupIngress operation.
- <para> Enables ingress to a DBSecurityGroup using one of two forms of authorization. First, EC2 Security Groups can be added to the
- DBSecurityGroup if the application using the database is running on EC2 instances. Second, IP ranges are available if the application
- accessing your database is running on the Internet. Required parameters for this API are one of CIDR range or (EC2SecurityGroupName AND
- EC2SecurityGroupOwnerId). </para> <para><b>NOTE:</b> You cannot authorize ingress from an EC2 security group in one Region to an Amazon RDS
- DB Instance in another. </para> <para>For an overview of CIDR ranges, go to the Wikipedia Tutorial. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.AuthorizeDBSecurityGroupIngress(Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.WithDBSecurityGroupName(System.String)">
- <summary>
- Sets the DBSecurityGroupName property
- </summary>
- <param name="dBSecurityGroupName">The value to set for the DBSecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.WithCIDRIP(System.String)">
- <summary>
- Sets the CIDRIP property
- </summary>
- <param name="cIDRIP">The value to set for the CIDRIP property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.WithEC2SecurityGroupName(System.String)">
- <summary>
- Sets the EC2SecurityGroupName property
- </summary>
- <param name="eC2SecurityGroupName">The value to set for the EC2SecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.WithEC2SecurityGroupOwnerId(System.String)">
- <summary>
- Sets the EC2SecurityGroupOwnerId property
- </summary>
- <param name="eC2SecurityGroupOwnerId">The value to set for the EC2SecurityGroupOwnerId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.DBSecurityGroupName">
- <summary>
- The name of the DB Security Group to authorize.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.CIDRIP">
- <summary>
- The IP range to authorize.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.EC2SecurityGroupName">
- <summary>
- Name of the EC2 Security Group to authorize.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressRequest.EC2SecurityGroupOwnerId">
- <summary>
- AWS Account Number of the owner of the security group specified in the EC2SecurityGroupName parameter. The AWS Access Key ID is not an
- acceptable value.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.UpdateJobResult">
- <summary>
- <para> Output structure for the UpateJob operation. </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.UpdateJobResult.WithSuccess(System.Boolean)">
- <summary>
- Sets the Success property
- </summary>
- <param name="success">The value to set for the Success property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.UpdateJobResult.WithWarningMessage(System.String)">
- <summary>
- Sets the WarningMessage property
- </summary>
- <param name="warningMessage">The value to set for the WarningMessage property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.UpdateJobResult.Success">
- <summary>
- Specifies whether (true) or not (false) AWS Import/Export updated your
- job.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.UpdateJobResult.WarningMessage">
- <summary>
- An optional message notifying you of non-fatal issues with the job,
- such as use of an incompatible Amazon S3 bucket name.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.CancelJobResultUnmarshaller">
- <summary>
- CancelJobResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateAccessKeyRequest">
- <summary>
- Container for the parameters to the UpdateAccessKey operation.
- <para>Changes the status of the specified access key from Active to
- Inactive, or vice versa. This action can be used to disable a User's
- key as part of a key rotation workflow.</para> <para>If the
- <c>UserName</c> field is not specified, the UserName is determined
- implicitly based on the AWS Access Key ID used to sign the request.
- Because this action works for access keys under the AWS Account, this
- API can be used to manage root credentials even if the AWS Account has
- no associated Users.</para> <para>For information about rotating keys,
- see Managing Keys and Certificates in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateAccessKey(Amazon.IdentityManagement.Model.UpdateAccessKeyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateAccessKeyRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateAccessKeyRequest.WithAccessKeyId(System.String)">
- <summary>
- Sets the AccessKeyId property
- </summary>
- <param name="accessKeyId">The value to set for the AccessKeyId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateAccessKeyRequest.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateAccessKeyRequest.UserName">
- <summary>
- Name of the User whose key you want to update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateAccessKeyRequest.AccessKeyId">
- <summary>
- The Access Key ID of the Secret Access Key you want to update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>16 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateAccessKeyRequest.Status">
- <summary>
- The status you want to assign to the Secret Access Key. <c>Active</c> means the key can be used for API calls to AWS, while <c>Inactive</c>
- means the key cannot be used.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Active, Inactive</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UploadSigningCertificateRequestMarshaller">
- <summary>
- Upload Signing Certificate Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListServerCertificatesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListServerCertificates operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupsResultUnmarshaller">
- <summary>
- ListGroupsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteGroupRequestMarshaller">
- <summary>
- Delete Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteGroupPolicyRequestMarshaller">
- <summary>
- Delete Group Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteAccountAliasRequestMarshaller">
- <summary>
- Delete Account Alias Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteAccessKeyRequestMarshaller">
- <summary>
- Delete Access Key Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.PutGroupPolicyRequest">
- <summary>
- Container for the parameters to the PutGroupPolicy operation.
- <para>Adds (or updates) a policy document associated with the
- specified group. For information about policies, refer to Overview of
- Policies in <i>Using AWS Identity and Access Management</i> .</para>
- <para>For information about limits on the number of policies you can
- associate with a group, see Limitations on IAM Entities in <i>Using
- AWS Identity and Access Management</i> .</para>
- <para><b>NOTE:</b>Because policy documents can be large, you should
- use POST rather than GET when calling PutGroupPolicy. For more
- information, see Making Query Requests in Using AWS Identity and
- Access Management.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.PutGroupPolicy(Amazon.IdentityManagement.Model.PutGroupPolicyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.PutGroupPolicyRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.PutGroupPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.PutGroupPolicyRequest.WithPolicyDocument(System.String)">
- <summary>
- Sets the PolicyDocument property
- </summary>
- <param name="policyDocument">The value to set for the PolicyDocument property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.PutGroupPolicyRequest.GroupName">
- <summary>
- Name of the group to associate the policy with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.PutGroupPolicyRequest.PolicyName">
- <summary>
- Name of the policy document.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.PutGroupPolicyRequest.PolicyDocument">
- <summary>
- The policy document.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 131072</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListServerCertificatesResponse">
- <summary>
- Returns information about the ListServerCertificatesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListServerCertificatesResponse.ListServerCertificatesResult">
- <summary>
- Gets and sets the ListServerCertificatesResult property.
- Contains the result of a successful invocation of the ListServerCertificates action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListAccountAliasesRequest">
- <summary>
- Container for the parameters to the ListAccountAliases operation.
- <para>Lists the account aliases associated with the account. For
- information about using an AWS Account alias, see Using an Alias for
- Your AWS Account ID in <i>Using AWS Identity and Access Management</i>
- .</para> <para>You can paginate the results using the <c>MaxItems</c>
- and <c>Marker</c> parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListAccountAliases(Amazon.IdentityManagement.Model.ListAccountAliasesRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccountAliasesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListAccountAliasesRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccountAliasesRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListAccountAliasesRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of account aliases you want in the response. If there are additional
- account aliases beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.InvalidAuthenticationCodeException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.InvalidAuthenticationCodeException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidAuthenticationCodeException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteUserPolicyResponse">
- <summary>
- Returns information about the DeleteUserPolicy response metadata.
- The DeleteUserPolicy operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteGroupPolicyResponse">
- <summary>
- Returns information about the DeleteGroupPolicy response metadata.
- The DeleteGroupPolicy operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteAccountAliasResponse">
- <summary>
- Returns information about the DeleteAccountAlias response metadata.
- The DeleteAccountAlias operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeactivateMFADeviceResponse">
- <summary>
- Returns information about the DeactivateMFADevice response metadata.
- The DeactivateMFADevice operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateUserRequest">
- <summary>
- Container for the parameters to the CreateUser operation.
- <para>Creates a new User for your AWS Account.</para> <para>For
- information about limitations on the number of Users you can create,
- see Limitations on IAM Entities in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateUser(Amazon.IdentityManagement.Model.CreateUserRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateUserRequest.WithPath(System.String)">
- <summary>
- Sets the Path property
- </summary>
- <param name="path">The value to set for the Path property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateUserRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateUserRequest.Path">
- <summary>
- The path for the User name. For more information about paths, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>. This parameter is optional. If it is not included, it defaults to a slash
- (/).
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateUserRequest.UserName">
- <summary>
- Name of the User to create.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateGroupRequest">
- <summary>
- Container for the parameters to the CreateGroup operation.
- <para>Creates a new group.</para> <para>For information about the
- number of groups you can create, see Limitations on IAM Entities in
- <i>Using AWS Identity and Access Management</i> .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateGroup(Amazon.IdentityManagement.Model.CreateGroupRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateGroupRequest.WithPath(System.String)">
- <summary>
- Sets the Path property
- </summary>
- <param name="path">The value to set for the Path property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateGroupRequest.Path">
- <summary>
- The path to the group. For more information about paths, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM
- Entities</a> in <i>Using AWS Identity and Access Management</i>. This parameter is optional. If it is not included, it defaults to a slash
- (/).
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateGroupRequest.GroupName">
- <summary>
- Name of the group to create. Do not include the path in this value.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.BootstrapActionDetailUnmarshaller">
- <summary>
- BootstrapActionDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.AddJobFlowStepsRequestMarshaller">
- <summary>
- Add Job Flow Steps Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.TerminateJobFlowsResponse">
- <summary>
- Returns information about the TerminateJobFlows response metadata.
- The TerminateJobFlows operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.StepConfig">
- <summary>
- <para>Specification of a job flow step.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepConfig.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepConfig.WithActionOnFailure(System.String)">
- <summary>
- Sets the ActionOnFailure property
- </summary>
- <param name="actionOnFailure">The value to set for the ActionOnFailure property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepConfig.WithHadoopJarStep(Amazon.ElasticMapReduce.Model.HadoopJarStepConfig)">
- <summary>
- Sets the HadoopJarStep property
- </summary>
- <param name="hadoopJarStep">The value to set for the HadoopJarStep property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepConfig.Name">
- <summary>
- The name of the job flow step.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepConfig.ActionOnFailure">
- <summary>
- Specifies the action to take if the job flow step fails.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>TERMINATE_JOB_FLOW, CANCEL_AND_WAIT, CONTINUE</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepConfig.HadoopJarStep">
- <summary>
- Specifies the JAR file used for the job flow step.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.RegisterInstancesWithLoadBalancerResultUnmarshaller">
- <summary>
- RegisterInstancesWithLoadBalancerResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerResultUnmarshaller">
- <summary>
- DeleteLoadBalancerResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLoadBalancerListenersResultUnmarshaller">
- <summary>
- CreateLoadBalancerListenersResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new LoadBalancerNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Instance">
- <summary>
- <para> The Instance data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Instance.#ctor">
- <summary>
- Default constructor for a new Instance object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Instance.#ctor(System.String)">
- <summary>
- Constructs a new Instance object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="instanceId"> Provides an EC2 instance ID. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Instance.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The value to set for the InstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.Instance.InstanceId">
- <summary>
- Provides an EC2 instance ID.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerResponse">
- <summary>
- Returns information about the DeleteLoadBalancerResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerResponse.DeleteLoadBalancerResult">
- <summary>
- Gets and sets the DeleteLoadBalancerResult property.
- The output for the DeleteLoadBalander action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersResponse">
- <summary>
- Returns information about the CreateLoadBalancerListenersResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersResponse.CreateLoadBalancerListenersResult">
- <summary>
- Gets and sets the CreateLoadBalancerListenersResult property.
- The output for the CreateLoadBalancerListeners action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient">
- <summary>
- Implemenation for accessing AmazonElasticLoadBalancing.
-
- Elastic Load Balancing <para> Elastic Load Balancing is a cost-effective and easy to use web service to help you improve availability and
- scalability of your application. It makes it easy for you to distribute application loads between two or more EC2 instances. Elastic Load
- Balancing enables availability through redundancy and supports traffic growth of your application. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonElasticLoadBalancingClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.#ctor(System.String,System.String,Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingConfig)">
- <summary>
- Constructs AmazonElasticLoadBalancingClient with AWS Access Key ID, AWS Secret Key and an
- AmazonElasticLoadBalancingClient Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonElasticLoadBalancingClient Configuration Object</param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.CreateLoadBalancer(Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerRequest)">
- <summary>
- <para> Creates a new LoadBalancer. </para> <para> Once the call has completed successfully, a new LoadBalancer is created; however, it will
- not be usable until at least one instance has been registered. When the LoadBalancer creation is completed, the client can check whether or
- not it is usable by using the DescribeInstanceHealth API. The LoadBalancer is usable as soon as any registered instance is <i>InService</i>
- .
- </para> <para><b>NOTE:</b> Currently, the client's quota of LoadBalancers is limited to five per Region. </para> <para><b>NOTE:</b>
- Load balancer DNS names vary depending on the Region they're created in. For load balancers created in the United States, the DNS name ends
- with: us-east-1.elb.amazonaws.com (for the US Standard Region) us-west-1.elb.amazonaws.com (for the Northern California Region) For load
- balancers created in the EU (Ireland) Region, the DNS name ends with: eu-west-1.elb.amazonaws.com </para>
- </summary>
-
- <param name="createLoadBalancerRequest">Container for the necessary parameters to execute the CreateLoadBalancer service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.TooManyLoadBalancersException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicateLoadBalancerNameException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.DeleteLoadBalancerListeners(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersRequest)">
- <summary>
- <para> Deletes listeners from the LoadBalancer for the specified port. </para>
- </summary>
-
- <param name="deleteLoadBalancerListenersRequest">Container for the necessary parameters to execute the DeleteLoadBalancerListeners service
- method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeleteLoadBalancerListeners service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.DescribeInstanceHealth(Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthRequest)">
- <summary>
- <para> Returns the current state of the instances of the specified LoadBalancer. If no instances are specified, the state of all the
- instances for the LoadBalancer is returned. </para> <para><b>NOTE:</b> The client must have created the specified input LoadBalancer in
- order to retrieve this information; the client must provide the same account credentials as those that were used to create the LoadBalancer.
- </para>
- </summary>
-
- <param name="describeInstanceHealthRequest">Container for the necessary parameters to execute the DescribeInstanceHealth service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DescribeInstanceHealth service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.DeleteLoadBalancer(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerRequest)">
- <summary>
- <para> Deletes the specified LoadBalancer. </para> <para> If attempting to recreate the LoadBalancer, the client must reconfigure all the
- settings. The DNS name associated with a deleted LoadBalancer will no longer be usable. Once deleted, the name and associated DNS record of
- the LoadBalancer no longer exist and traffic sent to any of its IP addresses will no longer be delivered to client instances. The client
- will not receive the same DNS name even if a new LoadBalancer with same LoadBalancerName is created. </para> <para> To successfully call
- this API, the client must provide the same account credentials as were used to create the LoadBalancer. </para> <para><b>NOTE:</b> By
- design, if the LoadBalancer does not exist or has already been deleted, DeleteLoadBalancer still succeeds. </para>
- </summary>
-
- <param name="deleteLoadBalancerRequest">Container for the necessary parameters to execute the DeleteLoadBalancer service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeleteLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.CreateLBCookieStickinessPolicy(Amazon.ElasticLoadBalancing.Model.CreateLBCookieStickinessPolicyRequest)">
- <summary>
- <para> Generates a stickiness policy with sticky session lifetimes controlled by the lifetime of the browser (user-agent) or a specified
- expiration period. This policy can be associated only with HTTP/HTTPS listeners. </para> <para> When a load balancer implements this policy,
- the load balancer uses a special cookie to track the backend server instance for each request. When the load balancer receives a request, it
- first checks to see if this cookie is present in the request. If so, the load balancer sends the request to the application server specified
- in the cookie. If not, the load balancer sends the request to a server that is chosen based on the existing load balancing algorithm.
- </para> <para> A cookie is inserted into the response for binding subsequent requests from the same user to that server. The validity of the
- cookie is based on the cookie expiration time, which is specified in the policy configuration. </para>
- </summary>
-
- <param name="createLBCookieStickinessPolicyRequest">Container for the necessary parameters to execute the CreateLBCookieStickinessPolicy
- service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateLBCookieStickinessPolicy service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.TooManyPoliciesException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicatePolicyNameException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.CreateLoadBalancerListeners(Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest)">
- <summary>
- <para> Creates one or more listeners on a LoadBalancer for the specified port. If a listener with the given port does not already exist, it
- will be created; otherwise, the properties of the new listener must match the properties of the existing listener. </para>
- </summary>
-
- <param name="createLoadBalancerListenersRequest">Container for the necessary parameters to execute the CreateLoadBalancerListeners service
- method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateLoadBalancerListeners service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicateListenerException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.DescribeLoadBalancers(Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersRequest)">
- <summary>
- <para> Returns detailed configuration information for the specified LoadBalancers. If no LoadBalancers are specified, the operation returns
- configuration information for all LoadBalancers created by the caller. </para> <para><b>NOTE:</b> The client must have created the specified
- input LoadBalancers in order to retrieve this information; the client must provide the same account credentials as those that were used to
- create the LoadBalancer. </para>
- </summary>
-
- <param name="describeLoadBalancersRequest">Container for the necessary parameters to execute the DescribeLoadBalancers service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DescribeLoadBalancers service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.DisableAvailabilityZonesForLoadBalancer(Amazon.ElasticLoadBalancing.Model.DisableAvailabilityZonesForLoadBalancerRequest)">
- <summary>
- <para> Removes the specified EC2 Availability Zones from the set of configured Availability Zones for the LoadBalancer. </para> <para> There
- must be at least one Availability Zone registered with a LoadBalancer at all times. A client cannot remove all the Availability Zones from a
- LoadBalancer. Once an Availability Zone is removed, all the instances registered with the LoadBalancer that are in the removed Availability
- Zone go into the OutOfService state. Upon Availability Zone removal, the LoadBalancer attempts to equally balance the traffic among its
- remaining usable Availability Zones. Trying to remove an Availability Zone that was not associated with the LoadBalancer does nothing.
- </para> <para><b>NOTE:</b> In order for this call to be successful, the client must have created the LoadBalancer. The client must provide
- the same account credentials as those that were used to create the LoadBalancer. </para>
- </summary>
-
- <param name="disableAvailabilityZonesForLoadBalancerRequest">Container for the necessary parameters to execute the
- DisableAvailabilityZonesForLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DisableAvailabilityZonesForLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.DeregisterInstancesFromLoadBalancer(Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest)">
- <summary>
- <para> Deregisters instances from the LoadBalancer. Once the instance is deregistered, it will stop receiving traffic from the LoadBalancer.
- </para> <para> In order to successfully call this API, the same account credentials as those used to create the LoadBalancer must be
- provided. </para>
- </summary>
-
- <param name="deregisterInstancesFromLoadBalancerRequest">Container for the necessary parameters to execute the
- DeregisterInstancesFromLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeregisterInstancesFromLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.CreateAppCookieStickinessPolicy(Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyRequest)">
- <summary>
- <para> Generates a stickiness policy with sticky session lifetimes that follow that of an application-generated cookie. This policy can be
- associated only with HTTP/HTTPS listeners. </para> <para> This policy is similar to the policy created by CreateLBCookieStickinessPolicy,
- except that the lifetime of the special Elastic Load Balancing cookie follows the lifetime of the application-generated cookie specified in
- the policy configuration. The load balancer only inserts a new stickiness cookie when the application response includes a new application
- cookie. </para> <para> If the application cookie is explicitly removed or expires, the session stops being sticky until a new application
- cookie is issued. </para> <para><b>NOTE:</b> An application client must receive and send two cookies: the application-generated cookie and
- the special Elastic Load Balancing cookie named AWSELB. This is the default behavior for many common web browsers. </para>
- </summary>
-
- <param name="createAppCookieStickinessPolicyRequest">Container for the necessary parameters to execute the CreateAppCookieStickinessPolicy
- service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the CreateAppCookieStickinessPolicy service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.TooManyPoliciesException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.DuplicatePolicyNameException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.RegisterInstancesWithLoadBalancer(Amazon.ElasticLoadBalancing.Model.RegisterInstancesWithLoadBalancerRequest)">
- <summary>
- <para> Adds new instances to the LoadBalancer. </para> <para> Once the instance is registered, it starts receiving traffic and requests from
- the LoadBalancer. Any instance that is not in any of the Availability Zones registered for the LoadBalancer will be moved to the
- <i>OutOfService</i> state. It will move to the <i>InService</i> state when the Availability Zone is added to the LoadBalancer. </para>
- <para><b>NOTE:</b> In order for this call to be successful, the client must have created the LoadBalancer. The client must provide the same
- account credentials as those that were used to create the LoadBalancer. </para> <para><b>NOTE:</b> Completion of this API does not guarantee
- that operation has completed. Rather, it means that the request has been registered and the changes will happen shortly. </para>
- </summary>
-
- <param name="registerInstancesWithLoadBalancerRequest">Container for the necessary parameters to execute the
- RegisterInstancesWithLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the RegisterInstancesWithLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidInstanceException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.SetLoadBalancerListenerSSLCertificate(Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest)">
- <summary>
- <para> Sets the certificate that terminates the specified listener's SSL connections. The specified certificate replaces any prior
- certificate that was used on the same LoadBalancer and port. </para>
- </summary>
-
- <param name="setLoadBalancerListenerSSLCertificateRequest">Container for the necessary parameters to execute the
- SetLoadBalancerListenerSSLCertificate service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the SetLoadBalancerListenerSSLCertificate service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.ListenerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.DeleteLoadBalancerPolicy(Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyRequest)">
- <summary>
- <para> Deletes a policy from the LoadBalancer. The specified policy must not be enabled for any listeners. </para>
- </summary>
-
- <param name="deleteLoadBalancerPolicyRequest">Container for the necessary parameters to execute the DeleteLoadBalancerPolicy service method
- on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the DeleteLoadBalancerPolicy service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.SetLoadBalancerPoliciesOfListener(Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerRequest)">
- <summary>
- <para> Associates, updates, or disables a policy with a listener on the load balancer. Currently only zero (0) or one (1) policy can be
- associated with a listener. </para>
- </summary>
-
- <param name="setLoadBalancerPoliciesOfListenerRequest">Container for the necessary parameters to execute the
- SetLoadBalancerPoliciesOfListener service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the SetLoadBalancerPoliciesOfListener service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.PolicyNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.InvalidConfigurationRequestException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.ListenerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.EnableAvailabilityZonesForLoadBalancer(Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest)">
- <summary>
- <para> Adds one or more EC2 Availability Zones to the LoadBalancer. </para> <para> The LoadBalancer evenly distributes requests across all
- its registered Availability Zones that contain instances. As a result, the client must ensure that its LoadBalancer is appropriately scaled
- for each registered Availability Zone. </para> <para><b>NOTE:</b> The new EC2 Availability Zones to be added must be in the same EC2 Region
- as the Availability Zones for which the LoadBalancer was created. </para>
- </summary>
-
- <param name="enableAvailabilityZonesForLoadBalancerRequest">Container for the necessary parameters to execute the
- EnableAvailabilityZonesForLoadBalancer service method on AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the EnableAvailabilityZonesForLoadBalancer service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancingClient.ConfigureHealthCheck(Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest)">
- <summary>
- <para> Enables the client to define an application healthcheck for the instances. </para>
- </summary>
-
- <param name="configureHealthCheckRequest">Container for the necessary parameters to execute the ConfigureHealthCheck service method on
- AmazonElasticLoadBalancing.</param>
-
- <returns>The response from the ConfigureHealthCheck service method, as returned by AmazonElasticLoadBalancing.</returns>
-
- <exception cref="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerNotFoundException"/>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.SwapEnvironmentCNAMEsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SwapEnvironmentCNAMEs operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RetrieveEnvironmentInfoResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RetrieveEnvironmentInfo operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RestartAppServerRequestMarshaller">
- <summary>
- Restart App Server Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.InstanceUnmarshaller">
- <summary>
- Instance Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteConfigurationTemplateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteConfigurationTemplate operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CheckDNSAvailabilityRequestMarshaller">
- <summary>
- Check D N S Availability Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ApplicationDescriptionUnmarshaller">
- <summary>
- ApplicationDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.OptionSpecification">
- <summary>
- <para> A specification identifying an individual configuration option. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.OptionSpecification.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.OptionSpecification.WithOptionName(System.String)">
- <summary>
- Sets the OptionName property
- </summary>
- <param name="optionName">The value to set for the OptionName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.OptionSpecification.Namespace">
- <summary>
- A unique namespace identifying the option's associated AWS resource.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.OptionSpecification.OptionName">
- <summary>
- The name of the configuration option.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsResult">
- <summary>
- <para>Result message wrapping a list of application version descriptions.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsResult.WithApplicationVersions(Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription[])">
- <summary>
- Adds elements to the ApplicationVersions collection
- </summary>
- <param name="applicationVersions">The values to add to the ApplicationVersions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsResult.WithApplicationVersions(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ApplicationVersionDescription})">
- <summary>
- Adds elements to the ApplicationVersions collection
- </summary>
- <param name="applicationVersions">The values to add to the ApplicationVersions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsResult.ApplicationVersions">
- <summary>
- A list of <a>ApplicationVersionDescription</a> .
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteConfigurationTemplateResponse">
- <summary>
- Returns information about the DeleteConfigurationTemplate response metadata.
- The DeleteConfigurationTemplate operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest">
- <summary>
- Container for the parameters to the CreateEnvironment operation.
- <para> Launches an environment for the specified application using the specified configuration. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateEnvironment(Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithCNAMEPrefix(System.String)">
- <summary>
- Sets the CNAMEPrefix property
- </summary>
- <param name="cNAMEPrefix">The value to set for the CNAMEPrefix property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithOptionsToRemove(Amazon.ElasticBeanstalk.Model.OptionSpecification[])">
- <summary>
- Adds elements to the OptionsToRemove collection
- </summary>
- <param name="optionsToRemove">The values to add to the OptionsToRemove collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.WithOptionsToRemove(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.OptionSpecification})">
- <summary>
- Adds elements to the OptionsToRemove collection
- </summary>
- <param name="optionsToRemove">The values to add to the OptionsToRemove collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.ApplicationName">
- <summary>
- The name of the application that contains the version to be deployed. If no application is found with this name, <c>CreateEnvironment</c>
- returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.VersionLabel">
- <summary>
- The name of the application version to deploy. If the specified application has no associated application versions, AWS Elastic Beanstalk
- <c>UpdateEnvironment</c> returns an <c>InvalidParameterValue</c> error. Default: If not specified, AWS Elastic Beanstalk attempts to launch
- the most recently created application version.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.EnvironmentName">
- <summary>
- A unique name for the deployment environment. Used in the application URL. Constraint: Must be from 4 to 23 characters in length. The name
- can contain only letters, numbers, and hyphens. It cannot start or end with a hyphen. This name must be unique in your account. If the
- specified name already exists, AWS Elastic Beanstalk returns an <c>InvalidParameterValue</c> error. Default: If the CNAME parameter is not
- specified, the environment name becomes part of the CNAME, and therefore part of the visible URL for your application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.TemplateName">
- <summary>
- The name of the configuration template to use in deployment. If no configuration template is found with this name, AWS Elastic Beanstalk
- returns an <c>InvalidParameterValue</c> error. Conditional: You must specify either this parameter or a <c>SolutionStackName</c>, but not
- both. If you specify both, AWS Elastic Beanstalk returns an <c>InvalidParameterCombination</c> error. If you do not specify either, AWS
- Elastic Beanstalk returns a <c>MissingRequiredParameter</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.SolutionStackName">
- <summary>
- This is an alternative to specifying a configuration name. If specified, AWS Elastic Beanstalk sets the configuration values to the default
- values associated with the specified solution stack. Condition: You must specify either this or a <c>TemplateName</c>, but not both. If you
- specify both, AWS Elastic Beanstalk returns an <c>InvalidParameterCombination</c> error. If you do not specify either, AWS Elastic Beanstalk
- returns a <c>MissingRequiredParameter</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.CNAMEPrefix">
- <summary>
- If specified, the environment attempts to use this value as the prefix for the CNAME. If not specified, the environment uses the environment
- name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 63</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.Description">
- <summary>
- Describes this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.OptionSettings">
- <summary>
- If specified, AWS Elastic Beanstalk sets the specified configuration options to the requested value in the configuration set for the new
- environment. These override the values obtained from the solution stack or the configuration template.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateEnvironmentRequest.OptionsToRemove">
- <summary>
- A list of custom user-defined configuration options to remove from the configuration set for this new environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionResponse">
- <summary>
- Returns information about the CreateApplicationVersionResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionResponse.CreateApplicationVersionResult">
- <summary>
- Gets and sets the CreateApplicationVersionResult property.
- Result message wrapping a single description of an application version.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityResponse">
- <summary>
- Returns information about the CheckDNSAvailabilityResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CheckDNSAvailabilityResponse.CheckDNSAvailabilityResult">
- <summary>
- Gets and sets the CheckDNSAvailabilityResult property.
- Indicates if the specified CNAME is available.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.WithResourceId(System.String)">
- <summary>
- Sets the ResourceId property
- </summary>
- <param name="resourceId">ResourceId property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.IsSetResourceId">
- <summary>
- Checks if ResourceId property is set
- </summary>
- <returns>true if ResourceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.WithResourceType(System.String)">
- <summary>
- Sets the ResourceType property
- </summary>
- <param name="resourceType">ResourceType property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.IsSetResourceType">
- <summary>
- Checks if ResourceType property is set
- </summary>
- <returns>true if ResourceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.WithKey(System.String)">
- <summary>
- Sets the Key property
- </summary>
- <param name="key">Key property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.IsSetKey">
- <summary>
- Checks if Key property is set
- </summary>
- <returns>true if Key property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">Value property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.TagType.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.TagType.ResourceId">
- <summary>
- Gets and sets the ResourceId property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.TagType.ResourceType">
- <summary>
- Gets and sets the ResourceType property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.TagType.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.TagType.Value">
- <summary>
- Gets and sets the Value property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RunInstancesResponse">
- <summary>
- Run Instances Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesResponse.IsSetRunInstancesResult">
- <summary>
- Checks if RunInstancesResult property is set
- </summary>
- <returns>true if RunInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesResponse.RunInstancesResult">
- <summary>
- Gets and sets the RunInstancesResult property.
- Run Instances Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ResetInstanceAttributeRequest">
- <summary>
- Resets an attribute of an instance to its default
- value.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResetInstanceAttributeRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">ID of the instance on which the attribute will
- be reset.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetInstanceAttributeRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetInstanceAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Name of the attribute to reset. Values are
- "sourceDestCheck", "kernel" and "ramdisk".</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetInstanceAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResetInstanceAttributeRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- ID of the instance on which the attribute will
- be reset.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ResetInstanceAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name of the attribute to reset. Values are
- "sourceDestCheck", "kernel" and "ramdisk".
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ResetImageAttributeRequest">
- <summary>
- Resets an attribute of an AMI to its default
- value.
- Note - The productCodes attribute cannot be reset.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResetImageAttributeRequest.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">ID of the AMI on which the attribute will be
- reset</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetImageAttributeRequest.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetImageAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Specifies the attribute to reset</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetImageAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResetImageAttributeRequest.ImageId">
- <summary>
- Gets and sets the ImageId property.
- ID of the AMI on which the attribute will be
- reset
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ResetImageAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Specifies the attribute to reset
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Reservation">
- <summary>
- Reservation
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.WithReservationId(System.String)">
- <summary>
- Sets the ReservationId property
- </summary>
- <param name="reservationId">Unique ID of the reservation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.IsSetReservationId">
- <summary>
- Checks if ReservationId property is set
- </summary>
- <returns>true if ReservationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.WithOwnerId(System.String)">
- <summary>
- Sets the OwnerId property
- </summary>
- <param name="ownerId">AWS Access Key ID of the user who owns the
- reservation</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.IsSetOwnerId">
- <summary>
- Checks if OwnerId property is set
- </summary>
- <returns>true if OwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.WithRequesterId(System.String)">
- <summary>
- Sets the RequesterId property
- </summary>
- <param name="requesterId">ID of the requester.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.IsSetRequesterId">
- <summary>
- Checks if RequesterId property is set
- </summary>
- <returns>true if RequesterId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.WithGroupName(System.String[])">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="list">Names of the security groups.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.WithRunningInstance(Amazon.EC2.Model.RunningInstance[])">
- <summary>
- Sets the RunningInstance property
- </summary>
- <param name="list">Running instance</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Reservation.IsSetRunningInstance">
- <summary>
- Checks if RunningInstance property is set
- </summary>
- <returns>true if RunningInstance property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Reservation.ReservationId">
- <summary>
- Gets and sets the ReservationId property.
- Unique ID of the reservation.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Reservation.OwnerId">
- <summary>
- Gets and sets the OwnerId property.
- AWS Access Key ID of the user who owns the
- reservation
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Reservation.RequesterId">
- <summary>
- Gets and sets the RequesterId property.
- ID of the requester.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Reservation.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Names of the security groups.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Reservation.RunningInstance">
- <summary>
- Gets and sets the RunningInstance property.
- Running instance
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Region">
- <summary>
- Region
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Region.WithRegionName(System.String)">
- <summary>
- Sets the RegionName property
- </summary>
- <param name="regionName">Name of the region.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Region.IsSetRegionName">
- <summary>
- Checks if RegionName property is set
- </summary>
- <returns>true if RegionName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Region.WithEndpoint(System.String)">
- <summary>
- Sets the Endpoint property
- </summary>
- <param name="endpoint">Region service endpoint.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Region.IsSetEndpoint">
- <summary>
- Checks if Endpoint property is set
- </summary>
- <returns>true if Endpoint property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Region.RegionName">
- <summary>
- Gets and sets the RegionName property.
- Name of the region.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Region.Endpoint">
- <summary>
- Gets and sets the Endpoint property.
- Region service endpoint.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ModifyInstanceAttributeResponse">
- <summary>
- Information returned by a ModifyInstanceAttribute
- request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyInstanceAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyInstanceAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.LaunchPermission">
- <summary>
- Launch Permission
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchPermission.WithUserId(System.String)">
- <summary>
- Sets the UserId property
- </summary>
- <param name="userId">AWS Access Key ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchPermission.IsSetUserId">
- <summary>
- Checks if UserId property is set
- </summary>
- <returns>true if UserId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchPermission.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Name of the group. Currently supports "all."</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.LaunchPermission.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchPermission.UserId">
- <summary>
- Gets and sets the UserId property.
- AWS Access Key ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.LaunchPermission.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the group. Currently supports "all."
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGateway.WithInternetGatewayId(System.String)">
- <summary>
- Sets the InternetGatewayId property
- </summary>
- <param name="internetGatewayId">The ID of the Internet gateway.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGateway.IsSetInternetGatewayId">
- <summary>
- Checks if InternetGatewayId property is set
- </summary>
- <returns>true if InternetGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGateway.WithAttachments(Amazon.EC2.Model.InternetGatewayAttachment[])">
- <summary>
- Sets the Attachments property
- </summary>
- <param name="list">A list of VPCs attached to the Internet gateway. Each VPC's
- information is wrapped in an item element.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGateway.IsSetAttachments">
- <summary>
- Checks if Attachments property is set
- </summary>
- <returns>true if Attachments property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGateway.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the License.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InternetGateway.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InternetGateway.InternetGatewayId">
- <summary>
- Gets and sets the InternetGatewayId property.
- The ID of the Internet gateway.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InternetGateway.Attachments">
- <summary>
- Gets and sets the Attachments property.
- A list of VPCs attached to the Internet gateway. Each VPC's
- information is wrapped in an item element.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InternetGateway.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the License.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceEbsBlockDevice">
- <summary>
- Information about the instance EBS block device.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the Amazon EBS volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">Attachment state of the EBS volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.IsSetStatus">
- <summary>
- Checks if Status property is set
- </summary>
- <returns>true if Status property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.WithAttachTime(System.String)">
- <summary>
- Sets the AttachTime property
- </summary>
- <param name="attachTime">Time the volume was attached.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.IsSetAttachTime">
- <summary>
- Checks if AttachTime property is set
- </summary>
- <returns>true if AttachTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.WithDeleteOnTermination(System.Boolean)">
- <summary>
- Sets the DeleteOnTermination property
- </summary>
- <param name="deleteOnTermination">Whether the volume will be deleted on instance
- termination.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceEbsBlockDevice.IsSetDeleteOnTermination">
- <summary>
- Checks if DeleteOnTermination property is set
- </summary>
- <returns>true if DeleteOnTermination property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceEbsBlockDevice.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the Amazon EBS volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceEbsBlockDevice.Status">
- <summary>
- Gets and sets the Status property.
- Attachment state of the EBS volume.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceEbsBlockDevice.AttachTime">
- <summary>
- Gets and sets the AttachTime property.
- Time the volume was attached.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceEbsBlockDevice.DeleteOnTermination">
- <summary>
- Gets and sets the DeleteOnTermination property.
- Whether the volume will be deleted on instance
- termination.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter">
- <summary>
- Information about the instance block device
- mapping.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.WithDeviceName(System.String)">
- <summary>
- Sets the DeviceName property
- </summary>
- <param name="deviceName">The device name (e.g., /dev/sdh).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.IsSetDeviceName">
- <summary>
- Checks if DeviceName property is set
- </summary>
- <returns>true if DeviceName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.WithVirtualName(System.String)">
- <summary>
- Sets the VirtualName property
- </summary>
- <param name="virtualName">The virtual device name.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.IsSetVirtualName">
- <summary>
- Checks if VirtualName property is set
- </summary>
- <returns>true if VirtualName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.WithEbs(Amazon.EC2.Model.InstanceEbsBlockDeviceParameter)">
- <summary>
- Sets the Ebs property
- </summary>
- <param name="ebs">Specifies parameters used to automatically
- setup Amazon EBS volumes when the instance is launched.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.IsSetEbs">
- <summary>
- Checks if Ebs property is set
- </summary>
- <returns>true if Ebs property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.WithNoDevice(System.String)">
- <summary>
- Sets the NoDevice property
- </summary>
- <param name="noDevice">Specifies the device name (e.g., /dev/sdb) to
- suppress during instance launch.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.IsSetNoDevice">
- <summary>
- Checks if NoDevice property is set
- </summary>
- <returns>true if NoDevice property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.DeviceName">
- <summary>
- Gets and sets the DeviceName property.
- The device name (e.g., /dev/sdh).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.VirtualName">
- <summary>
- Gets and sets the VirtualName property.
- The virtual device name.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.Ebs">
- <summary>
- Gets and sets the Ebs property.
- Specifies parameters used to automatically
- setup Amazon EBS volumes when the instance is launched.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceBlockDeviceMappingParameter.NoDevice">
- <summary>
- Gets and sets the NoDevice property.
- Specifies the device name (e.g., /dev/sdb) to
- suppress during instance launch.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DiskImageVolumeType">
- <summary>
- Details about the size of the image.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageVolumeType.WithSize(System.Decimal)">
- <summary>
- Sets the Size property
- </summary>
- <param name="size">The size, in GB (2^30 bytes), of the Amazon EBS volume that will hold the converted image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageVolumeType.IsSetSize">
- <summary>
- Checks if Size property is set
- </summary>
- <returns>true if Size property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageVolumeType.Size">
- <summary>
- Gets and sets the Size property.
- The size, in GB (2^30 bytes), of the Amazon EBS volume that will hold the converted image.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DiskImageDetailType">
- <summary>
- Details about the format of the image.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDetailType.WithFormat(System.String)">
- <summary>
- Sets the Format property
- </summary>
- <param name="format">File format of the disk image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDetailType.IsSetFormat">
- <summary>
- Checks if Format property is set
- </summary>
- <returns>true if Format property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDetailType.WithBytes(System.Decimal)">
- <summary>
- Sets the Bytes property
- </summary>
- <param name="bytes">Number of bytes in the disk image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDetailType.IsSetBytes">
- <summary>
- Checks if Bytes property is set
- </summary>
- <returns>true if Bytes property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDetailType.WithImportManifestUrl(System.String)">
- <summary>
- Sets the ImportManifestUrl property
- </summary>
- <param name="importManifestUrl">The manifest for the disk image, stored in Amazon S3 and presented here as an Amazon S3 pre-signed URL. For information about
- creating a pre-signed URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the
- Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DiskImageDetailType.IsSetImportManifestUrl">
- <summary>
- Checks if ImportManifestUrl property is set
- </summary>
- <returns>true if ImportManifestUrl property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageDetailType.Format">
- <summary>
- Gets and sets the Format property.
- File format of the disk image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageDetailType.Bytes">
- <summary>
- Gets and sets the Bytes property.
- Number of bytes in the disk image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DiskImageDetailType.ImportManifestUrl">
- <summary>
- Gets and sets the ImportManifestUrl property.
- The manifest for the disk image, stored in Amazon S3 and presented here as an Amazon S3 pre-signed URL. For information about
- creating a pre-signed URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the
- Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest">
- <summary>
- Request to describe historical pricing for Spot
- Instances.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithStartTime(System.String)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">Start date and time of the Spot Instance price
- history data.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetStartTime">
- <summary>
- Checks if StartTime property is set
- </summary>
- <returns>true if StartTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithEndTime(System.String)">
- <summary>
- Sets the EndTime property
- </summary>
- <param name="endTime">End date and time of the Spot Instance price
- history data.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetEndTime">
- <summary>
- Checks if EndTime property is set
- </summary>
- <returns>true if EndTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithInstanceType(System.String[])">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="list">A list of instance types.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithProductDescription(System.String[])">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="list">A list of AMI descriptions</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetProductDescription">
- <summary>
- Checks if ProductDescription property is set
- </summary>
- <returns>true if ProductDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated
- with the specified SpotPriceHistory.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property.
- </summary>
- <param name="availabilityZone">Filters the results by availability zone.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithMaxResults(System.Int32)">
- <summary>
- Sets the MaxResults property.
- </summary>
- <param name="maxResults">Specifies the number of rows to return.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetMaxResults">
- <summary>
- Checks if MaxResults property is set
- </summary>
- <returns>true if MaxResults property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property.
- </summary>
- <param name="nextToken">Specifies the next set of rows to return.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.StartTime">
- <summary>
- Gets and sets the StartTime property.
- Start date and time of the Spot Instance price
- history data.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.EndTime">
- <summary>
- Gets and sets the EndTime property.
- End date and time of the Spot Instance price
- history data.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- A list of instance types.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.ProductDescription">
- <summary>
- Gets and sets the ProductDescription property.
- A list of AMI descriptions
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated
- with the specified SpotPriceHistory.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- Filters the results by availability zone.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.MaxResults">
- <summary>
- Gets and sets the MaxResults property.
- Specifies the number of rows to return.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotPriceHistoryRequest.NextToken">
- <summary>
- Gets and sets the NextToken property.
- Specifies the next set of rows to return.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionRequest">
- <summary>
- Request to describe the data feed for Spot
- Instances.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeRouteTablesResponse">
- <summary>
- The Response for the
- DescribeRouteTables operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesResponse.IsSetDescribeRouteTablesResult">
- <summary>
- Checks if DescribeRouteTablesResult property is set
- </summary>
- <returns>true if DescribeRouteTablesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeRouteTablesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRouteTablesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeRouteTablesResponse.DescribeRouteTablesResult">
- <summary>
- Gets and sets the DescribeRouteTablesResult property.
- DescribeRouteTables Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeNetworkAclsRequest">
- <summary>
- Gives you information about the network ACLs in your VPC.You can filter the results to return information
- only about ACLs that match criteria you specify. For example, you could get information only the ACL
- associated with a particular subnet. The ACL must match at least one of the specified values for it to be
- included in the results.
-
- You can specify multiple filters (e.g., the ACL is associated with a particular subnet and has an egress
- entry that denies traffic to a particular port). The result includes information for a particular ACL only if it
- matches all your filters. If there's no match, no special message is returned; the response is simply empty.
-
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsRequest.WithNetworkAclId(System.String[])">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="list">IDs of the route tables.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsRequest.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeNetworkAclsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeNetworkAclsRequest.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- IDs of the route tables.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeNetworkAclsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeBundleTasksResponse">
- <summary>
- Describe Bundle Tasks Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksResponse.IsSetDescribeBundleTasksResult">
- <summary>
- Checks if DescribeBundleTasksResult property is set
- </summary>
- <returns>true if DescribeBundleTasksResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeBundleTasksResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeBundleTasksResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeBundleTasksResponse.DescribeBundleTasksResult">
- <summary>
- Gets and sets the DescribeBundleTasksResult property.
- Describe Bundle Tasks Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVpnGatewayRequest">
- <summary>
- Deletes a VPN gateway. Use this when you want to delete a VPC and all its
- associated components because you no longer need them. We recommend that before you
- delete a VPN gateway, you detach it from the VPC and delete the VPN
- connection. Note that you don't need to delete the VPN gateway
- if you just want to delete and re-create the VPN connection between your
- VPC and data center.
-
- AWS might delete any VPN gateway if you leave it inactive for an
- extended period of time (inactive means that there's no VPN
- connection in use with the VPN gateway).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnGatewayRequest.WithVpnGatewayId(System.String)">
- <summary>
- Sets the VpnGatewayId property
- </summary>
- <param name="vpnGatewayId">The ID of the VPN gateway you want to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnGatewayRequest.IsSetVpnGatewayId">
- <summary>
- Checks if VpnGatewayId property is set
- </summary>
- <returns>true if VpnGatewayId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVpnGatewayRequest.VpnGatewayId">
- <summary>
- Gets and sets the VpnGatewayId property.
- The ID of the VPN gateway you want to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSpotDatafeedSubscriptionRequest">
- <summary>
- Request to delete the data feed for Spot
- Instances.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeletePlacementGroupRequest">
- <summary>
- Deletes a PlacementGroupfrom a user's account.
- Terminate all Amazon EC2 instances in the placement group before
- deletion.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeletePlacementGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The name of the PlacementGroup to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeletePlacementGroupRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeletePlacementGroupRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- The name of the PlacementGroup to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteKeyPairRequest">
- <summary>
- Deletes the specified key pair, by removing the
- public key from Amazon EC2. You must own the key pair.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteKeyPairRequest.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">Name of the key pair to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteKeyPairRequest.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteKeyPairRequest.KeyName">
- <summary>
- Gets and sets the KeyName property.
- Name of the key pair to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteCustomerGatewayRequest">
- <summary>
- Deletes a customer gateway. You must delete the
- VPN connection before deleting the customer gateway.
-
- AWS might delete any customer gateway if you leave it inactive for an
- extended period of time (inactive means that there's no VPN connection in
- use with the customer gateway).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteCustomerGatewayRequest.WithCustomerGatewayId(System.String)">
- <summary>
- Sets the CustomerGatewayId property
- </summary>
- <param name="customerGatewayId">The ID of the customer gateway you want to
- delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteCustomerGatewayRequest.IsSetCustomerGatewayId">
- <summary>
- Checks if CustomerGatewayId property is set
- </summary>
- <returns>true if CustomerGatewayId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteCustomerGatewayRequest.CustomerGatewayId">
- <summary>
- Gets and sets the CustomerGatewayId property.
- The ID of the customer gateway you want to
- delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeactivateLicenseResponse">
- <summary>
- Deactivates a license.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeactivateLicenseResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeactivateLicenseResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeactivateLicenseResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeactivateLicenseResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpcResult">
- <summary>
- Create Vpc Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcResult.IsSetVpc">
- <summary>
- Checks if Vpc property is set
- </summary>
- <returns>true if Vpc property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpcResult.Vpc">
- <summary>
- Gets and sets the Vpc property.
- VPC
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSubnetResponse">
- <summary>
- Create Subnet Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetResponse.IsSetCreateSubnetResult">
- <summary>
- Checks if CreateSubnetResult property is set
- </summary>
- <returns>true if CreateSubnetResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSubnetResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSubnetResponse.CreateSubnetResult">
- <summary>
- Gets and sets the CreateSubnetResult property.
- Create Subnet Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest">
- <summary>
- Request to create the data feed for Spot
- Instances, enabling you to view Spot Instance
- usage logs. You can create one data feed per account.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest.WithBucket(System.String)">
- <summary>
- Sets the Bucket property
- </summary>
- <param name="bucket">The Amazon S3 bucket in which to store the
- Spot Instance datafeed.
- Constraints: Must be a valid bucket
- assocaited with your account.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest.IsSetBucket">
- <summary>
- Checks if Bucket property is set
- </summary>
- <returns>true if Bucket property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest.WithPrefix(System.String)">
- <summary>
- Sets the Prefix property
- </summary>
- <param name="prefix">Prefix that is prepended to datafeed files.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest.IsSetPrefix">
- <summary>
- Checks if Prefix property is set
- </summary>
- <returns>true if Prefix property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest.Bucket">
- <summary>
- Gets and sets the Bucket property.
- The Amazon S3 bucket in which to store the
- Spot Instance datafeed.
- Constraints: Must be a valid bucket
- assocaited with your account.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSpotDatafeedSubscriptionRequest.Prefix">
- <summary>
- Gets and sets the Prefix property.
- Prefix that is prepended to datafeed files.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateInternetGatewayResponse">
- <summary>
- The Response for the
- CreateInternetGateway operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateInternetGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateInternetGatewayResponse.IsSetCreateInternetGatewayResult">
- <summary>
- Checks if CreateInternetGatewayResult property is set
- </summary>
- <returns>true if CreateInternetGatewayResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateInternetGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateInternetGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateInternetGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateInternetGatewayResponse.CreateInternetGatewayResult">
- <summary>
- Gets and sets the CreateInternetGatewayResult property.
- CreateInternetGateway Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateDhcpOptionsResult">
- <summary>
- Create Dhcp Options Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsResult.IsSetDhcpOptions">
- <summary>
- Checks if DhcpOptions property is set
- </summary>
- <returns>true if DhcpOptions property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateDhcpOptionsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateDhcpOptionsResult.DhcpOptions">
- <summary>
- Gets and sets the DhcpOptions property.
- Dhcp options
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.BundleInstanceResponse">
- <summary>
- Bundle Instance Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceResponse.IsSetBundleInstanceResult">
- <summary>
- Checks if BundleInstanceResult property is set
- </summary>
- <returns>true if BundleInstanceResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.BundleInstanceResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleInstanceResponse.BundleInstanceResult">
- <summary>
- Gets and sets the BundleInstanceResult property.
- Bundle Instance Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.BundleInstanceRequest">
- <summary>
- Bundles the Windows instance. This procedure is not applicable for Linux
- and UNIX instances. For more information, go to the Amazon Elastic Compute
- Cloud Developer Guide or Amazon Elastic Compute Cloud Getting Started Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance to bundle.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceRequest.WithStorage(Amazon.EC2.Model.Storage)">
- <summary>
- Sets the Storage property
- </summary>
- <param name="storage">Storage</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceRequest.IsSetStorage">
- <summary>
- Checks if Storage property is set
- </summary>
- <returns>true if Storage property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.BundleInstanceRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance to bundle.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BundleInstanceRequest.Storage">
- <summary>
- Gets and sets the Storage property.
- Storage
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachVolumeRequest">
- <summary>
- Attaches an Amazon EBS volume to a running
- instance and exposes it as the
- specified device.
-
- Windows instances currently support devices xvda through xvdp. Devices
- xvda and xvdb are reserved by the operating system, xvdc is
- assigned to drive C:\, and, depending on the instance type, devices xvdd through
- xvde might be reserved by the instance stores. Any device that is not
- reserved can be attached to an Amazon EBS volume. For a list of
- devices that are reserved by the instance stores, go to the Amazon
- Elastic Compute Cloud Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeRequest.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the Amazon EBS volume. The volume
- and instance must be within
- the same Availability Zone and the
- instance must be running.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeRequest.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance to which the volume
- attaches. The volume and
- instance must be within the same
- Availability Zone and the instance
- must be running.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeRequest.WithDevice(System.String)">
- <summary>
- Sets the Device property
- </summary>
- <param name="device">Specifies how the device is exposed to the
- instance (e.g., /dev/sdh).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeRequest.IsSetDevice">
- <summary>
- Checks if Device property is set
- </summary>
- <returns>true if Device property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVolumeRequest.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the Amazon EBS volume. The volume
- and instance must be within
- the same Availability Zone and the
- instance must be running.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVolumeRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance to which the volume
- attaches. The volume and
- instance must be within the same
- Availability Zone and the instance
- must be running.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVolumeRequest.Device">
- <summary>
- Gets and sets the Device property.
- Specifies how the device is exposed to the
- instance (e.g., /dev/sdh).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateAddressResult">
- <summary>
- AssociateAddress Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressResult.IsSetAssociationId">
- <summary>
- Checks if AssociationId property is set
- </summary>
- <returns>true if AssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateAddressResult.AssociationId">
- <summary>
- Gets and sets the AssociationId property.
- ID that AWS provides to represent the association of the address
- with an instance. Returned only for VPC elastic IP addresses.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ActivateLicenseResponse">
- <summary>
- Activates a license.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ActivateLicenseResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ActivateLicenseResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ActivateLicenseResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ActivateLicenseResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.ListMetricsResultUnmarshaller">
- <summary>
- ListMetricsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmHistoryResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeAlarmHistory operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.SetAlarmStateRequest">
- <summary>
- Container for the parameters to the SetAlarmState operation.
- <para> Temporarily sets the state of an alarm. When the updated
- <c>StateValue</c> differs from the previous value, the action
- configured for the appropriate state is invoked. This is not a
- permanent change. The next periodic alarm check (in about a minute)
- will set the alarm to its actual state. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.SetAlarmState(Amazon.CloudWatch.Model.SetAlarmStateRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.SetAlarmStateRequest.WithAlarmName(System.String)">
- <summary>
- Sets the AlarmName property
- </summary>
- <param name="alarmName">The value to set for the AlarmName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.SetAlarmStateRequest.WithStateValue(System.String)">
- <summary>
- Sets the StateValue property
- </summary>
- <param name="stateValue">The value to set for the StateValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.SetAlarmStateRequest.WithStateReason(System.String)">
- <summary>
- Sets the StateReason property
- </summary>
- <param name="stateReason">The value to set for the StateReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.SetAlarmStateRequest.WithStateReasonData(System.String)">
- <summary>
- Sets the StateReasonData property
- </summary>
- <param name="stateReasonData">The value to set for the StateReasonData property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.SetAlarmStateRequest.AlarmName">
- <summary>
- The descriptive name for the alarm. This name must be unique within the user's AWS account. The maximum length is 255 characters.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.SetAlarmStateRequest.StateValue">
- <summary>
- The value of the state.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>OK, ALARM, INSUFFICIENT_DATA</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.SetAlarmStateRequest.StateReason">
- <summary>
- The reason that this alarm is set to this specific state (in human-readable text format)
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 1023</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.SetAlarmStateRequest.StateReasonData">
- <summary>
- The reason that this alarm is set to this specific state (in machine-readable JSON format)
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 4000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.ListMetricsResponse">
- <summary>
- Returns information about the ListMetricsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.ListMetricsResponse.ListMetricsResult">
- <summary>
- Gets and sets the ListMetricsResult property.
- The output for the ListMetrics action.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmHistoryResult">
- <summary>
- <para> The output for the DescribeAlarmHistory action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryResult.WithAlarmHistoryItems(Amazon.CloudWatch.Model.AlarmHistoryItem[])">
- <summary>
- Adds elements to the AlarmHistoryItems collection
- </summary>
- <param name="alarmHistoryItems">The values to add to the AlarmHistoryItems collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryResult.WithAlarmHistoryItems(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.AlarmHistoryItem})">
- <summary>
- Adds elements to the AlarmHistoryItems collection
- </summary>
- <param name="alarmHistoryItems">The values to add to the AlarmHistoryItems collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryResult.AlarmHistoryItems">
- <summary>
- A list of alarm histories in JSON format.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryResult.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.SetDistributionConfigResponse">
- <summary>
- The SetDistributionConfigResponse contains the distribution's modified
- information structure along with any other headers returned by
- CloudFront.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetDistributionInfoResponse">
- <summary>
- The GetDistributionInfoResponse contains all the information about the
- GetDistributionInfo operation and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetDistributionInfoResponse.Distribution">
- <summary>
- Gets and sets the Distribution property.
- This contains all the information (including the configuration) for a
- cloudfront distribution.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetDistributionInfoResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Distribution's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetDistributionConfigResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.ListDistributionsRequest">
- <summary>
- The ListDistributionsRequest contains the parameters used for the ListDistributions operation.
- All parameters to this request object are optional.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.ListDistributionsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property for this request.
- All keys returned will be lexiographically after the marker.
- </summary>
- <param name="marker">the value that Marker is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.ListDistributionsRequest.WithMaxItems(System.String)">
- <summary>
- Sets the MaxItems property for this request.
- Limits the result set of keys to MaxItems.
- </summary>
- <param name="maxItems">the value that MaxItems is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListDistributionsRequest.Marker">
- <summary>
- Gets and sets the Marker property.
- All keys returned will be lexiographically after the marker.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListDistributionsRequest.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- Limits the result set of keys to MaxItems.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest">
- <summary>
- The DeleteOriginAccessIdentityRequest contains the parameters used for the DeleteOriginAccessIdentity operation.
- <br />Required Parameters: Id
- <br />Required Parameters: ETag
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The OriginAccessIdentity's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest.WithETag(System.String)">
- <summary>
- Sets the ETag property of this request to the value passed in.
- </summary>
- <param name="etag">The OriginAccessIdentity's etag</param>
- <returns>The request with the ETag property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest.Id">
- <summary>
- Gets and sets the Id property for the OriginAccessIdentity
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.DeleteOriginAccessIdentityRequest.ETag">
- <summary>
- Gets and sets the ETag property for the OriginAccessIdentity
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.StackResourceUnmarshaller">
- <summary>
- StackResource Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ListStackResourcesRequestMarshaller">
- <summary>
- List Stack Resources Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStacksResultUnmarshaller">
- <summary>
- DescribeStacksResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackEventsResultUnmarshaller">
- <summary>
- DescribeStackEventsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.StackEvent">
- <summary>
- <para> The StackEvent data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithStackId(System.String)">
- <summary>
- Sets the StackId property
- </summary>
- <param name="stackId">The value to set for the StackId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithEventId(System.String)">
- <summary>
- Sets the EventId property
- </summary>
- <param name="eventId">The value to set for the EventId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithLogicalResourceId(System.String)">
- <summary>
- Sets the LogicalResourceId property
- </summary>
- <param name="logicalResourceId">The value to set for the LogicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithPhysicalResourceId(System.String)">
- <summary>
- Sets the PhysicalResourceId property
- </summary>
- <param name="physicalResourceId">The value to set for the PhysicalResourceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithResourceType(System.String)">
- <summary>
- Sets the ResourceType property
- </summary>
- <param name="resourceType">The value to set for the ResourceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithTimestamp(System.DateTime)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The value to set for the Timestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithResourceStatus(System.String)">
- <summary>
- Sets the ResourceStatus property
- </summary>
- <param name="resourceStatus">The value to set for the ResourceStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithResourceStatusReason(System.String)">
- <summary>
- Sets the ResourceStatusReason property
- </summary>
- <param name="resourceStatusReason">The value to set for the ResourceStatusReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.StackEvent.WithResourceProperties(System.String)">
- <summary>
- Sets the ResourceProperties property
- </summary>
- <param name="resourceProperties">The value to set for the ResourceProperties property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.StackId">
- <summary>
- The unique ID name of the instance of the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.EventId">
- <summary>
- The unique ID of this event.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.StackName">
- <summary>
- The name associated with a stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.LogicalResourceId">
- <summary>
- The logical name of the resource specified in the template.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.PhysicalResourceId">
- <summary>
- The name or unique identifier associated with the physical instance of the resource.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceType">
- <summary>
- Type of the resource. (For more information, go to the <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS
- CloudFormation User Guide</a>.)
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.Timestamp">
- <summary>
- Time the status was updated.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceStatus">
- <summary>
- Current status of the resource.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceStatusReason">
- <summary>
- Success/failure message associated with the resource.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.StackEvent.ResourceProperties">
- <summary>
- BLOB of the properties used to create the resource.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ListStackResourcesRequest">
- <summary>
- Container for the parameters to the ListStackResources operation.
- <para> Returns descriptions for all resources of the specified stack. </para> <para>For deleted stacks, ListStackResources returns resource
- information for up to 90 days after the stack has been deleted. </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.ListStackResources(Amazon.CloudFormation.Model.ListStackResourcesRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStackResourcesRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStackResourcesRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ListStackResourcesRequest.StackName">
- <summary>
- The name or the unique identifier associated with the stack. Default: There is no default value.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ListStackResourcesRequest.NextToken">
- <summary>
- String that identifies the start of the next list of events, if there is one.<br></br> Default: There is no default value.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.GetTemplateResult">
- <summary>
- <para> The output for GetTemplate action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.GetTemplateResult.WithTemplateBody(System.String)">
- <summary>
- Sets the TemplateBody property
- </summary>
- <param name="templateBody">The value to set for the TemplateBody property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.GetTemplateResult.TemplateBody">
- <summary>
- Structure containing the template body. (For more information, go to the <a
- href="http://docs.amazonwebservices.com/AmazonCloudFormation/latest/UserGuide/">AWS CloudFormation User Guide</a>.)
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStacksResponse">
- <summary>
- Returns information about the DescribeStacksResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStacksResponse.DescribeStacksResult">
- <summary>
- Gets and sets the DescribeStacksResult property.
- The output for a DescribeStacks action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.CreateStackResult">
- <summary>
- <para> The output for a CreateStack action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackResult.WithStackId(System.String)">
- <summary>
- Sets the StackId property
- </summary>
- <param name="stackId">The value to set for the StackId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackResult.StackId">
- <summary>
- Unique identifier of the stack.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.PutNotificationConfigurationRequestMarshaller">
- <summary>
- Put Notification Configuration Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribePoliciesRequestMarshaller">
- <summary>
- Describe Policies Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingInstancesResultUnmarshaller">
- <summary>
- DescribeAutoScalingInstancesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingInstancesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeAutoScalingInstances operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest">
- <summary>
- Container for the parameters to the EnableMetricsCollection operation.
- <para> Enables monitoring of group metrics for the Auto Scaling group specified in AutoScalingGroupName. You can specify the list of enabled
- metrics with the Metrics parameter. </para> <para> Auto scaling metrics collection can be turned on only if the
- <c>InstanceMonitoring.Enabled</c> flag, in the Auto Scaling group's launch configuration, is set to <c>true</c> .
- </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.EnableMetricsCollection(Amazon.AutoScaling.Model.EnableMetricsCollectionRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest.WithMetrics(System.String[])">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest.WithMetrics(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest.WithGranularity(System.String)">
- <summary>
- Sets the Granularity property
- </summary>
- <param name="granularity">The value to set for the Granularity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest.AutoScalingGroupName">
- <summary>
- The name or ARN of the Auto Scaling Group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest.Metrics">
- <summary>
- The list of metrics to collect. If no metrics are specified, all metrics are enabled. The following metrics are supported: <ul>
- <li>GroupMinSize</li> <li>GroupMaxSize</li> <li>GroupDesiredCapacity</li> <li>GroupInServiceInstances</li> <li>GroupPendingInstances</li>
- <li>GroupTerminatingInstances</li> <li>GroupTotalInstances</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.EnableMetricsCollectionRequest.Granularity">
- <summary>
- The granularity to associate with the metrics to collect. Currently, the only legal granularity is "1Minute".
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest">
- <summary>
- Container for the parameters to the DescribeScheduledActions operation.
- <para> Lists all the actions scheduled for your Auto Scaling group that haven't been executed. To see a list of action already executed, see
- the activity record returned in DescribeScalingActivities. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeScheduledActions(Amazon.AutoScaling.Model.DescribeScheduledActionsRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.WithScheduledActionNames(System.String[])">
- <summary>
- Adds elements to the ScheduledActionNames collection
- </summary>
- <param name="scheduledActionNames">The values to add to the ScheduledActionNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.WithScheduledActionNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ScheduledActionNames collection
- </summary>
- <param name="scheduledActionNames">The values to add to the ScheduledActionNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.WithStartTime(System.DateTime)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The value to set for the StartTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.WithEndTime(System.DateTime)">
- <summary>
- Sets the EndTime property
- </summary>
- <param name="endTime">The value to set for the EndTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.ScheduledActionNames">
- <summary>
- A list of scheduled actions to be described. If this list is omitted, all scheduled actions are described. The list of requested scheduled
- actions cannot contain more than 50 items. If an auto scaling group name is provided, the results are limited to that group. If unknown
- scheduled actions are requested, they are ignored with no error.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.StartTime">
- <summary>
- The earliest scheduled start time to return. If scheduled action names are provided, this field will be ignored.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.EndTime">
- <summary>
- The latest scheduled start time to return. If scheduled action names are provided, this field will be ignored.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScheduledActionsRequest.MaxRecords">
- <summary>
- The maximum number of scheduled actions to return.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 50</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest">
- <summary>
- Container for the parameters to the DescribeScalingActivities operation.
- <para> Returns the scaling activities for the specified Auto Scaling group. </para> <para> If the specified <i>ActivityIds</i> list is
- empty, all the activities from the past six weeks are returned. Activities are sorted by completion time. Activities still in progress
- appear first on the list. </para> <para> This action supports pagination. If the response includes a token, there are more records
- available. To get the additional records, repeat the request with the response token as the NextToken parameter. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeScalingActivities(Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.WithActivityIds(System.String[])">
- <summary>
- Adds elements to the ActivityIds collection
- </summary>
- <param name="activityIds">The values to add to the ActivityIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.WithActivityIds(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ActivityIds collection
- </summary>
- <param name="activityIds">The values to add to the ActivityIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.ActivityIds">
- <summary>
- A list containing the activity IDs of the desired scaling activities. If this list is omitted, all activities are described. If an
- AutoScalingGroupName is provided, the results are limited to that group. The list of requested activities cannot contain more than 50 items.
- If unknown activities are requested, they are ignored with no error.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.AutoScalingGroupName">
- <summary>
- The name of the <a>AutoScalingGroup</a>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.MaxRecords">
- <summary>
- The maximum number of scaling activities to return.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 50</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingActivitiesRequest.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results for pagination.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.AlreadyExistsException">
- <summary>
- AmazonAutoScaling exception
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new AlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.SQS.Model.CreateQueueResult">
- <summary>
- Information returned by the CreateQueueRequest, including queue URL.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueResult.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.CreateQueueResult.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="T:Amazon.SQS.AmazonSQSClient">
- <summary>
- AmazonSQSClient is an implementation of AmazonSQS;
- the client allows you to manage your AmazonSQS resources.<br />
- If you want to use the AmazonSQSClient from a Medium Trust
- hosting environment, please create the client with an
- AmazonSQSConfig object whose UseSecureStringForAwsSecretKey
- property is false.
- </summary>
- <remarks>
- Amazon Simple Queue Service (Amazon SQS) offers a reliable, highly scalable hosted queue for storing
- messages as they travel between computers. By using Amazon SQS, developers can simply move data between
- distributed application components performing different tasks, without losing messages or requiring each
- component to be always available. Amazon SQS works by exposing Amazon's web-scale messaging infrastructure
- as a web service. Any computer on the Internet can add or read messages without any installed software or
- special firewall configurations. Components of applications using Amazon SQS can run independently, and do
- not need to be on the same network, developed with the same technologies, or running at the same time.
- </remarks>
- <seealso cref="P:Amazon.SQS.AmazonSQSConfig.UseSecureStringForAwsSecretKey"/>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.Dispose(System.Boolean)">
- <summary>
- Implements the Dispose pattern for the AmazonSQSClient
- </summary>
- <param name="fDisposing">Whether this object is being disposed via a call to Dispose
- or garbage collected.</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.Finalize">
- <summary>
- The destructor for the client class.
- </summary>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonSQSClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.#ctor(System.String,System.String,Amazon.SQS.AmazonSQSConfig)">
- <summary>
- Constructs AmazonSQSClient with AWS Access Key ID, AWS Secret Key and an
- AmazonSQS Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="config">The AmazonSQS Configuration Object</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.#ctor(System.String,System.Security.SecureString,Amazon.SQS.AmazonSQSConfig)">
- <summary>
- Constructs an AmazonSQSClient with AWS Access Key ID, AWS Secret Key and an
- AmazonSQS Configuration object
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key as a SecureString</param>
- <param name="config">The AmazonSQS Configuration Object</param>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.CreateQueue(Amazon.SQS.Model.CreateQueueRequest)">
- <summary>
- Create Queue
- </summary>
- <param name="request">Create Queue request</param>
- <returns>Create Queue Response from the service</returns>
- <remarks>
- The CreateQueue action creates a new queue, or returns the URL of an existing one.
- When you request CreateQueue, you provide a name for the queue. To successfully create
- a new queue, you must provide a name that is unique within the scope of your own queues.
- If you provide the name of an existing queue, a new queue isn't created and an error
- isn't returned. Instead, the request succeeds and the queue URL for the existing queue is
- returned. Exception: if you provide a value for DefaultVisibilityTimeout that is different
- from the value for the existing queue, you receive an error.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ListQueues(Amazon.SQS.Model.ListQueuesRequest)">
- <summary>
- List Queues
- </summary>
- <param name="request">List Queues request</param>
- <returns>List Queues Response from the service</returns>
- <remarks>
- The ListQueues action returns a list of your queues.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.AddPermission(Amazon.SQS.Model.AddPermissionRequest)">
- <summary>
- Add Permission
- </summary>
- <param name="request">Add Permission request</param>
- <returns>Add Permission Response from the service</returns>
- <remarks>
- Adds the specified permission(s) to a queue for the specified principal(s). This allows for sharing access to the queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ChangeMessageVisibility(Amazon.SQS.Model.ChangeMessageVisibilityRequest)">
- <summary>
- Change Message Visibility
- </summary>
- <param name="request">Change Message Visibility request</param>
- <returns>Change Message Visibility Response from the service</returns>
- <remarks>
- The ChangeMessageVisibility action extends the read lock timeout of the specified message from the specified queue to the specified value.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.DeleteMessage(Amazon.SQS.Model.DeleteMessageRequest)">
- <summary>
- Delete Message
- </summary>
- <param name="request">Delete Message request</param>
- <returns>Delete Message Response from the service</returns>
- <remarks>
- The DeleteMessage action unconditionally removes the specified message from the specified queue. Even if the message is locked by another reader due to the visibility timeout setting, it is still deleted from the queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.DeleteQueue(Amazon.SQS.Model.DeleteQueueRequest)">
- <summary>
- Delete Queue
- </summary>
- <param name="request">Delete Queue request</param>
- <returns>Delete Queue Response from the service</returns>
- <remarks>
- This action unconditionally deletes the queue specified by the queue URL. Use this operation WITH CARE! The queue is deleted even if it is NOT empty.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.GetQueueAttributes(Amazon.SQS.Model.GetQueueAttributesRequest)">
- <summary>
- Get Queue Attributes
- </summary>
- <param name="request">Get Queue Attributes request</param>
- <returns>Get Queue Attributes Response from the service</returns>
- <remarks>
- Gets one or all attributes of a queue. Queues currently have two attributes you can get: ApproximateNumberOfMessages and VisibilityTimeout.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.RemovePermission(Amazon.SQS.Model.RemovePermissionRequest)">
- <summary>
- Remove Permission
- </summary>
- <param name="request">Remove Permission request</param>
- <returns>Remove Permission Response from the service</returns>
- <remarks>
- Removes the permission with the specified statement id from the queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ReceiveMessage(Amazon.SQS.Model.ReceiveMessageRequest)">
- <summary>
- Receive Message
- </summary>
- <param name="request">Receive Message request</param>
- <returns>Receive Message Response from the service</returns>
- <remarks>
- Retrieves one or more messages from the specified queue. For each message returned, the response includes
- the message body; MD5 digest of the message body; receipt handle, which is the identifier you must provide
- when deleting the message; and message ID of each message. Messages returned by this action stay in the queue
- until you delete them. However, once a message is returned to a ReceiveMessage request, it is not returned
- on subsequent ReceiveMessage requests for the duration of the VisibilityTimeout. If you do not specify a
- VisibilityTimeout in the request, the overall visibility timeout for the queue is used for the returned messages.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.SendMessage(Amazon.SQS.Model.SendMessageRequest)">
- <summary>
- Send Message
- </summary>
- <param name="request">Send Message request</param>
- <returns>Send Message Response from the service</returns>
- <remarks>
- The SendMessage action delivers a message to the specified queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.SetQueueAttributes(Amazon.SQS.Model.SetQueueAttributesRequest)">
- <summary>
- Set Queue Attributes
- </summary>
- <param name="request">Set Queue Attributes request</param>
- <returns>Set Queue Attributes Response from the service</returns>
- <remarks>
- Sets an attribute of a queue. Currently, you can set only the VisibilityTimeout attribute for a queue.
- </remarks>
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConfigureWebRequest(System.Int32,System.String,Amazon.SQS.AmazonSQSConfig)">
- Configure HttpClient with set of defaults as well as configuration
- from AmazonSQSConfig instance
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.Invoke``1(System.Collections.Generic.IDictionary{System.String,System.String})">
- Invoke request and return response
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ReportAnyErrors(System.String,System.Net.HttpStatusCode)">
- Look for additional error strings in the response and return formatted exception
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.PauseOnRetry(System.Int32,System.Int32,System.Net.HttpStatusCode)">
- Exponential sleep on failed request
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.AddRequiredParameters(System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
- Add authentication related and version parameters
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertCreateQueue(Amazon.SQS.Model.CreateQueueRequest)">
- Convert CreateQueueRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertListQueues(Amazon.SQS.Model.ListQueuesRequest)">
- Convert ListQueuesRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertChangeMessageVisibility(Amazon.SQS.Model.ChangeMessageVisibilityRequest)">
- Convert ChangeMessageVisibilityRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertDeleteMessage(Amazon.SQS.Model.DeleteMessageRequest)">
- Convert DeleteMessageRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertDeleteQueue(Amazon.SQS.Model.DeleteQueueRequest)">
- Convert DeleteQueueRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertGetQueueAttributes(Amazon.SQS.Model.GetQueueAttributesRequest)">
- Convert GetQueueAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertReceiveMessage(Amazon.SQS.Model.ReceiveMessageRequest)">
- Convert ReceiveMessageRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertSendMessage(Amazon.SQS.Model.SendMessageRequest)">
- Convert SendMessageRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertSetQueueAttributes(Amazon.SQS.Model.SetQueueAttributesRequest)">
- Convert SetQueueAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertAddPermission(Amazon.SQS.Model.AddPermissionRequest)">
- Convert AddPermissionRequest to name value pairs
- </member>
- <member name="M:Amazon.SQS.AmazonSQSClient.ConvertRemovePermission(Amazon.SQS.Model.RemovePermissionRequest)">
- Convert RemovePermissionRequest to name value pairs
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResponse">
- <summary>
- Encapsulates the metadata and result of the ListSubscriptionsByTopic action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResponse.IsSetListSubscriptionsByTopicResult">
- <summary>
- Checks if ListSubscriptionsByTopicResult property is set
- </summary>
- <returns>true if ListSubscriptionsByTopicResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResponse.ListSubscriptionsByTopicResult">
- <summary>
- Gets and sets the ListSubscriptionsByTopicResult property.
- Encapsulates the result of the ListSubscriptionsByTopic action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest">
- <summary>
- The ListSubscriptionsByTopic action returns a list of the subscriptions to a specific topic. Each call returns
- a limited list of subscriptions. If there are more subscriptions, a NextToken is also returned. Use the NextToken
- parameter in a new ListSubscriptionsByTopic call to get further results.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The ARN of the topic for which you wish to find subscriptions.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">Token returned by the previous ListSubscriptionsByTopic request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The ARN of the topic for which you wish to find subscriptions.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest.NextToken">
- <summary>
- Gets and sets the NextToken property.
- Token returned by the previous ListSubscriptionsByTopic request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ErrorResponse">
- <summary>
- Returns any errors in the request.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ErrorResponse.IsSetError">
- <summary>
- Checks if Error property is set
- </summary>
- <returns>true if Error property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ErrorResponse.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ErrorResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ErrorResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ErrorResponse.Error">
- <summary>
- Gets and sets the Error property.
- Error associated with the request.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ErrorResponse.RequestId">
- <summary>
- Gets and sets the RequestId property.
- The ID associated with the request. Be sure to reference this ID when contacting AWS support.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.CreateTopicResult">
- <summary>
- Encapsulates the result of the CreateTopic action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicResult.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.CreateTopicResult.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The Amazon Resource Name (ARN) assigned to the created topic.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResult">
- <summary>
- Encapsulates the result of the ConfirmSubscription action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResult.IsSetSubscriptionArn">
- <summary>
- Checks if SubscriptionArn property is set
- </summary>
- <returns>true if SubscriptionArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ConfirmSubscriptionResult.SubscriptionArn">
- <summary>
- Gets and sets the SubscriptionArn property.
- The ARN of the created subscription.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException">
- <summary>
- Amazon Simple Notification Service Exception provides details of errors
- returned by Amazon Simple Notification Service service
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.#ctor">
- <summary>
- Initializes a new AmazonSimpleNotificationServiceException with default values.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.#ctor(System.String)">
- <summary>
- Initializes a new AmazonSimpleNotificationServiceException with a specified
- error message
- </summary>
- <param name="message">A message that describes the error</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.#ctor(System.String,System.Net.HttpStatusCode)">
- <summary>
- Initializes a new AmazonSimpleNotificationServiceException with a specified error message
- and HTTP status code
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.#ctor(System.Exception)">
- <summary>
- Initializes a new AmazonSimpleNotificationServiceException from the inner exception that is
- the cause of this exception.
- </summary>
- <param name="innerException">The nested exception that caused the AmazonSimpleNotificationServiceException</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new AmazonSimpleNotificationServiceException with serialized data.
- </summary>
- <param name="info">The object that holds the serialized object data.
- </param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Serializes this instance of AmazonSimpleNotificationServiceException.
- </summary>
- <param name="info">The object that holds the serialized object data.</param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.#ctor(System.String,System.Exception)">
- <summary>
- Constructs AmazonSimpleNotificationServiceException with message and wrapped exception
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="innerException">The nested exception that caused the AmazonS3Exception</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.#ctor(System.String,System.Net.HttpStatusCode,System.String,System.String,System.String,System.String)">
- <summary>
- Initializes an AmazonSimpleNotificationServiceException with error information provided in an
- AmazonSimpleNotificationService response.
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="errorCode">Error Code returned by the service</param>
- <param name="errorType">Error type. Possible types: Sender, Receiver or Unknown</param>
- <param name="requestId">Request ID returned by the service</param>
- <param name="xml">Compete xml found in response</param>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.ErrorCode">
- <summary>
- Gets and sets of the ErrorCode property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.ErrorType">
- <summary>
- Gets and sets of the ErrorType property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.Message">
- <summary>
- Gets error message
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.StatusCode">
- <summary>
- Gets status code returned by the service if available. If status
- code is set to -1, it means that status code was unavailable at the
- time exception was thrown
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.XML">
- <summary>
- Gets XML returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceException.RequestId">
- <summary>
- Gets Request ID returned by the service if available.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.SendRawEmailResponse">
- <summary>
- Returns information about the SendRawEmailResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendRawEmailResponse.SendRawEmailResult">
- <summary>
- Gets and sets the SendRawEmailResult property.
- Represents a unique message ID returned from a successful SendRawEmail request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.GetSendStatisticsResult">
- <summary>
- <para>Represents a list of <c>SendDataPoint</c> items returned from a
- successful <c>GetSendStatistics</c> request. This list contains
- aggregated data from the previous two weeks of sending
- activity.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.GetSendStatisticsResult.WithSendDataPoints(Amazon.SimpleEmail.Model.SendDataPoint[])">
- <summary>
- Adds elements to the SendDataPoints collection
- </summary>
- <param name="sendDataPoints">The values to add to the SendDataPoints collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.GetSendStatisticsResult.WithSendDataPoints(System.Collections.Generic.IEnumerable{Amazon.SimpleEmail.Model.SendDataPoint})">
- <summary>
- Adds elements to the SendDataPoints collection
- </summary>
- <param name="sendDataPoints">The values to add to the SendDataPoints collection </param>
- <returns>this instance</returns>
- </member>
- <member name="T:Amazon.SimpleDB.Model.UpdateCondition">
- <summary>
- Describes the condition used to perform a conditional PutAttributes
- or conditional DeleteAttributes.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.UpdateCondition.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The name of the attribute used for the conditional check.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.UpdateCondition.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.UpdateCondition.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value of the attribute used for the conditional check.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.UpdateCondition.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.UpdateCondition.WithExists(System.Boolean)">
- <summary>
- Sets the Exists property
- </summary>
- <param name="exists">Check for the existence of the attribute used for the conditional check.
- If this field is unspecified or true, UpdateCondition.Value must be set to a value.
- If this field is false, UpdateCondition.Value should not have a value assigned to it.
- If no value is associated with this field, SimpleDB uses a default value of 'true'</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.UpdateCondition.IsSetExists">
- <summary>
- Checks if Exists property is set
- </summary>
- <returns>true if Exists property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.UpdateCondition.Name">
- <summary>
- Gets and sets the Name property.
- The name of the attribute used for the conditional check.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.UpdateCondition.Value">
- <summary>
- Gets and sets the Value property.
- The value of the attribute used for the conditional check.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.UpdateCondition.Exists">
- <summary>
- Gets and sets the Exists property.
- Check for the existence of the attribute used for the conditional check.
- If this field is unspecified or true, UpdateCondition.Value must be set to a value.
- If this field is false, UpdateCondition.Value should not have a value assigned to it.
- If no value is associated with this field, SimpleDB uses a default value of 'true'
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.Item">
- <summary>
- Items represent individual objects that contain one or more attribute name-value pairs.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Item.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The name of the item.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Item.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Item.WithNameEncoding(System.String)">
- <summary>
- Sets the NameEncoding property
- </summary>
- <param name="nameEncoding">The encoding for the item's name. For example: base64</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Item.IsSetNameEncoding">
- <summary>
- Checks if NameEncoding property is set
- </summary>
- <returns>true if NameEncoding property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Item.WithAttribute(Amazon.SimpleDB.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Attribute associated with an Item.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.Item.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Item.Name">
- <summary>
- Gets and sets the Name property.
- The name of the item.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Item.NameEncoding">
- <summary>
- Gets and sets the NameEncoding property.
- The encoding for the item's name. For example: base64
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.Item.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Attribute associated with an Item.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.BatchDeleteAttributesResponse">
- <summary>
- Returns metadata about the response, including box usage and request ID.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchDeleteAttributesResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchDeleteAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchDeleteAttributesResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.BatchDeleteAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Object">
- <summary>
- Represents an S3 Object. Contains all attributes that an S3 Object has.
-
- For more information about S3 Objects refer:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/UsingObjects.html"/>
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Object.ToString">
- <summary>
- Returns a System.String that represents the S3Object.
- </summary>
- <returns>A System.String representation of the S3Object.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Object.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Object.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Object.IsSetLastModified">
- <summary>
- Checks if LastModified property is set.
- </summary>
- <returns>true if LastModified property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Object.IsSetETag">
- <summary>
- Checks if ETag property is set.
- </summary>
- <returns>true if ETag property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Object.IsSetOwner">
- <summary>
- Checks if Owner property is set.
- </summary>
- <returns>true if Owner property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Object.IsSetStorageClass">
- <summary>
- Checks if StorageClass property is set.
- </summary>
- <returns>true if StorageClass property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3Object.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Object.BucketName">
- <summary>
- Gets and sets the BucketName property.
- This is the name of the S3 Bucket in which the
- key is stored.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Object.LastModified">
- <summary>
- Gets and sets the LastModified property.
- Date retrieved from S3 is in ISO8601 format.
- GMT formatted date is passed back to the user.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Object.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Object.Size">
- <summary>
- Gets and sets the Size property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Object.Owner">
- <summary>
- Gets and sets the Owner property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Object.StorageClass">
- <summary>
- Gets and sets the StorageClass property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PutObjectResponse">
- <summary>
- The PutObjectResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectResponse.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the version-id of the S3 object
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutObjectResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PutBucketRequest">
- <summary>
- The PutBucketRequest contains the parameters used for the PutBucket operation.
- The BucketRegion parameter is used if you wish to specify the bucket locality.
- <br />Required Parameters: BucketName
- <br />Optional Parameters: BucketRegion, Default - S3Region.US
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket that will be created by this request.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketRequest.WithBucketRegion(Amazon.S3.Model.S3Region)">
- <summary>
- Sets the BucketRegion property for this request.
- When set, this will determine where your data will
- reside in S3. Refer <see cref="T:Amazon.S3.Model.S3Region"/>
- for a list of possible values.
- </summary>
- <param name="bucketRegion">The value that BucketRegion is set to</param>
- <returns>the request with the BucketRegion set</returns>
- </member>
- <member name="M:Amazon.S3.Model.PutBucketRequest.WithBucketRegionName(System.String)">
- <summary>
- Alternative to setting bucket region by using the region's name.
- When set, this will determine where your data will
- reside in S3.
- Valid values: us-east-1, us-west-1, eu-west-1, ap-southeast-1, ap-northeast-1
- </summary>
- <param name="bucketRegionName">The value that BucketRegionName is set to</param>
- <returns>the request with the BucketRegionName set</returns>
- </member>
- <member name="P:Amazon.S3.Model.PutBucketRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutBucketRequest.BucketRegion">
- <summary>
- Gets and sets the BucketRegion property.
- Refer <see cref="T:Amazon.S3.Model.S3Region"/>
- for a list of possible values.
- Default: S3Region.US
- <see cref="T:Amazon.S3.Model.S3Region" />
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PutBucketRequest.BucketRegionName">
- <summary>
- Alternative to setting bucket region by using the region's name.
- When set, this will determine where your data will
- reside in S3.
- Valid values: us-east-1, us-west-1, eu-west-1, ap-southeast-1, ap-northeast-1
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Grantee">
- <summary>
- A S3Grantee represents an Owner/User/Group that can be given permissions
- on a bucket or object.
-
- For more information about Grantees or ACLs see:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/index.html?RESTAuthentication.html"/>
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.ToString">
- <summary>
- Returns a System.String that represents the Grantee Object.
- </summary>
- <returns>A System.String representation of the Grantee Object.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.Equals(System.Object)">
- <summary>
- Determines whether two Tuple objects have the same value.
- </summary>
- <param name="obj"></param>
- <returns>true if obj is a String and its value is the same as this instance; otherwise, false.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.GetHashCode">
- <summary>
- Serves as a hash function for a particular type.
- </summary>
- <returns>A hash code for the current S3Grantee</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.Equals(Amazon.S3.Model.S3Grantee)">
- <summary>
- Determines whether is specified Grantee is equal to the current Grantee.
- </summary>
- <param name="grantee">The specified Grantee</param>
- <returns>true if the Grantees are equal, false otherwise</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.WithCanonicalUser(System.String,System.String)">
- <summary>
- Sets the CanonicalUser property.
- </summary>
- <param name="displayName">DisplayName of Canonical User</param>
- <param name="id">ID of Canonical User</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.IsSetCanonicalUser">
- <summary>
- Checks if the CanonicalUser property is set.
- </summary>
- <returns>true if the CanonicalUser property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.WithEmailAddress(System.String)">
- <summary>
- Sets the EmailAddress property.
- </summary>
- <param name="emailAddress">EmailAddress property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.IsSetEmailAddress">
- <summary>
- Checks if EmailAddress property is set.
- </summary>
- <returns>true if EmailAddress property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.WithURI(System.String)">
- <summary>
- Sets the URI property.
- </summary>
- <param name="uri">URI property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3Grantee.IsSetURI">
- <summary>
- Checks if URI property is set.
- </summary>
- <returns>true if URI property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3Grantee.CanonicalUser">
- <summary>
- Gets and Sets the CanonicalUser property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Grantee.EmailAddress">
- <summary>
- Gets and sets the EmailAddress property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Grantee.URI">
- <summary>
- Gets and sets the URI property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DeleteBucketRequest">
- <summary>
- The DeleteBucketRequest contains the parameters used for the DeleteBucket operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.DeleteBucketRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket that you want to delete.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteBucketRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.DeleteBucketRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3ObjectVersion">
- <summary>
- Represents an S3 Bucket Object Version. An S3 Object version is an S3 object
- that also has a VersionId, whether this is the Latest version of the object
- and if its a DeleteMarker or not.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3ObjectVersion.ToString">
- <summary>
- Returns a System.String that represents the S3Object.
- </summary>
- <returns>A System.String representation of the S3Object.</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3ObjectVersion.VersionId">
- <summary>
- Gets and sets the VersionId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3ObjectVersion.IsLatest">
- <summary>
- Gets and Sets the IsLatest property.
- Specifies whether the object is (true) or
- is not (false) the latest version of an object.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3ObjectVersion.IsDeleteMarker">
- <summary>
- Gets and Sets the IsDeleteMarker property.
- Specifies whether the object is (true) or
- is not (false) the latest version of an object.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetNotificationConfigurationRequest">
- <summary>
- The GetNotificationConfigurationRequest contains the parameters used for the GetNotificationConfiguration operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetNotificationConfigurationRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket the request will get the location for.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetNotificationConfigurationRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetNotificationConfigurationRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.Auth.AWS3Signer.Sign``1(Amazon.Runtime.Internal.IRequest{``0},Amazon.Runtime.ClientConfig,System.String,System.String,System.Security.SecureString)">
- <summary>
- Signs the specified request with the AWS3 signing protocol by using the
- AWS account credentials given in the method parameters.
- </summary>
- <param name="awsAccessKeyId">The AWS public key</param>
- <param name="awsSecretAccessKey">The AWS secret key used to sign the request in clear text</param>
- <param name="clientConfig">The configuration that specifies which hashing algorithm to use</param>
- <param name="request">The request to have the signature compute for</param>
- <param name="secureKey">The AWS secret key stored in a secure string</param>
- <exception cref="T:Amazon.Runtime.SignatureException">If any problems are encountered while signing the request</exception>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RestoreDBInstanceToPointInTimeResultUnmarshaller">
- <summary>
- Result Unmarshaller for RestoreDBInstanceToPointInTime operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RestoreDBInstanceToPointInTimeResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RestoreDBInstanceToPointInTime operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RestoreDBInstanceFromDBSnapshotRequestMarshaller">
- <summary>
- Restore D B Instance From D B Snapshot Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.OrderableDBInstanceOptionUnmarshaller">
- <summary>
- OrderableDBInstanceOption Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBSnapshotsResultUnmarshaller">
- <summary>
- DescribeDBSnapshotsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBParametersResultUnmarshaller">
- <summary>
- DescribeDBParametersResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBInstanceRequestMarshaller">
- <summary>
- Delete D B Instance Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DBSecurityGroupUnmarshaller">
- <summary>
- DBSecurityGroup Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.AuthorizeDBSecurityGroupIngressResultUnmarshaller">
- <summary>
- Result Unmarshaller for AuthorizeDBSecurityGroupIngress operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.InvalidDBParameterGroupStateException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.InvalidDBParameterGroupStateException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidDBParameterGroupStateException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.EC2SecurityGroup">
- <summary>
- <para> This data type is used as a response element in the following actions: </para>
- <ul>
- <li> AuthorizeDBSecurityGroupIngress </li>
- <li> DescribeDBSecurityGroups </li>
- <li> RevokeDBSecurityGroupIngress </li>
-
- </ul>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.EC2SecurityGroup.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.EC2SecurityGroup.WithEC2SecurityGroupName(System.String)">
- <summary>
- Sets the EC2SecurityGroupName property
- </summary>
- <param name="eC2SecurityGroupName">The value to set for the EC2SecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.EC2SecurityGroup.WithEC2SecurityGroupOwnerId(System.String)">
- <summary>
- Sets the EC2SecurityGroupOwnerId property
- </summary>
- <param name="eC2SecurityGroupOwnerId">The value to set for the EC2SecurityGroupOwnerId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.EC2SecurityGroup.Status">
- <summary>
- Provides the status of the EC2 security group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.EC2SecurityGroup.EC2SecurityGroupName">
- <summary>
- Specifies the name of the EC2 Security Group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.EC2SecurityGroup.EC2SecurityGroupOwnerId">
- <summary>
- Specifies the AWS ID of the owner of the EC2 security group specified in the <c>EC2SecurityGroupName</c> field.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeOrderableDBInstanceOptions action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResult.WithOrderableDBInstanceOptions(Amazon.RDS.Model.OrderableDBInstanceOption[])">
- <summary>
- Adds elements to the OrderableDBInstanceOptions collection
- </summary>
- <param name="orderableDBInstanceOptions">The values to add to the OrderableDBInstanceOptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResult.WithOrderableDBInstanceOptions(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.OrderableDBInstanceOption})">
- <summary>
- Adds elements to the OrderableDBInstanceOptions collection
- </summary>
- <param name="orderableDBInstanceOptions">The values to add to the OrderableDBInstanceOptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResult.OrderableDBInstanceOptions">
- <summary>
- An <a>OrderableDBInstanceOption</a> structure containing information about orderable options for the DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeOrderableDBInstanceOptionsResult.Marker">
- <summary>
- A marker that can be used to retrieve paginated results.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBSecurityGroupsResponse">
- <summary>
- Returns information about the DescribeDBSecurityGroupsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSecurityGroupsResponse.DescribeDBSecurityGroupsResult">
- <summary>
- Gets and sets the DescribeDBSecurityGroupsResult property.
- Contains the result of a successful invocation of the DescribeDBSecurityGroups action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBParameterGroupStatus">
- <summary>
- <para> The status of the DB Parameter Group. </para> <para>This data type is used as a response element in the following actions:</para>
- <ul>
- <li> CreateDBInstance </li>
- <li> CreateDBInstanceReadReplica </li>
- <li> DeleteDBInstance </li>
- <li> ModifyDBInstance </li>
- <li> RebootDBInstance </li>
- <li> RestoreDBInstanceFromDBSnapshot </li>
-
- </ul>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroupStatus.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DBParameterGroupStatus.WithParameterApplyStatus(System.String)">
- <summary>
- Sets the ParameterApplyStatus property
- </summary>
- <param name="parameterApplyStatus">The value to set for the ParameterApplyStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DBParameterGroupStatus.DBParameterGroupName">
- <summary>
- The name of the DP Parameter Group.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DBParameterGroupStatus.ParameterApplyStatus">
- <summary>
- The status of parameter updates.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBSecurityGroupRequest">
- <summary>
- Container for the parameters to the CreateDBSecurityGroup operation.
- <para> Creates a new database security group. Database Security groups control access to a database instance. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.CreateDBSecurityGroup(Amazon.RDS.Model.CreateDBSecurityGroupRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBSecurityGroupRequest.WithDBSecurityGroupName(System.String)">
- <summary>
- Sets the DBSecurityGroupName property
- </summary>
- <param name="dBSecurityGroupName">The value to set for the DBSecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBSecurityGroupRequest.WithDBSecurityGroupDescription(System.String)">
- <summary>
- Sets the DBSecurityGroupDescription property
- </summary>
- <param name="dBSecurityGroupDescription">The value to set for the DBSecurityGroupDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSecurityGroupRequest.DBSecurityGroupName">
- <summary>
- The name for the DB Security Group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 alphanumeric
- characters or hyphens. Must not be "Default". Example: <c>mysecuritygroup</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSecurityGroupRequest.DBSecurityGroupDescription">
- <summary>
- The description for the DB Security Group.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.UnableToUpdateJobIdException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.UnableToUpdateJobIdException.#ctor(System.String)">
- <summary>
- Constructs a new UnableToUpdateJobIdException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.GetStatusResultUnmarshaller">
- <summary>
- GetStatusResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.CreateJobResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateJob operation
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.NoSuchBucketException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.NoSuchBucketException.#ctor(System.String)">
- <summary>
- Constructs a new NoSuchBucketException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.ListJobsResponse">
- <summary>
- Returns information about the ListJobsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.ListJobsResponse.ListJobsResult">
- <summary>
- Gets and sets the ListJobsResult property.
- Output structure for the ListJobs operation.
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.InvalidCustomsException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.InvalidCustomsException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidCustomsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.AmazonImportExportClient">
- <summary>
- Implemenation for accessing AmazonImportExport.
-
- AWS Import/Export Service <para> AWS Import/Export accelerates
- transferring large amounts of data between the AWS cloud and portable
- storage devices that you mail to us. AWS Import/Export transfers data
- directly onto and off of your storage devices using Amazon's
- high-speed internal network and bypassing the Internet. For large data
- sets, AWS Import/Export is often faster than Internet transfer and
- more cost effective than upgrading your connectivity. </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonImportExportClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportClient.#ctor(System.String,System.String,Amazon.ImportExport.AmazonImportExportConfig)">
- <summary>
- Constructs AmazonImportExportClient with AWS Access Key ID, AWS Secret Key and an
- AmazonS3 Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonImportExportClient Configuration Object</param>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportClient.CreateJob(Amazon.ImportExport.Model.CreateJobRequest)">
- <summary>
- <para> This operation initiates the process of scheduling an upload or
- download of your data. You include in the request a manifest that
- describes the data transfer specifics. The response to the request
- includes a job ID, which you can use in other operations, a signature
- that you use to identify your storage device, and the address where
- you should ship your storage device. </para>
- </summary>
-
- <param name="createJobRequest">Container for the necessary parameters
- to execute the CreateJob service method on AmazonImportExport.</param>
-
- <returns>The response from the CreateJob service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.MalformedManifestException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAddressException"/>
- <exception cref="T:Amazon.ImportExport.Model.BucketPermissionException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.MultipleRegionsException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidFileSystemException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.NoSuchBucketException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.CreateJobQuotaExceededException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportClient.CancelJob(Amazon.ImportExport.Model.CancelJobRequest)">
- <summary>
- <para> This operation cancels a specified job. Only the job owner can
- cancel it. The operation fails if the job has already started or is
- complete. </para>
- </summary>
-
- <param name="cancelJobRequest">Container for the necessary parameters
- to execute the CancelJob service method on AmazonImportExport.</param>
-
- <returns>The response from the CancelJob service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.CanceledJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.ExpiredJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.UnableToCancelJobIdException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportClient.GetStatus(Amazon.ImportExport.Model.GetStatusRequest)">
- <summary>
- <para> This operation returns information about a job, including where
- the job is in the processing pipeline, the status of the results, and
- the signature value associated with the job. You can only return
- information about jobs you own. </para>
- </summary>
-
- <param name="getStatusRequest">Container for the necessary parameters
- to execute the GetStatus service method on AmazonImportExport.</param>
-
- <returns>The response from the GetStatus service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.CanceledJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.ExpiredJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidJobIdException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportClient.ListJobs(Amazon.ImportExport.Model.ListJobsRequest)">
- <summary>
- <para> This operation returns the jobs associated with the requester.
- AWS Import/Export lists the jobs in reverse chronological order based
- on the date of creation. For example if Job Test1 was created
- 2009Dec30 and Test2 was created 2010Feb05, the ListJobs operation
- would return Test2 followed by Test1. </para>
- </summary>
-
- <param name="listJobsRequest">Container for the necessary parameters
- to execute the ListJobs service method on AmazonImportExport.</param>
-
- <returns>The response from the ListJobs service method, as returned by
- AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.InvalidParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- </member>
- <member name="M:Amazon.ImportExport.AmazonImportExportClient.UpdateJob(Amazon.ImportExport.Model.UpdateJobRequest)">
- <summary>
- <para> You use this operation to change the parameters specified in
- the original manifest file by supplying a new manifest file. The
- manifest file attached to this request replaces the original manifest
- file. You can only use the operation after a CreateJob request but
- before the data transfer starts and you can only use it on jobs you
- own. </para>
- </summary>
-
- <param name="updateJobRequest">Container for the necessary parameters
- to execute the UpdateJob service method on AmazonImportExport.</param>
-
- <returns>The response from the UpdateJob service method, as returned
- by AmazonImportExport.</returns>
-
- <exception cref="T:Amazon.ImportExport.Model.MalformedManifestException"/>
- <exception cref="T:Amazon.ImportExport.Model.BucketPermissionException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAddressException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.UnableToUpdateJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.MultipleRegionsException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingParameterException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidFileSystemException"/>
- <exception cref="T:Amazon.ImportExport.Model.CanceledJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.NoSuchBucketException"/>
- <exception cref="T:Amazon.ImportExport.Model.ExpiredJobIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidCustomsException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.MissingManifestFieldException"/>
- <exception cref="T:Amazon.ImportExport.Model.InvalidJobIdException"/>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UploadSigningCertificateResultUnmarshaller">
- <summary>
- UploadSigningCertificateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.PutUserPolicyRequestMarshaller">
- <summary>
- Put User Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.MFADeviceUnmarshaller">
- <summary>
- MFADevice Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListSigningCertificatesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListSigningCertificates operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetUserResultUnmarshaller">
- <summary>
- GetUserResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetLoginProfileRequestMarshaller">
- <summary>
- Get Login Profile Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetGroupPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetGroupPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.EnableMFADeviceRequestMarshaller">
- <summary>
- Enable M F A Device Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteLoginProfileResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteLoginProfile operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateLoginProfileRequestMarshaller">
- <summary>
- Create Login Profile Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListUsersResult">
- <summary>
- <para>Contains the result of a successful invocation of the ListUsers
- action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUsersResult.WithUsers(Amazon.IdentityManagement.Model.User[])">
- <summary>
- Adds elements to the Users collection
- </summary>
- <param name="users">The values to add to the Users collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUsersResult.WithUsers(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.User})">
- <summary>
- Adds elements to the Users collection
- </summary>
- <param name="users">The values to add to the Users collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUsersResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUsersResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUsersResult.Users">
- <summary>
- A list of User names.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUsersResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more User names to list. If your results were truncated, you can make a subsequent pagination
- request using the <c>Marker</c> request parameter to retrieve more Users in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUsersResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListUserPoliciesResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListUserPolicies action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUserPoliciesResult.WithPolicyNames(System.String[])">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUserPoliciesResult.WithPolicyNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUserPoliciesResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUserPoliciesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUserPoliciesResult.PolicyNames">
- <summary>
- A list of policy names.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUserPoliciesResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more policy names to list. If your results were truncated, you can make a subsequent pagination
- request using the <c>Marker</c> request parameter to retrieve more policy names in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUserPoliciesResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListMFADevicesResponse">
- <summary>
- Returns information about the ListMFADevicesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListMFADevicesResponse.ListMFADevicesResult">
- <summary>
- Gets and sets the ListMFADevicesResult property.
- Contains the result of a successful invocation of the ListMFADevices action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetGroupPolicyResponse">
- <summary>
- Returns information about the GetGroupPolicyResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupPolicyResponse.GetGroupPolicyResult">
- <summary>
- Gets and sets the GetGroupPolicyResult property.
- Contains the result of a successful invocation of the GetGroupPolicy action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException.#ctor(System.String)">
- <summary>
- Constructs a new EntityTemporarilyUnmodifiableException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateUserResult">
- <summary>
- <para>Contains the result of a successful invocation of the CreateUser
- action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateUserResult.WithUser(Amazon.IdentityManagement.Model.User)">
- <summary>
- Sets the User property
- </summary>
- <param name="user">The value to set for the User property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateUserResult.User">
- <summary>
- Information about the User.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateGroupResponse">
- <summary>
- Returns information about the CreateGroupResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateGroupResponse.CreateGroupResult">
- <summary>
- Gets and sets the CreateGroupResult property.
- Contains the result of a successful invocation of the CreateGroup action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.PlacementTypeUnmarshaller">
- <summary>
- PlacementType Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.DescribeJobFlowsResponse">
- <summary>
- Returns information about the DescribeJobFlowsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.DescribeJobFlowsResponse.DescribeJobFlowsResult">
- <summary>
- Gets and sets the DescribeJobFlowsResult property.
- The output for the DescribeJobFlows operation.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DisableAvailabilityZonesForLoadBalancerResultUnmarshaller">
- <summary>
- DisableAvailabilityZonesForLoadBalancerResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest">
- <summary>
- Container for the parameters to the SetLoadBalancerListenerSSLCertificate operation.
- <para> Sets the certificate that terminates the specified listener's SSL connections. The specified certificate replaces any prior
- certificate that was used on the same LoadBalancer and port. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.SetLoadBalancerListenerSSLCertificate(Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.#ctor">
- <summary>
- Default constructor for a new SetLoadBalancerListenerSSLCertificateRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.#ctor(System.String,System.Int32,System.String)">
- <summary>
- Constructs a new SetLoadBalancerListenerSSLCertificateRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name of the the LoadBalancer. </param>
- <param name="loadBalancerPort"> The port that uses the specified SSL certificate. </param>
- <param name="sSLCertificateId"> The ID of the SSL certificate chain to use. For more information on SSL certificates, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/ManagingServerCerts.html"> Managing Server Certificates </a> in the AWS
- Identity and Access Management documentation. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.WithLoadBalancerPort(System.Int32)">
- <summary>
- Sets the LoadBalancerPort property
- </summary>
- <param name="loadBalancerPort">The value to set for the LoadBalancerPort property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.WithSSLCertificateId(System.String)">
- <summary>
- Sets the SSLCertificateId property
- </summary>
- <param name="sSLCertificateId">The value to set for the SSLCertificateId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.LoadBalancerName">
- <summary>
- The name of the the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.LoadBalancerPort">
- <summary>
- The port that uses the specified SSL certificate.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateRequest.SSLCertificateId">
- <summary>
- The ID of the SSL certificate chain to use. For more information on SSL certificates, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/ManagingServerCerts.html"> Managing Server Certificates </a> in the AWS
- Identity and Access Management documentation.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Listener">
- <summary>
- <para> The Listener data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Listener.#ctor">
- <summary>
- Default constructor for a new Listener object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Listener.#ctor(System.String,System.Int32,System.Int32)">
- <summary>
- Constructs a new Listener object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="protocol"> Specifies the LoadBalancer transport protocol to use for routing - TCP or HTTP. This property cannot be modified for
- the life of the LoadBalancer. </param>
- <param name="loadBalancerPort"> Specifies the external LoadBalancer port number. This property cannot be modified for the life of the
- LoadBalancer. </param>
- <param name="instancePort"> Specifies the TCP port on which the instance server is listening. This property cannot be modified for the life
- of the LoadBalancer. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Listener.WithProtocol(System.String)">
- <summary>
- Sets the Protocol property
- </summary>
- <param name="protocol">The value to set for the Protocol property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Listener.WithLoadBalancerPort(System.Int32)">
- <summary>
- Sets the LoadBalancerPort property
- </summary>
- <param name="loadBalancerPort">The value to set for the LoadBalancerPort property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Listener.WithInstancePort(System.Int32)">
- <summary>
- Sets the InstancePort property
- </summary>
- <param name="instancePort">The value to set for the InstancePort property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Listener.WithSSLCertificateId(System.String)">
- <summary>
- Sets the SSLCertificateId property
- </summary>
- <param name="sSLCertificateId">The value to set for the SSLCertificateId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.Listener.Protocol">
- <summary>
- Specifies the LoadBalancer transport protocol to use for routing - TCP or HTTP. This property cannot be modified for the life of the
- LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.Listener.LoadBalancerPort">
- <summary>
- Specifies the external LoadBalancer port number. This property cannot be modified for the life of the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.Listener.InstancePort">
- <summary>
- Specifies the TCP port on which the instance server is listening. This property cannot be modified for the life of the LoadBalancer.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 65535</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.Listener.SSLCertificateId">
- <summary>
- The ID of the SSL certificate chain to use. For more information on SSL certificates, see <a
- href="http://docs.amazonwebservices.com/IAM/latest/UserGuide/index.html?ManagingCredentials.html"> Managing Keys and Certificates </a> in
- the AWS Identity and Access Management documentation.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerResult">
- <summary>
- <para> The output for the DeleteLoadBalander action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest">
- <summary>
- Container for the parameters to the CreateLoadBalancerListeners operation.
- <para> Creates one or more listeners on a LoadBalancer for the specified port. If a listener with the given port does not already exist, it
- will be created; otherwise, the properties of the new listener must match the properties of the existing listener. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.CreateLoadBalancerListeners(Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest.#ctor">
- <summary>
- Default constructor for a new CreateLoadBalancerListenersRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest.#ctor(System.String,System.Collections.Generic.List{Amazon.ElasticLoadBalancing.Model.Listener})">
- <summary>
- Constructs a new CreateLoadBalancerListenersRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name of the new LoadBalancer. The name must be unique within your AWS account. </param>
- <param name="listeners"> A list of LoadBalancerPort, <c>InstancePort</c>, <c>Protocol</c>, and <c>SSLCertificateId</c> items. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest.WithListeners(Amazon.ElasticLoadBalancing.Model.Listener[])">
- <summary>
- Adds elements to the Listeners collection
- </summary>
- <param name="listeners">The values to add to the Listeners collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest.WithListeners(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Listener})">
- <summary>
- Adds elements to the Listeners collection
- </summary>
- <param name="listeners">The values to add to the Listeners collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest.LoadBalancerName">
- <summary>
- The name of the new LoadBalancer. The name must be unique within your AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateLoadBalancerListenersRequest.Listeners">
- <summary>
- A list of LoadBalancerPort, <c>InstancePort</c>, <c>Protocol</c>, and <c>SSLCertificateId</c> items.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest">
- <summary>
- Container for the parameters to the ConfigureHealthCheck operation.
- <para> Enables the client to define an application healthcheck for the instances. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.ConfigureHealthCheck(Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest.#ctor">
- <summary>
- Default constructor for a new ConfigureHealthCheckRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest.#ctor(System.String,Amazon.ElasticLoadBalancing.Model.HealthCheck)">
- <summary>
- Constructs a new ConfigureHealthCheckRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The mnemonic name associated with the LoadBalancer. This name must be unique within the client AWS account.
- </param>
- <param name="healthCheck"> A structure containing the configuration information for the new healthcheck. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest.WithHealthCheck(Amazon.ElasticLoadBalancing.Model.HealthCheck)">
- <summary>
- Sets the HealthCheck property
- </summary>
- <param name="healthCheck">The value to set for the HealthCheck property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest.LoadBalancerName">
- <summary>
- The mnemonic name associated with the LoadBalancer. This name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.ConfigureHealthCheckRequest.HealthCheck">
- <summary>
- A structure containing the configuration information for the new healthcheck.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ValidationErrorException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidationErrorException.#ctor(System.String)">
- <summary>
- Constructs a new ValidationErrorException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ValidationMessageUnmarshaller">
- <summary>
- ValidationMessage Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RestartAppServerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RestartAppServer operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RebuildEnvironmentRequestMarshaller">
- <summary>
- Rebuild Environment Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEnvironmentResourcesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeEnvironmentResources operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeConfigurationSettingsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeConfigurationSettings operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DeleteApplicationVersionResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteApplicationVersion operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateStorageLocationResultUnmarshaller">
- <summary>
- CreateStorageLocationResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateApplicationVersionRequestMarshaller">
- <summary>
- Create Application Version Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CheckDNSAvailabilityResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CheckDNSAvailability operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult">
- <summary>
- <para>Describes the properties of an environment.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithEndpointURL(System.String)">
- <summary>
- Sets the EndpointURL property
- </summary>
- <param name="endpointURL">The value to set for the EndpointURL property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithCNAME(System.String)">
- <summary>
- Sets the CNAME property
- </summary>
- <param name="cNAME">The value to set for the CNAME property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithHealth(System.String)">
- <summary>
- Sets the Health property
- </summary>
- <param name="health">The value to set for the Health property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.WithResources(Amazon.ElasticBeanstalk.Model.EnvironmentResourcesDescription)">
- <summary>
- Sets the Resources property
- </summary>
- <param name="resources">The value to set for the Resources property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.EnvironmentName">
- <summary>
- The name of this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.EnvironmentId">
- <summary>
- The ID of this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.ApplicationName">
- <summary>
- The name of the application associated with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.VersionLabel">
- <summary>
- The application version deployed in this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.SolutionStackName">
- <summary>
- The name of the <c>SolutionStack</c> deployed with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.TemplateName">
- <summary>
- The name of the configuration template used to originally launch this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.Description">
- <summary>
- Describes this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.EndpointURL">
- <summary>
- The URL to the LoadBalancer for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.CNAME">
- <summary>
- The URL to the CNAME for this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.DateCreated">
- <summary>
- The creation date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.DateUpdated">
- <summary>
- The last modified date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.Status">
- <summary>
- The current operational status of the environment: <ul> <li> <c>Launching</c>: Environment is in the process of initial deployment. </li>
- <li> <c>Updating</c>: Environment is in the process of updating its configuration settings or application version. </li> <li> <c>Ready</c>:
- Environment is available to have an action performed on it, such as update or terminate. </li> <li> <c>Terminating</c>: Environment is in
- the shut-down process. </li> <li> <c>Terminated</c>: Environment is not running. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Launching, Updating, Ready, Terminating, Terminated</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.Health">
- <summary>
- Describes the health status of the environment. AWS Elastic Beanstalk indicates the failure levels for a running environment: <enumValues>
- <value name="Red"> <c>Red</c> : Indicates the environment is not working. </value> <value name="Yellow"> <c>Yellow</c>: Indicates that
- something is wrong, the application might not be available, but the instances appear running. </value> <value name="Green"> <c>Green</c>:
- Indicates the environment is healthy and fully functional. </value> </enumValues> <ul> <li> <c>Red</c>: Indicates the environment is not
- responsive. Occurs when three or more consecutive failures occur for an environment. </li> <li> <c>Yellow</c>: Indicates that something is
- wrong. Occurs when two consecutive failures occur for an environment. </li> <li> <c>Green</c>: Indicates the environment is healthy and
- fully functional. </li> <li> <c>Grey</c>: Default health for a new environment. The environment is not fully launched and health checks have
- not started or health checks are suspended during an <c>UpdateEnvironment</c> or <c>RestartEnvironement</c> request. </li> </ul> Default:
- <c>Grey</c>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Green, Yellow, Red, Grey</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentResult.Resources">
- <summary>
- The description of the AWS resources used by this environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest">
- <summary>
- Container for the parameters to the SwapEnvironmentCNAMEs operation.
-
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.SwapEnvironmentCNAMEs(Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest.WithSourceEnvironmentId(System.String)">
- <summary>
- Sets the SourceEnvironmentId property
- </summary>
- <param name="sourceEnvironmentId">The value to set for the SourceEnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest.WithSourceEnvironmentName(System.String)">
- <summary>
- Sets the SourceEnvironmentName property
- </summary>
- <param name="sourceEnvironmentName">The value to set for the SourceEnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest.WithDestinationEnvironmentId(System.String)">
- <summary>
- Sets the DestinationEnvironmentId property
- </summary>
- <param name="destinationEnvironmentId">The value to set for the DestinationEnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SwapEnvironmentCNAMEsRequest.WithDestinationEnvironmentName(System.String)">
- <summary>
- Sets the DestinationEnvironmentName property
- </summary>
- <param name="destinationEnvironmentName">The value to set for the DestinationEnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesResponse">
- <summary>
- Returns information about the DescribeEnvironmentResourcesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesResponse.DescribeEnvironmentResourcesResult">
- <summary>
- Gets and sets the DescribeEnvironmentResourcesResult property.
- Result message containing a list of environment resource descriptions.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Subnet">
- <summary>
- Subnet
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">The subnet's ID</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.WithSubnetState(System.String)">
- <summary>
- Sets the SubnetState property
- </summary>
- <param name="subnetState">The current state of the subnet (pending or
- available).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.IsSetSubnetState">
- <summary>
- Checks if SubnetState property is set
- </summary>
- <returns>true if SubnetState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC the subnet is in</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.WithCidrBlock(System.String)">
- <summary>
- Sets the CidrBlock property
- </summary>
- <param name="cidrBlock">The CIDR block assigned to the subnet</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.IsSetCidrBlock">
- <summary>
- Checks if CidrBlock property is set
- </summary>
- <returns>true if CidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.WithAvailableIpAddressCount(System.Decimal)">
- <summary>
- Sets the AvailableIpAddressCount property
- </summary>
- <param name="availableIpAddressCount">The number of unused IP addresses in the
- subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.IsSetAvailableIpAddressCount">
- <summary>
- Checks if AvailableIpAddressCount property is set
- </summary>
- <returns>true if AvailableIpAddressCount property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone the subnet is in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the Subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Subnet.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Subnet.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- The subnet's ID
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Subnet.SubnetState">
- <summary>
- Gets and sets the SubnetState property.
- The current state of the subnet (pending or
- available).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Subnet.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC the subnet is in
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Subnet.CidrBlock">
- <summary>
- Gets and sets the CidrBlock property.
- The CIDR block assigned to the subnet
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Subnet.AvailableIpAddressCount">
- <summary>
- Gets and sets the AvailableIpAddressCount property.
- The number of unused IP addresses in the
- subnet.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Subnet.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone the subnet is in.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Subnet.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the Subnet.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest">
- <summary>
- Revokes permissions from a security group. The
- permissions used to revoke
- must be specified using the same values
- used to grant the
- permissions.
-
- Permissions are specified by IP
- protocol (TCP, UDP, or ICMP), the source of
- the request (by IP
- range or an Amazon EC2 user-group pair), the
- source and destination
- port ranges (for TCP and UDP), and the ICMP codes and
- types (for ICMP).
-
- Permission changes are quickly propagated to instances
- within the security
- group. However, depending on the number of
- instances in the group, a
- small delay is might occur.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithUserId(System.String)">
- <summary>
- Sets the UserId property
- </summary>
- <param name="userId">AWS Access Key ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetUserId">
- <summary>
- Checks if UserId property is set
- </summary>
- <returns>true if UserId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Name of the group to modify.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithSourceSecurityGroupName(System.String)">
- <summary>
- Sets the SourceSecurityGroupName property
- </summary>
- <param name="sourceSecurityGroupName">Name of the security group. Cannot be used
- when specifying a CIDR IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetSourceSecurityGroupName">
- <summary>
- Checks if SourceSecurityGroupName property is set
- </summary>
- <returns>true if SourceSecurityGroupName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithSourceSecurityGroupOwnerId(System.String)">
- <summary>
- Sets the SourceSecurityGroupOwnerId property
- </summary>
- <param name="sourceSecurityGroupOwnerId">AWS User ID of an account. Cannot be used when
- specifying a CIDR IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetSourceSecurityGroupOwnerId">
- <summary>
- Checks if SourceSecurityGroupOwnerId property is set
- </summary>
- <returns>true if SourceSecurityGroupOwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithIpProtocol(System.String)">
- <summary>
- Sets the IpProtocol property
- </summary>
- <param name="ipProtocol">IP protocol. Valid Values: tcp | udp | icmp</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetIpProtocol">
- <summary>
- Checks if IpProtocol property is set
- </summary>
- <returns>true if IpProtocol property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithFromPort(System.Decimal)">
- <summary>
- Sets the FromPort property
- </summary>
- <param name="fromPort">Start of port range for the TCP and UDP
- protocols, or an ICMP type
- number. An ICMP type number of -1
- indicates a wildcard (i.e.,
- any ICMP type number).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetFromPort">
- <summary>
- Checks if FromPort property is set
- </summary>
- <returns>true if FromPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithToPort(System.Decimal)">
- <summary>
- Sets the ToPort property
- </summary>
- <param name="toPort">End of port range for the TCP and UDP
- protocols, or an ICMP code.
- An ICMP code of -1 indicates a
- wildcard (i.e., any ICMP code).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetToPort">
- <summary>
- Checks if ToPort property is set
- </summary>
- <returns>true if ToPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithCidrIp(System.String)">
- <summary>
- Sets the CidrIp property
- </summary>
- <param name="cidrIp">CIDR range.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetCidrIp">
- <summary>
- Checks if CidrIp property is set
- </summary>
- <returns>true if CidrIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.WithIpPermissions(Amazon.EC2.Model.IpPermissionSpecification[])">
- <summary>
- Sets the IpPermissions property
- </summary>
- <param name="list">Set of IP permissions associated with the
- security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IsSetIpPermissions">
- <summary>
- Checks if IpPermissions property is set
- </summary>
- <returns>true if IpPermissions property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.UserId">
- <summary>
- Gets and sets the UserId property.
- AWS Access Key ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the group to modify.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.SourceSecurityGroupName">
- <summary>
- Gets and sets the SourceSecurityGroupName property.
- Name of the security group. Cannot be used
- when specifying a CIDR IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.SourceSecurityGroupOwnerId">
- <summary>
- Gets and sets the SourceSecurityGroupOwnerId property.
- AWS User ID of an account. Cannot be used when
- specifying a CIDR IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IpProtocol">
- <summary>
- Gets and sets the IpProtocol property.
- IP protocol. Valid Values: tcp | udp | icmp
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.FromPort">
- <summary>
- Gets and sets the FromPort property.
- Start of port range for the TCP and UDP
- protocols, or an ICMP type
- number. An ICMP type number of -1
- indicates a wildcard (i.e.,
- any ICMP type number).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.ToPort">
- <summary>
- Gets and sets the ToPort property.
- End of port range for the TCP and UDP
- protocols, or an ICMP code.
- An ICMP code of -1 indicates a
- wildcard (i.e., any ICMP code).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.CidrIp">
- <summary>
- Gets and sets the CidrIp property.
- CIDR range.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RevokeSecurityGroupIngressRequest.IpPermissions">
- <summary>
- Gets and sets the IpPermissions property.
- Set of IP permissions associated with the
- security group.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ResetImageAttributeResponse">
- <summary>
- Reset Image Attribute Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResetImageAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetImageAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetImageAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResetImageAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceRouteTableAssociationResult">
- <summary>
- ReplaceRouteTableAssociation Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationResult.IsSetNewAssociationId">
- <summary>
- Checks if NewAssociationId property is set
- </summary>
- <returns>true if NewAssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteTableAssociationResult.NewAssociationId">
- <summary>
- Gets and sets the NewAssociationId property.
- The ID representing the new association.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RegisterImageRequest">
- <summary>
- Registers an AMI with Amazon EC2. Images must be
- registered before they
- can be launched. To launch instances, use
- the RunInstances operation.
-
- Each AMI is associated with an unique
- ID which is provided by the Amazon
- EC2 service through the
- RegisterImage operation. During registration,
- Amazon EC2 retrieves
- the specified image manifest from Amazon S3
- and verifies that the
- image is owned by the user registering the image.
-
- The image manifest is retrieved once and stored within the Amazon
- EC2. Any modifications to an image in Amazon S3 invalidates this
- registration. If you make changes to an image, deregister the
- previous image and register
- the new image. To deregister an image,
- use the DeregisterImage
- operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithImageLocation(System.String)">
- <summary>
- Sets the ImageLocation property
- </summary>
- <param name="imageLocation">Full path to your AMI manifest in Amazon S3
- storage.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetImageLocation">
- <summary>
- Checks if ImageLocation property is set
- </summary>
- <returns>true if ImageLocation property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The name of the AMI that was provided during
- image creation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The description of the AMI. Must be 3-128
- alphanumeric characters,
- parenthesis (()), commas (,), slashes
- (/), dashes (-), or
- underscores(_).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithArchitecture(System.String)">
- <summary>
- Sets the Architecture property
- </summary>
- <param name="architecture">Architecture property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetArchitecture">
- <summary>
- Checks if Architecture property is set
- </summary>
- <returns>true if Architecture property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">The ID of the kernel to select.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetKernelId">
- <summary>
- Checks if KernelId property is set
- </summary>
- <returns>true if KernelId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">The ID of the RAM disk to select. Some kernels
- require additional drivers at launch. Check the kernel
- requirements for information on whether you need to
- specify a
- RAM disk.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetRamdiskId">
- <summary>
- Checks if RamdiskId property is set
- </summary>
- <returns>true if RamdiskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithRootDeviceName(System.String)">
- <summary>
- Sets the RootDeviceName property
- </summary>
- <param name="rootDeviceName">The root device name (e.g., /dev/sda1).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetRootDeviceName">
- <summary>
- Checks if RootDeviceName property is set
- </summary>
- <returns>true if RootDeviceName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.WithBlockDeviceMapping(Amazon.EC2.Model.BlockDeviceMapping[])">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="list">BlockDeviceMapping property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageRequest.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.ImageLocation">
- <summary>
- Gets and sets the ImageLocation property.
- Full path to your AMI manifest in Amazon S3
- storage.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.Name">
- <summary>
- Gets and sets the Name property.
- The name of the AMI that was provided during
- image creation.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.Description">
- <summary>
- Gets and sets the Description property.
- The description of the AMI. Must be 3-128
- alphanumeric characters,
- parenthesis (()), commas (,), slashes
- (/), dashes (-), or
- underscores(_).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.Architecture">
- <summary>
- Gets and sets the Architecture property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.KernelId">
- <summary>
- Gets and sets the KernelId property.
- The ID of the kernel to select.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.RamdiskId">
- <summary>
- Gets and sets the RamdiskId property.
- The ID of the RAM disk to select. Some kernels
- require additional drivers at launch. Check the kernel
- requirements for information on whether you need to
- specify a
- RAM disk.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.RootDeviceName">
- <summary>
- Gets and sets the RootDeviceName property.
- The root device name (e.g., /dev/sda1).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageRequest.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RebootInstancesResponse">
- <summary>
- Reboot Instances Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RebootInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RebootInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RebootInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RebootInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.KeyPair">
- <summary>
- Key Pair
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.KeyPair.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">The key pair name provided in the original
- request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.KeyPair.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.KeyPair.WithKeyFingerprint(System.String)">
- <summary>
- Sets the KeyFingerprint property
- </summary>
- <param name="keyFingerprint">A SHA-1 digest of the DER encoded private key.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.KeyPair.IsSetKeyFingerprint">
- <summary>
- Checks if KeyFingerprint property is set
- </summary>
- <returns>true if KeyFingerprint property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.KeyPair.WithKeyMaterial(System.String)">
- <summary>
- Sets the KeyMaterial property
- </summary>
- <param name="keyMaterial">Only returned on create</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.KeyPair.IsSetKeyMaterial">
- <summary>
- Checks if KeyMaterial property is set
- </summary>
- <returns>true if KeyMaterial property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.KeyPair.KeyName">
- <summary>
- Gets and sets the KeyName property.
- The key pair name provided in the original
- request.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.KeyPair.KeyFingerprint">
- <summary>
- Gets and sets the KeyFingerprint property.
- A SHA-1 digest of the DER encoded private key.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.KeyPair.KeyMaterial">
- <summary>
- Gets and sets the KeyMaterial property.
- Only returned on create
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.IpPermission">
- <summary>
- IP Permission
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.WithIpProtocol(System.String)">
- <summary>
- Sets the IpProtocol property
- </summary>
- <param name="ipProtocol">IP protocol.Valid Values: tcp | udp | icmp</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.IsSetIpProtocol">
- <summary>
- Checks if IpProtocol property is set
- </summary>
- <returns>true if IpProtocol property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.WithFromPort(System.Decimal)">
- <summary>
- Sets the FromPort property
- </summary>
- <param name="fromPort">Start of port range for the TCP and UDP
- protocols, or an ICMP type
- number. An ICMP type number of -1
- indicates a wildcard (i.e., any ICMP type
- number).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.IsSetFromPort">
- <summary>
- Checks if FromPort property is set
- </summary>
- <returns>true if FromPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.WithToPort(System.Decimal)">
- <summary>
- Sets the ToPort property
- </summary>
- <param name="toPort">End of port range for the TCP and UDP
- protocols, or an ICMP code.
- An ICMP code of -1 indicates a
- wildcard (i.e., any ICMP code).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.IsSetToPort">
- <summary>
- Checks if ToPort property is set
- </summary>
- <returns>true if ToPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.WithUserIdGroupPair(Amazon.EC2.Model.UserIdGroupPair[])">
- <summary>
- Sets the UserIdGroupPair property
- </summary>
- <param name="list">List of security group and user ID pairs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.IsSetUserIdGroupPair">
- <summary>
- Checks if UserIdGroupPair property is set
- </summary>
- <returns>true if UserIdGroupPair property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.WithIpRange(System.String[])">
- <summary>
- Sets the IpRange property
- </summary>
- <param name="list">IP ranges.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.IpPermission.IsSetIpRange">
- <summary>
- Checks if IpRange property is set
- </summary>
- <returns>true if IpRange property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermission.IpProtocol">
- <summary>
- Gets and sets the IpProtocol property.
- IP protocol.Valid Values: tcp | udp | icmp
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermission.FromPort">
- <summary>
- Gets and sets the FromPort property.
- Start of port range for the TCP and UDP
- protocols, or an ICMP type
- number. An ICMP type number of -1
- indicates a wildcard (i.e., any ICMP type
- number).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermission.ToPort">
- <summary>
- Gets and sets the ToPort property.
- End of port range for the TCP and UDP
- protocols, or an ICMP code.
- An ICMP code of -1 indicates a
- wildcard (i.e., any ICMP code).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermission.UserIdGroupPair">
- <summary>
- Gets and sets the UserIdGroupPair property.
- List of security group and user ID pairs.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.IpPermission.IpRange">
- <summary>
- Gets and sets the IpRange property.
- IP ranges.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Image">
- <summary>
- AMI
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">The ID of the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithImageLocation(System.String)">
- <summary>
- Sets the ImageLocation property
- </summary>
- <param name="imageLocation">The location of the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetImageLocation">
- <summary>
- Checks if ImageLocation property is set
- </summary>
- <returns>true if ImageLocation property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithImageState(System.String)">
- <summary>
- Sets the ImageState property
- </summary>
- <param name="imageState">Current state of the AMI. If the operation
- return</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetImageState">
- <summary>
- Checks if ImageState property is set
- </summary>
- <returns>true if ImageState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithOwnerId(System.String)">
- <summary>
- Sets the OwnerId property
- </summary>
- <param name="ownerId">AWS Access Key ID of the image owner.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetOwnerId">
- <summary>
- Checks if OwnerId property is set
- </summary>
- <returns>true if OwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithVisibility(System.String)">
- <summary>
- Sets the Visibility property
- </summary>
- <param name="visibility">Visibility - public or private</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetVisibility">
- <summary>
- Checks if Visibility property is set
- </summary>
- <returns>true if Visibility property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithProductCode(System.String[])">
- <summary>
- Sets the ProductCode property
- </summary>
- <param name="list">Product codes of the AMI</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetProductCode">
- <summary>
- Checks if ProductCode property is set
- </summary>
- <returns>true if ProductCode property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithArchitecture(System.String)">
- <summary>
- Sets the Architecture property
- </summary>
- <param name="architecture">The architecture of the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetArchitecture">
- <summary>
- Checks if Architecture property is set
- </summary>
- <returns>true if Architecture property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithImageType(System.String)">
- <summary>
- Sets the ImageType property
- </summary>
- <param name="imageType">The type of image</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetImageType">
- <summary>
- Checks if ImageType property is set
- </summary>
- <returns>true if ImageType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">The kernel associated with the image, if any.
- Only applicable for machine images.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetKernelId">
- <summary>
- Checks if KernelId property is set
- </summary>
- <returns>true if KernelId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">The RAM disk associated with the image, if any.
- Only applicable for machine images.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetRamdiskId">
- <summary>
- Checks if RamdiskId property is set
- </summary>
- <returns>true if RamdiskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithPlatform(System.String)">
- <summary>
- Sets the Platform property
- </summary>
- <param name="platform">The operating platform of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetPlatform">
- <summary>
- Checks if Platform property is set
- </summary>
- <returns>true if Platform property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithStateReason(Amazon.EC2.Model.StateReason)">
- <summary>
- Sets the StateReason property
- </summary>
- <param name="stateReason">The reason for the state change.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetStateReason">
- <summary>
- Checks if StateReason property is set
- </summary>
- <returns>true if StateReason property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithImageOwnerAlias(System.String)">
- <summary>
- Sets the ImageOwnerAlias property
- </summary>
- <param name="imageOwnerAlias">The AWS account alias (e.g., "amazon") or AWS
- account ID that owns the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetImageOwnerAlias">
- <summary>
- Checks if ImageOwnerAlias property is set
- </summary>
- <returns>true if ImageOwnerAlias property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The name of the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The description of the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithRootDeviceType(System.String)">
- <summary>
- Sets the RootDeviceType property
- </summary>
- <param name="rootDeviceType">The root device type used by the AMI. The AMI
- can use an Amazon EBS or instance store root device.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetRootDeviceType">
- <summary>
- Checks if RootDeviceType property is set
- </summary>
- <returns>true if RootDeviceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithRootDeviceName(System.String)">
- <summary>
- Sets the RootDeviceName property
- </summary>
- <param name="rootDeviceName">The root device name (e.g., /dev/sda1).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetRootDeviceName">
- <summary>
- Checks if RootDeviceName property is set
- </summary>
- <returns>true if RootDeviceName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithBlockDeviceMapping(Amazon.EC2.Model.BlockDeviceMapping[])">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="list">Specifies how block devices are exposed to the
- instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithVirtualizationType(System.String)">
- <summary>
- Sets the VirtualizationType property
- </summary>
- <param name="virtualizationType">Specifies whether the Amazon EC2 instance is a
- hardware virtual machine
- (HVM) or a para-virtual machine (PVM).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetVirtualizationType">
- <summary>
- Checks if VirtualizationType property is set
- </summary>
- <returns>true if VirtualizationType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the Image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.WithHypervisor(System.String)">
- <summary>
- Sets the Hypervisor property
- </summary>
- <param name="hypervisor">Hypervisor property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Image.IsSetHypervisor">
- <summary>
- Checks if Hypervisor property is set
- </summary>
- <returns>true if Hypervisor property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Image.ImageId">
- <summary>
- Gets and sets the ImageId property.
- The ID of the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.ImageLocation">
- <summary>
- Gets and sets the ImageLocation property.
- The location of the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.ImageState">
- <summary>
- Gets and sets the ImageState property.
- Current state of the AMI. If the operation
- return
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.OwnerId">
- <summary>
- Gets and sets the OwnerId property.
- AWS Access Key ID of the image owner.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.Visibility">
- <summary>
- Gets and sets the Visibility property.
- Visibility - public or private
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.ProductCode">
- <summary>
- Gets and sets the ProductCode property.
- Product codes of the AMI
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.Architecture">
- <summary>
- Gets and sets the Architecture property.
- The architecture of the image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.ImageType">
- <summary>
- Gets and sets the ImageType property.
- The type of image
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.KernelId">
- <summary>
- Gets and sets the KernelId property.
- The kernel associated with the image, if any.
- Only applicable for machine images.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.RamdiskId">
- <summary>
- Gets and sets the RamdiskId property.
- The RAM disk associated with the image, if any.
- Only applicable for machine images.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.Platform">
- <summary>
- Gets and sets the Platform property.
- The operating platform of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.StateReason">
- <summary>
- Gets and sets the StateReason property.
- The reason for the state change.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.ImageOwnerAlias">
- <summary>
- Gets and sets the ImageOwnerAlias property.
- The AWS account alias (e.g., "amazon") or AWS
- account ID that owns the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.Name">
- <summary>
- Gets and sets the Name property.
- The name of the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.Description">
- <summary>
- Gets and sets the Description property.
- The description of the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.RootDeviceType">
- <summary>
- Gets and sets the RootDeviceType property.
- The root device type used by the AMI. The AMI
- can use an Amazon EBS or instance store root device.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.RootDeviceName">
- <summary>
- Gets and sets the RootDeviceName property.
- The root device name (e.g., /dev/sda1).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- Specifies how block devices are exposed to the
- instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.VirtualizationType">
- <summary>
- Gets and sets the VirtualizationType property.
- Specifies whether the Amazon EC2 instance is a
- hardware virtual machine
- (HVM) or a para-virtual machine (PVM).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the Image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Image.Hypervisor">
- <summary>
- Gets and sets the Hypervisor property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DisassociateRouteTableRequest">
- <summary>
- Disassociates a subnet from a route table.
-
- After you perform this action, the subnet no longer uses the routes in the route table. Instead it uses the
- routes in the VPC's main route table. For more information about route tables, go to Route Tables in the
- Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateRouteTableRequest.WithAssociationId(System.String)">
- <summary>
- Sets the AssociationId property
- </summary>
- <param name="associationId">The association ID representing the current
- association between the route table and
- subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateRouteTableRequest.IsSetAssociationId">
- <summary>
- Checks if AssociationId property is set
- </summary>
- <returns>true if AssociationId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DisassociateRouteTableRequest.AssociationId">
- <summary>
- Gets and sets the AssociationId property.
- The association ID representing the current
- association between the route table and
- subnet.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DisassociateAddressRequest">
- <summary>
- Disassociates the specified elastic IP address
- from the instance to which it is
- assigned. This is an idempotent
- operation. If you enter it more
- than once, Amazon EC2 does not
- return an error.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateAddressRequest.WithPublicIp(System.String)">
- <summary>
- Sets the PublicIp property
- </summary>
- <param name="publicIp">IP address that you are disassociating from
- the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateAddressRequest.IsSetPublicIp">
- <summary>
- Checks if PublicIp property is set
- </summary>
- <returns>true if PublicIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateAddressRequest.WithAssociationId(System.String)">
- <summary>
- Sets the AssociationId property
- </summary>
- <param name="associationId">Association ID corresponding to the VPC elastic IP address
- you want to disassociate.
-
- Condition: Required for VPC elastic IP addresses</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateAddressRequest.IsSetAssociationId">
- <summary>
- Checks if AssociationId property is set
- </summary>
- <returns>true if AssociationId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DisassociateAddressRequest.PublicIp">
- <summary>
- Gets and sets the PublicIp property.
- IP address that you are disassociating from
- the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DisassociateAddressRequest.AssociationId">
- <summary>
- Gets and sets the AssociationId property.
- Association ID corresponding to the VPC elastic IP address
- you want to disassociate.
-
- Condition: Required for VPC elastic IP addresses
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeTagsResult">
- <summary>
- DescribeTags Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsResult.IsSetResourceTag">
- <summary>
- Checks if ResourceTag property is set
- </summary>
- <returns>true if ResourceTag property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeTagsResult.ResourceTag">
- <summary>
- Gets and sets the ResourceTag property.
- A list of tags for the specified resources.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResult">
- <summary>
- Describe Spot Datafeed Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResult.IsSetSpotDatafeedSubscription">
- <summary>
- Checks if SpotDatafeedSubscription property is set
- </summary>
- <returns>true if SpotDatafeedSubscription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResult.SpotDatafeedSubscription">
- <summary>
- Gets and sets the SpotDatafeedSubscription property.
- The description of the Spot Datafeed
- subsciption.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInternetGatewaysRequest">
- <summary>
- Gives you information about your Internet gateways.You can filter the results to return information only
- about Internet gateways that match criteria you specify. For example, you could get information only
- about gateways with particular tags. The Internet gateway must match at least one of the specified values
- for it to be included in the results.
-
- You can specify multiple filters (e.g., the Internet gateway is attached to a particular VPC and is tagged
- with a particular value). The result includes information for a particular Internet gateway only if the gateway
- matches all your filters. If there's no match, no special message is returned; the response is simply empty.
-
- You can use wildcards with the filter values: * matches zero or more characters, and ? matches exactly
- one character.You can escape special characters using a backslash before the character. For example,
- a value of \*amazon\?\\ searches for the literal string *amazon?\.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysRequest.WithInternetGatewayId(System.String[])">
- <summary>
- Sets the InternetGatewayId property
- </summary>
- <param name="list">IDs of the Internet gateway.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysRequest.IsSetInternetGatewayId">
- <summary>
- Checks if InternetGatewayId property is set
- </summary>
- <returns>true if InternetGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInternetGatewaysRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInternetGatewaysRequest.InternetGatewayId">
- <summary>
- Gets and sets the InternetGatewayId property.
- IDs of the Internet gateway.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInternetGatewaysRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeImageAttributeResult">
- <summary>
- Describe Image Attribute Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeResult.IsSetImageAttribute">
- <summary>
- Checks if ImageAttribute property is set
- </summary>
- <returns>true if ImageAttribute property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImageAttributeResult.ImageAttribute">
- <summary>
- Gets and sets the ImageAttribute property.
- Image Attribute
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeCustomerGatewaysResult">
- <summary>
- Describe Customer Gateways Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysResult.IsSetCustomerGateway">
- <summary>
- Checks if CustomerGateway property is set
- </summary>
- <returns>true if CustomerGateway property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeCustomerGatewaysResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeCustomerGatewaysResult.CustomerGateway">
- <summary>
- Gets and sets the CustomerGateway property.
- List of customer gateways
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeAvailabilityZonesResponse">
- <summary>
- Describe Availability Zones Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesResponse.IsSetDescribeAvailabilityZonesResult">
- <summary>
- Checks if DescribeAvailabilityZonesResult property is set
- </summary>
- <returns>true if DescribeAvailabilityZonesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAvailabilityZonesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAvailabilityZonesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAvailabilityZonesResponse.DescribeAvailabilityZonesResult">
- <summary>
- Gets and sets the DescribeAvailabilityZonesResult property.
- Describe Availability Zones Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteRouteResponse">
- <summary>
- The Response for the
- DeleteRoute operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteRouteResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpnConnectionResult">
- <summary>
- Create Vpn Connection Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionResult.IsSetVpnConnection">
- <summary>
- Checks if VpnConnection property is set
- </summary>
- <returns>true if VpnConnection property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpnConnectionResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpnConnectionResult.VpnConnection">
- <summary>
- Gets and sets the VpnConnection property.
- Vpn connection
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVpcResponse">
- <summary>
- Create Vpc Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcResponse.IsSetCreateVpcResult">
- <summary>
- Checks if CreateVpcResult property is set
- </summary>
- <returns>true if CreateVpcResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVpcResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpcResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVpcResponse.CreateVpcResult">
- <summary>
- Gets and sets the CreateVpcResult property.
- Create Vpc Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateInternetGatewayRequest">
- <summary>
- Creates a new Internet gateway in your AWS account. After creating the Internet gateway, you then attach
- it to a VPC using AttachInternetGateway. For more information about your VPC and Internet gateway,
- go to Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ConsoleOutput">
- <summary>
- Console Output
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ConsoleOutput.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The instance ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConsoleOutput.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConsoleOutput.WithTimestamp(System.String)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The time the output was last updated.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConsoleOutput.IsSetTimestamp">
- <summary>
- Checks if Timestamp property is set
- </summary>
- <returns>true if Timestamp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConsoleOutput.WithOutput(System.String)">
- <summary>
- Sets the Output property
- </summary>
- <param name="output">The console output, Base64 encoded.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConsoleOutput.IsSetOutput">
- <summary>
- Checks if Output property is set
- </summary>
- <returns>true if Output property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ConsoleOutput.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The instance ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConsoleOutput.Timestamp">
- <summary>
- Gets and sets the Timestamp property.
- The time the output was last updated.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ConsoleOutput.Output">
- <summary>
- Gets and sets the Output property.
- The console output, Base64 encoded.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateAddressRequest">
- <summary>
- Associates an elastic IP address with an instance. If the IP address is
- currently assigned to another instance, the IP address is assigned
- to the new instance. This is an idempotent operation. If you enter it more than once,
- Amazon EC2 does not return an error.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The instance to associate with the IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressRequest.WithPublicIp(System.String)">
- <summary>
- Sets the PublicIp property
- </summary>
- <param name="publicIp">IP address that you are assigning to the
- instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressRequest.IsSetPublicIp">
- <summary>
- Checks if PublicIp property is set
- </summary>
- <returns>true if PublicIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressRequest.WithAllocationId(System.String)">
- <summary>
- Sets the AllocationId property
- </summary>
- <param name="allocationId">The allocation ID that AWS returned when you allocated
- the elastic IP address for use with Amazon VPC.
-
- Condition: Required for VPC elastic IP addresses</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressRequest.IsSetAllocationId">
- <summary>
- Checks if AllocationId property is set
- </summary>
- <returns>true if AllocationId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateAddressRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The instance to associate with the IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateAddressRequest.PublicIp">
- <summary>
- Gets and sets the PublicIp property.
- IP address that you are assigning to the
- instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateAddressRequest.AllocationId">
- <summary>
- Gets and sets the AllocationId property.
- The allocation ID that AWS returned when you allocated
- the elastic IP address for use with Amazon VPC.
-
- Condition: Required for VPC elastic IP addresses
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.GetMetricStatisticsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetMetricStatistics operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DescribeAlarmsForMetricRequestMarshaller">
- <summary>
- Describe Alarms For Metric Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.MissingRequiredParameterException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MissingRequiredParameterException.#ctor(System.String)">
- <summary>
- Constructs a new MissingRequiredParameterException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudWatch.Model.MetricDatum">
- <summary>
- <para> The <c>MetricDatum</c> data type encapsulates the information
- sent with PutMetricData to either create a new metric or add new
- values to be aggregated into an existing metric. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricDatum.WithMetricName(System.String)">
- <summary>
- Sets the MetricName property
- </summary>
- <param name="metricName">The value to set for the MetricName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricDatum.WithDimensions(Amazon.CloudWatch.Model.Dimension[])">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricDatum.WithDimensions(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Dimension})">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricDatum.WithTimestamp(System.DateTime)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The value to set for the Timestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricDatum.WithValue(System.Double)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The value to set for the Value property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricDatum.WithStatisticValues(Amazon.CloudWatch.Model.StatisticSet)">
- <summary>
- Sets the StatisticValues property
- </summary>
- <param name="statisticValues">The value to set for the StatisticValues property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.MetricDatum.WithUnit(System.String)">
- <summary>
- Sets the Unit property
- </summary>
- <param name="unit">The value to set for the Unit property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricDatum.MetricName">
- <summary>
- The name of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricDatum.Dimensions">
- <summary>
- A list of dimensions associated with the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricDatum.Timestamp">
- <summary>
- The time stamp used for the metric. If not specified, the default value is set to the time the metric data was received.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricDatum.Value">
- <summary>
- The value for the metric. <important>Although the <c>Value</c> parameter accepts numbers of type <c>Double</c>, Amazon CloudWatch truncates
- values with very large exponents. Values with base-10 exponents greater than 126 (1 x 10^126) are truncated. Likewise, values with base-10
- exponents less than -130 (1 x 10^-130) are also truncated. </important>
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricDatum.StatisticValues">
- <summary>
- A set of statistical values describing the metric.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.MetricDatum.Unit">
- <summary>
- The unit of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, None</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.EnableAlarmActionsRequest">
- <summary>
- Container for the parameters to the EnableAlarmActions operation.
- <para> Enables actions for the specified alarms. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.EnableAlarmActions(Amazon.CloudWatch.Model.EnableAlarmActionsRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.EnableAlarmActionsRequest.WithAlarmNames(System.String[])">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.EnableAlarmActionsRequest.WithAlarmNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.EnableAlarmActionsRequest.AlarmNames">
- <summary>
- The names of the alarms to enable actions for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest">
- <summary>
- The SetStreamingDistributionConfigRequest contains the parameters used for the
- SetStreamingDistributionConfig operation.
- The ETag parameter is used if you wish to specify the ETag to match with the
- ETag of the StreamingDistribution with the Id specified.
- <br />Required Parameters: Id
- <br />Required Parameters: StreamingDistributionConfig
- <br />Required Parameters: ETag of the Streaming Distribution. This value can
- be retrieved via a call to GetStreamingDistributionInfo.
- </summary>
- <remarks>
- If you want to serve private content, you need to:
- <list type="bullet">
- <item>Associate an Origin Access Identity with the StreamingDistributionConfig</item>
- <item>Associate TrustedSigners with the StreamingDistributionConfig if you want to
- serve content via Signed URLs</item>
- </list>
- </remarks>
- <seealso cref="T:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig"/>
- <seealso cref="T:Amazon.CloudFront.Model.UrlTrustedSigners"/>
- <seealso cref="P:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.OriginAccessIdentity"/>
- <seealso cref="P:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.TrustedSigners"/>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest.WithId(System.String)">
- <summary>
- Sets the Id property for this request.
- This is the CloudFront Streaming Distribution Id that will be reconfigured
- by this request.
- </summary>
- <param name="id">The value that Id is set to</param>
- <returns>the request with the Id set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest.WithStreamingDistributionConfig(Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig)">
- <summary>
- Sets the StreamingDistributionConfig property for this request.
- </summary>
- <param name="config">The value that StreamingDistributionConfig is set to</param>
- <returns>the request with the Configuration set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest.WithETag(System.String)">
- <summary>
- Sets the ETag property for this request.
- This is the ETag of the CloudFront Streaming Distribution which
- will be reconfigured.
- </summary>
- <param name="etag">The value that ETag is set to</param>
- <returns>the request with the ETag set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest.Id">
- <summary>
- Gets and sets the Id property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest.StreamingDistributionConfig">
- <summary>
- Gets and Sets the StreamingDistributionConfig property.
- The CloudFront Streaming Distribution's configuration will
- be modified to reflect the values in this configuration object.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetStreamingDistributionConfigRequest.ETag">
- <summary>
- Gets and sets the ETag property. This should be the ETag of the
- Streaming Distribution.
- <see cref="P:Amazon.CloudFront.Model.CloudFrontStreamingDistribution.ETag"/>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.OriginProtocolPolicy">
- <summary>
- The origin protocol policy to apply to your origin. If HttpOnly is specified,
- CloudFront will use HTTP only to
- access the origin. If MatchViewer is specified,
- CloudFront will fetch from your origin using HTTP or
- HTTPS, based on the protocol of the viewer request.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CustomOrigin">
- <summary>
- Custom origin information to associate with the distribution.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CustomOrigin.#ctor">
- <summary>
- Initializes a new instance of the CustomOrigin class.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CustomOrigin.#ctor(System.String)">
- <summary>
- Initializes a new instance of the CustomOrigin class.
- </summary>
- <param name="dnsName">The DNS name of your Amazon S3 bucket.</param>
- </member>
- <member name="M:Amazon.CloudFront.Model.CustomOrigin.WithDNSName(System.String)">
- <summary>
- Sets the origin to associate with the distribution.
- For example: www.example.com.
-
- This instance is returned to allow method chaining.
- </summary>
- <param name="dnsName">The DNSName for the origin.</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CustomOrigin.WithHttpPort(System.Int32)">
- <summary>
- Sets the HTTP port.
- This instance is returned to allow method chaining.
- </summary>
- <param name="httpPort">The HTTP port.</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CustomOrigin.WithHttpsPort(System.Int32)">
- <summary>
- Sets the HTTPS port.
- This instance is returned to allow method chaining.
- </summary>
- <param name="httpsPort">The HTTPS port.</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CustomOrigin.WithProtocolPolicy(Amazon.CloudFront.Model.OriginProtocolPolicy)">
- <summary>
- Sets the origin protocol policy to apply to your origin. If HttpOnly is specified,
- CloudFront will use HTTP only to
- access the origin. If MatchViewer is specified,
- CloudFront will fetch from your origin using HTTP or
- HTTPS, based on the protocol of the viewer request.
- This instance is returned to allow method chaining.
- </summary>
- <param name="protocolPolicy">The origin protocol policy.</param>
- <returns>This instance</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CustomOrigin.DNSName">
- <summary>
- Gets or sets the origin to associate with the distribution.
- For example: www.example.com.
- </summary>
- <value>The DNSName for the origin.</value>
- </member>
- <member name="P:Amazon.CloudFront.Model.CustomOrigin.HttpPort">
- <summary>
- Gets or sets the HTTP port.
- </summary>
- <value>The HTTP port.</value>
- </member>
- <member name="P:Amazon.CloudFront.Model.CustomOrigin.HttpsPort">
- <summary>
- Gets or sets the HTTPS port.
- </summary>
- <value>The HTTPS port.</value>
- </member>
- <member name="P:Amazon.CloudFront.Model.CustomOrigin.ProtocolPolicy">
- <summary>
- Gets or sets the origin protocol policy to apply to your origin. If HttpOnly is specified,
- CloudFront will use HTTP only to
- access the origin. If MatchViewer is specified,
- CloudFront will fetch from your origin using HTTP or
- HTTPS, based on the protocol of the viewer request.
- </summary>
- <value>The origin protocol policy.</value>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ValidateTemplateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ValidateTemplate operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ListStackResourcesResultUnmarshaller">
- <summary>
- ListStackResourcesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.LimitExceededException">
- <summary>
- AmazonCloudFormation exception
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.LimitExceededException.#ctor(System.String)">
- <summary>
- Constructs a new LimitExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudFormation.Model.CreateStackResponse">
- <summary>
- Returns information about the CreateStackResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackResponse.CreateStackResult">
- <summary>
- Gets and sets the CreateStackResult property.
- The output for a CreateStack action.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.SuspendProcessesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SuspendProcesses operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ProcessTypeUnmarshaller">
- <summary>
- ProcessType Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.EbsUnmarshaller">
- <summary>
- Ebs Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingNotificationTypesResultUnmarshaller">
- <summary>
- DescribeAutoScalingNotificationTypesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingGroupsResultUnmarshaller">
- <summary>
- DescribeAutoScalingGroupsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingGroupsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeAutoScalingGroups operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAdjustmentTypesResultUnmarshaller">
- <summary>
- DescribeAdjustmentTypesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.AdjustmentTypeUnmarshaller">
- <summary>
- AdjustmentType Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupResult">
- <summary>
- <para> The output for the TerminateInstanceInAutoScalingGroup action. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupResult.WithActivity(Amazon.AutoScaling.Model.Activity)">
- <summary>
- Sets the Activity property
- </summary>
- <param name="activity">The value to set for the Activity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.TerminateInstanceInAutoScalingGroupResult.Activity">
- <summary>
- A Scaling Activity.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.SuspendProcessesResponse">
- <summary>
- Returns information about the SuspendProcesses response metadata.
- The SuspendProcesses operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.SuspendedProcess">
- <summary>
- <para> An Auto Scaling process that has been suspended. For more information, see ProcessType. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SuspendedProcess.WithProcessName(System.String)">
- <summary>
- Sets the ProcessName property
- </summary>
- <param name="processName">The value to set for the ProcessName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SuspendedProcess.WithSuspensionReason(System.String)">
- <summary>
- Sets the SuspensionReason property
- </summary>
- <param name="suspensionReason">The value to set for the SuspensionReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SuspendedProcess.ProcessName">
- <summary>
- The name of the suspended process.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SuspendedProcess.SuspensionReason">
- <summary>
- The reason that the process was suspended.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ResumeProcessesResponse">
- <summary>
- Returns information about the ResumeProcesses response metadata.
- The ResumeProcesses operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest">
- <summary>
- Container for the parameters to the DescribeAutoScalingInstances operation.
- <para> Returns a description of each Auto Scaling instance in the InstanceIds list. If a list is not provided, the service returns the full
- details of all instances up to a maximum of fifty. </para> <para> This action supports pagination by returning a token if there are more
- pages to retrieve. To get the next page, call this action again with the returned token as the NextToken parameter. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeAutoScalingInstances(Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest.WithInstanceIds(System.String[])">
- <summary>
- Adds elements to the InstanceIds collection
- </summary>
- <param name="instanceIds">The values to add to the InstanceIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest.WithInstanceIds(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the InstanceIds collection
- </summary>
- <param name="instanceIds">The values to add to the InstanceIds collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest.InstanceIds">
- <summary>
- The list of Auto Scaling instances to describe. If this list is omitted, all auto scaling instances are described. The list of requested
- instances cannot contain more than 50 items. If unknown instances are requested, they are ignored with no error.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest.MaxRecords">
- <summary>
- The maximum number of Auto Scaling instances to be described with each call.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 50</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingInstancesRequest.NextToken">
- <summary>
- The token returned by a previous call to indicate that there is more data available.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAdjustmentTypesResponse">
- <summary>
- Returns information about the DescribeAdjustmentTypesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAdjustmentTypesResponse.DescribeAdjustmentTypesResult">
- <summary>
- Gets and sets the DescribeAdjustmentTypesResult property.
- The output of the DescribeAdjustmentTypes action.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeletePolicyRequest">
- <summary>
- Container for the parameters to the DeletePolicy operation.
- <para>Deletes a policy created by PutScalingPolicy </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DeletePolicy(Amazon.AutoScaling.Model.DeletePolicyRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeletePolicyRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeletePolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DeletePolicyRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DeletePolicyRequest.PolicyName">
- <summary>
- The name or PolicyARN of the policy you want to delete
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.AutoScalingGroup">
- <summary>
- <para> The AutoScalingGroup data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithAutoScalingGroupARN(System.String)">
- <summary>
- Sets the AutoScalingGroupARN property
- </summary>
- <param name="autoScalingGroupARN">The value to set for the AutoScalingGroupARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithMinSize(System.Int32)">
- <summary>
- Sets the MinSize property
- </summary>
- <param name="minSize">The value to set for the MinSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithMaxSize(System.Int32)">
- <summary>
- Sets the MaxSize property
- </summary>
- <param name="maxSize">The value to set for the MaxSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithDesiredCapacity(System.Int32)">
- <summary>
- Sets the DesiredCapacity property
- </summary>
- <param name="desiredCapacity">The value to set for the DesiredCapacity property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithDefaultCooldown(System.Int32)">
- <summary>
- Sets the DefaultCooldown property
- </summary>
- <param name="defaultCooldown">The value to set for the DefaultCooldown property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithLoadBalancerNames(System.String[])">
- <summary>
- Adds elements to the LoadBalancerNames collection
- </summary>
- <param name="loadBalancerNames">The values to add to the LoadBalancerNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithLoadBalancerNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the LoadBalancerNames collection
- </summary>
- <param name="loadBalancerNames">The values to add to the LoadBalancerNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithHealthCheckType(System.String)">
- <summary>
- Sets the HealthCheckType property
- </summary>
- <param name="healthCheckType">The value to set for the HealthCheckType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithHealthCheckGracePeriod(System.Int32)">
- <summary>
- Sets the HealthCheckGracePeriod property
- </summary>
- <param name="healthCheckGracePeriod">The value to set for the HealthCheckGracePeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithInstances(Amazon.AutoScaling.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithInstances(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithCreatedTime(System.DateTime)">
- <summary>
- Sets the CreatedTime property
- </summary>
- <param name="createdTime">The value to set for the CreatedTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithSuspendedProcesses(Amazon.AutoScaling.Model.SuspendedProcess[])">
- <summary>
- Adds elements to the SuspendedProcesses collection
- </summary>
- <param name="suspendedProcesses">The values to add to the SuspendedProcesses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithSuspendedProcesses(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.SuspendedProcess})">
- <summary>
- Adds elements to the SuspendedProcesses collection
- </summary>
- <param name="suspendedProcesses">The values to add to the SuspendedProcesses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithPlacementGroup(System.String)">
- <summary>
- Sets the PlacementGroup property
- </summary>
- <param name="placementGroup">The value to set for the PlacementGroup property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithVPCZoneIdentifier(System.String)">
- <summary>
- Sets the VPCZoneIdentifier property
- </summary>
- <param name="vPCZoneIdentifier">The value to set for the VPCZoneIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithEnabledMetrics(Amazon.AutoScaling.Model.EnabledMetric[])">
- <summary>
- Adds elements to the EnabledMetrics collection
- </summary>
- <param name="enabledMetrics">The values to add to the EnabledMetrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.AutoScalingGroup.WithEnabledMetrics(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.EnabledMetric})">
- <summary>
- Adds elements to the EnabledMetrics collection
- </summary>
- <param name="enabledMetrics">The values to add to the EnabledMetrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.AutoScalingGroupName">
- <summary>
- Specifies the name of the group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.AutoScalingGroupARN">
- <summary>
- The Amazon Resource Name (ARN) of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.LaunchConfigurationName">
- <summary>
- Specifies the name of the associated <a>LaunchConfiguration</a>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.MinSize">
- <summary>
- Contains the minimum size of the AutoScalingGroup.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.MaxSize">
- <summary>
- Contains the maximum size of the AutoScalingGroup.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.DesiredCapacity">
- <summary>
- Specifies the desired capacity for the AutoScalingGroup.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.DefaultCooldown">
- <summary>
- The number of seconds after a scaling activity completes before any further scaling activities can start.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.AvailabilityZones">
- <summary>
- Contains a list of availability zones for the group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.LoadBalancerNames">
- <summary>
- A list of load balancers associated with this Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.HealthCheckType">
- <summary>
- The service of interest for the health status check, either "EC2" for Amazon EC2 or "ELB" for Elastic Load Balancing.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.HealthCheckGracePeriod">
- <summary>
- The length of time that Auto Scaling waits before checking an instance's health status. The grace period begins when an instance comes into
- service.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.Instances">
- <summary>
- Provides a summary list of EC2 instances.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.CreatedTime">
- <summary>
- Specifies the date and time the Auto Scaling group was created.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.SuspendedProcesses">
- <summary>
- Suspended processes associated with this Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.PlacementGroup">
- <summary>
- The name of the cluster placement group, if applicable. For more information, go to <a
- href="http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/using_cluster_computing.html"> Using Cluster Instances</a> in the Amazon EC2
- User Guide.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.VPCZoneIdentifier">
- <summary>
- The identifier for the VPC connection, if applicable.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.AutoScalingGroup.EnabledMetrics">
- <summary>
- A list of metrics enabled for this Auto Scaling group.
-
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Statement">
- <summary>
- A statement is the formal description of a single permission, and is always
- contained within a policy object.
- <para>
- A statement describes a rule for allowing or denying access to a specific AWS
- resource based on how the resource is being accessed, and who is attempting
- to access the resource. Statements can also optionally contain a list of
- conditions that specify when a statement is to be honored.
- </para>
- <para>
- For example, consider a statement that:
- <list type="definition">
- <item>
- <term>A is the prinicpal</term>
- <description>The AWS account that is making a request to
- access or modify one of your AWS resources.
- </description>
- </item>
- <item>
- <term>B is the action</term>
- <description>the way in which your AWS resource is being accessed or modified, such
- as sending a message to an Amazon SQS queue, or storing an object in an Amazon S3 bucket.
- </description>
- </item>
- <item>
- <term>C is the resource</term>
- <description>your AWS entity that the principal wants to access, such
- as an Amazon SQS queue, or an object stored in Amazon S3.
- </description>
- </item>
- <item>
- <term>D is the set of conditions</term>
- <description>optional constraints that specify when to allow or deny
- access for the principal to access your resource. Many expressive conditions are available,
- some specific to each service. For example you can use date conditions to allow access to
- your resources only after or before a specific time.
- </description>
- </item>
- </list>
- </para>
- <para>
- There are many resources and conditions available for use in statements, and
- you can combine them to form fine grained custom access control polices.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Statement.#ctor(Amazon.Auth.AccessControlPolicy.Statement.StatementEffect)">
- <summary>
- Constructs a new access control policy statement with the specified
- effect.
- <para>
- Before a statement is valid and can be sent to AWS, callers must set the
- principals, resources, and actions (as well as any optional conditions)
- involved in the statement.
- </para>
- </summary>
- <param name="effect">The effect this statement has (allowing access or denying
- access) when all conditions, resources, principals, and
- actions are matched.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Statement.WithId(System.String)">
- <summary>
- Sets the ID for this statement and returns the updated statement so
- multiple calls can be chained together.
- <para>
- Statement IDs serve to help keep track of multiple statements, and are
- often used to give the statement a meaningful, human readable name.
- </para>
- <para>
- Developers should be careful to not use the same statement ID for
- multiple statements in the same policy. Reusing the same statement ID in
- different policies is not a problem.
- </para>
- </summary>
- <param name="id">The new statement ID for this statement.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Statement.WithActionIdentifiers(Amazon.Auth.AccessControlPolicy.ActionIdentifier[])">
- <summary>
- Sets the list of actions to which this policy statement applies and
- returns this updated Statement object so that additional method calls can
- be chained together.
- <para>
- Actions limit a policy statement to specific service operations that are
- being allowed or denied by the policy statement. For example, you might
- want to allow any AWS user to post messages to your SQS queue using the
- SendMessage action, but you don't want to allow those users other actions
- such as ReceiveMessage or DeleteQueue.
- </para>
- </summary>
- <param name="actions">The list of actions to which this statement applies.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Statement.WithResources(Amazon.Auth.AccessControlPolicy.Resource[])">
- <summary>
- Sets the resources associated with this policy statement and returns this
- updated Statement object so that additional method calls can be chained
- together.
- <para>
- Resources are what a policy statement is allowing or denying access to,
- such as an Amazon SQS queue or an Amazon SNS topic.
- </para>
- <para>
- Note that some services allow only one resource to be specified per
- policy statement.
- </para>
- </summary>
- <param name="resources">The resources associated with this policy statement.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Statement.WithConditions(Amazon.Auth.AccessControlPolicy.Condition[])">
- <summary>
- Sets the conditions associated with this policy statement, and returns
- this updated Statement object so that additional method calls can be
- chained together.
- <para>
- Conditions allow policy statements to be conditionally evaluated based on
- the many available condition types.
- </para>
- <para>
- For example, a statement that allows access to an Amazon SQS queue could
- use a condition to only apply the effect of that statement for requests
- that are made before a certain date, or that originate from a range of IP
- addresses.
- </para>
- <para>
- Multiple conditions can be included in a single statement, and all
- conditions must evaluate to true in order for the statement to take
- effect.
- </para>
- </summary>
- <param name="conditions">The conditions associated with this policy statement.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Statement.WithPrincipals(Amazon.Auth.AccessControlPolicy.Principal[])">
- <summary>
- Sets the principals associated with this policy statement, and returns
- this updated Statement object. Principals control which AWS accounts are
- affected by this policy statement.
- <para>
- If you don't want to restrict your policy to specific users, you can use
- <see cref="F:Amazon.Auth.AccessControlPolicy.Principal.AllUsers"/> to apply the policy to any user trying to
- access your resource.
- </para>
- </summary>
- <param name="principals">The list of principals associated with this policy statement.</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Statement.Id">
- <summary>
- Gets and Sets the ID for this statement. Statement IDs serve to help keep track
- of multiple statements, and are often used to give the statement a
- meaningful, human readable name.
- <para>
- Developers should be careful to not use the same statement ID for
- multiple statements in the same policy. Reusing the same statement ID in
- different policies is not a problem.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Statement.Effect">
- <summary>
- Gets and Sets the result effect of this policy statement when it is evaluated.
- A policy statement can either allow access or explicitly
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Statement.Actions">
- <summary>
- Gets and Sets the list of actions to which this policy statement applies.
- Actions limit a policy statement to specific service operations that are
- being allowed or denied by the policy statement. For example, you might
- want to allow any AWS user to post messages to your SQS queue using the
- SendMessage action, but you don't want to allow those users other actions
- such as ReceiveMessage or DeleteQueue.
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Statement.Resources">
- <summary>
- Gets and Sets the resources associated with this policy statement. Resources
- are what a policy statement is allowing or denying access to, such as an
- Amazon SQS queue or an Amazon SNS topic.
- <para>
- Note that some services allow only one resource to be specified per
- policy statement.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Statement.Conditions">
- <summary>
- Gets and Sets the conditions associated with this policy statement. Conditions
- allow policy statements to be conditionally evaluated based on the many
- available condition types.
- <para>
- For example, a statement that allows access to an Amazon SQS queue could
- use a condition to only apply the effect of that statement for requests
- that are made before a certain date, or that originate from a range of IP
- addresses.
- </para>
- <para>
- When multiple conditions are included in a single statement, all
- conditions must evaluate to true in order for the statement to take
- effect.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Statement.Principals">
- <summary>
- Gets and Sets the principals associated with this policy statement, indicating
- which AWS accounts are affected by this policy statement.
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Statement.StatementEffect">
- <summary>
- The effect is the result that you want a policy statement to return at
- evaluation time. A policy statement can either allow access or explicitly
- deny access.
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ResourceFactory">
- <summary>
- A factory for creating resources to be used in the policy.
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ResourceFactory.NewS3BucketResource(System.String)">
- <summary>
- Constructs a new bucket resource that represents the the specified bucket
- but <b>not any of the contained objects</b>.
- </summary>
- <param name="bucketName">The name of the bucket represented by this AWS access control
- policy resource.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ResourceFactory.NewS3ObjectResource(System.String,System.String)">
- <summary>
- Constructs a new object resource that represents the specified objects.
- The keyPattern argument may contain the '*' wildcard to match multiple
- objects. For example, an object resource created for bucket 'mybucket'
- and key pattern 'foo*' will match any object stored in 'mybucket' with a
- key that starts with 'foo'.
- </summary>
- <param name="bucketName">The name of the bucket containing the object or objects
- represented by this resource.</param>
- <param name="keyPattern">The key or key pattern, which can optionally contain the '*'
- wildcard to include multiple objects in the resource.</param>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.ResourceFactory.NewSQSQueueResource(System.String,System.String)">
- <summary>
- Constructs a new SQS queue resource for an access control policy. A
- policy statement using this resource will allow or deny actions on the
- specified queue.
- </summary>
- <param name="accountId">The AWS account ID of the queue owner.</param>
- <param name="queueName">The name of the Amazon SQS queue.</param>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Condition">
- <summary>
- AWS access control policy conditions are contained in <see cref="T:Amazon.Auth.AccessControlPolicy.Statement"/>
- objects, and affect when a statement is applied. For example, a statement
- that allows access to an Amazon SQS queue could use a condition to only apply
- the effect of that statement for requests that are made before a certain
- date, or that originate from a range of IP addresses.
- <para>
- Multiple conditions can be included in a single statement, and all conditions
- must evaluate to true in order for the statement to take effect.
- </para>
- <para>
- The set of conditions is D in the statement
- "A has permission to do B to C where D applies."
- </para>
- <para>
- A condition is composed of three parts:
- <list type="definition">
- <item>
- <term>Condition Key</term>
- <description>The condition key declares which value of a
- request to pull in and compare against when a policy is evaluated by AWS. For
- example, using <see cref="F:Amazon.Auth.AccessControlPolicy.ConditionFactory.SOURCE_IP_CONDITION_KEY"/> will cause
- AWS to pull in the current request's source IP as the first value to compare
- against every time your policy is evaluated.
- </description>
- </item>
- <item>
- <term>Comparison Type</term>
- <description>This is a static value used as the second value
- in the comparison when your policy is evaluated. Depending on the comparison
- type, this value can optionally use wildcards. See the documentation for
- individual comparison types for more information.
- </description>
- </item>
- <item>
- <term>Comparison Value</term>
- <description>This is a static value used as the second value
- in the comparison when your policy is evaluated. Depending on the comparison
- type, this value can optionally use wildcards. See the documentation for
- individual comparison types for more information.
- </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Condition.Type">
- <summary>
- Gets the type of this condition.
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Condition.ConditionKey">
- <summary>
- Gets and Sets the name of the condition key involved in this condition.
- Condition keys are predefined values supported by AWS that provide input
- to a condition's evaluation, such as the current time, or the IP address
- of the incoming request.
- <para>
- Your policy is evaluated for each incoming request, and condition keys
- specify what information to pull out of those incoming requests and plug
- into the conditions in your policy.
- </para>
- </summary>
- </member>
- <member name="P:Amazon.Auth.AccessControlPolicy.Condition.Values">
- <summary>
- Gets and Sets the values specified for this access control policy condition.
- For example, in a condition that compares the incoming IP address of a
- request to a specified range of IP addresses, the range of IP addresses
- is the single value in the condition.
- <para>
- Most conditions accept only one value, but multiple values are possible.
- </para>
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Internal.JsonPolicyWriter">
- <summary>
- Serializes an AWS policy object to a JSON string, suitable for sending to an
- AWS service.
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Internal.JsonPolicyWriter.WritePolicyToString(Amazon.Auth.AccessControlPolicy.Policy)">
- Converts the specified AWS policy object to a JSON string, suitable for
- passing to an AWS service.
-
- @param policy
- The AWS policy object to convert to a JSON string.
-
- @return The JSON string representation of the specified policy object.
-
- @throws IllegalArgumentException
- If the specified policy is null or invalid and cannot be
- serialized to a JSON string.
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Internal.JsonPolicyWriter.writePrincipals(Amazon.Auth.AccessControlPolicy.Statement,ThirdParty.Json.LitJson.JsonWriter)">
- <summary>
- Uses the specified generator to write the JSON data for the principals in
- the specified policy statement.
- </summary>
- </member>
- <member name="M:Amazon.Auth.AccessControlPolicy.Internal.JsonPolicyWriter.sortConditionsByTypeAndKey(System.Collections.Generic.IList{Amazon.Auth.AccessControlPolicy.Condition})">
- <summary>
- This sorts the conditions by condition type and key with the list of values for that combination.
- </summary>
- <param name="conditions">The list of conditions to be sorted.</param>
- <returns></returns>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.Internal.JsonPolicyReader">
- <summary>
- Deserializes a JSON string into a AWS policy object.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ListQueuesRequest">
- <summary>
- he ListQueues action returns a list of your queues. The maximum number of queues that can be returned is 1000.
- If you specify a value for the optional QueueNamePrefix parameter, only queues with a name beginning with the
- specified value are returned.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesRequest.WithQueueNamePrefix(System.String)">
- <summary>
- Sets the QueueNamePrefix property
- </summary>
- <param name="queueNamePrefix">String to use for filtering the list results. Only those queues whose name begins with the specified string are returned.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesRequest.IsSetQueueNamePrefix">
- <summary>
- Checks if QueueNamePrefix property is set
- </summary>
- <returns>true if QueueNamePrefix property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesRequest.WithAttribute(Amazon.SQS.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Name and value pair of an attribute associated with the queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ListQueuesRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ListQueuesRequest.QueueNamePrefix">
- <summary>
- Gets and sets the QueueNamePrefix property.
- String to use for filtering the list results. Only those queues whose name begins with the specified string are returned.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ListQueuesRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.SetTopicAttributesResponse">
- <summary>
- Encapsulates the metadata and result of the SetTopicAttributes action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.SetTopicAttributesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.SetTopicAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.PublishResult">
- <summary>
- Encapsulates the result of the Publish action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishResult.IsSetMessageId">
- <summary>
- Checks if MessageId property is set
- </summary>
- <returns>true if MessageId property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.PublishResult.MessageId">
- <summary>
- Gets and sets the MessageId property.
- Unique identifier assigned to the published message.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResult">
- <summary>
- Encapsulates the result of the ListSubscriptionsByTopic action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResult.IsSetSubscriptions">
- <summary>
- Checks if Subscriptions property is set
- </summary>
- <returns>true if Subscriptions property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResult.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResult.Subscriptions">
- <summary>
- Gets and sets the Subscriptions property.
- A list of subscriptions.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicResult.NextToken">
- <summary>
- Gets and sets the NextToken property.
- Token to pass along to the next ListSubscriptionsByTopic request. This element is returned if there are more subscriptions to retrieve.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.GetTopicAttributesResult">
- <summary>
- Encapsulates the result of the GetTopicAttributes action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesResult.IsSetAttributes">
- <summary>
- Checks if Attributes property is set
- </summary>
- <returns>true if Attributes property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.GetTopicAttributesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.GetTopicAttributesResult.Attributes">
- <summary>
- Gets and sets the Attributes property.
- A map of the topic's attributes. Attributes in this map include the following:
- <ul>
- <li>TopicArn -- the topic's ARN</li>
- <li>Owner -- the AWS account ID of the topic's owner</li>
- <li>Policy -- the JSON serialization of the topic's access control policy</li>
- <li>DisplayName -- the human-readable name used in the "From" field for notifications
- to email and email-json endpoints</li>
- </ul>
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.Error">
- <summary>
- Error associated with the request.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The error type. There are two types of error codes: client and server.
- these error codes are prefixed with Client. For example: Client.AuthFailure.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.WithCode(System.String)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">The specific error code. See the Load Balancing developer documentation for more details.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">A summary of the error.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.WithDetail(System.Object)">
- <summary>
- Sets the Detail property
- </summary>
- <param name="detail">Details associated with the error.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.Error.IsSetDetail">
- <summary>
- Checks if Detail property is set
- </summary>
- <returns>true if Detail property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Error.Type">
- <summary>
- Gets and sets the Type property.
- The error type. There are two types of error codes: client and server.
- these error codes are prefixed with Client. For example: Client.AuthFailure.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Error.Code">
- <summary>
- Gets and sets the Code property.
- The specific error code. See the Load Balancing developer documentation for more details.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Error.Message">
- <summary>
- Gets and sets the Message property.
- A summary of the error.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.Error.Detail">
- <summary>
- Gets and sets the Detail property.
- Details associated with the error.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.CreateTopicRequest">
- <summary>
- The CreateTopic action creates a topic to which notifications can be published. Users can create
- at most 25 topics. This action is idempotent, so if the requester
- already owns a topic with the specified name, that topic's ARN will be
- returned without creating a new topic.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicRequest.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">Name property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.CreateTopicRequest.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.CreateTopicRequest.Name">
- <summary>
- Gets and sets the Name property.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.RawMessage">
- <summary>
- <para>Represents the raw data of the message.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.RawMessage.#ctor">
- <summary>
- Default constructor for a new RawMessage object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.RawMessage.#ctor(System.IO.MemoryStream)">
- <summary>
- Constructs a new RawMessage object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="data"> The raw data of the message. The client must ensure that the message format complies with Internet email standards
- regarding email header fields, MIME types, MIME encoding, and base64 encoding (if necessary). For more information, go to the <a
- href="http://docs.amazonwebservices.com/ses/latest/DeveloperGuide">Amazon SES Developer Guide</a>. </param>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.RawMessage.WithData(System.IO.MemoryStream)">
- <summary>
- Sets the Data property
- </summary>
- <param name="data">The value to set for the Data property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.RawMessage.Data">
- <summary>
- The raw data of the message. The client must ensure that the message format complies with Internet email standards regarding email header
- fields, MIME types, MIME encoding, and base64 encoding (if necessary). For more information, go to the <a
- href="http://docs.amazonwebservices.com/ses/latest/DeveloperGuide">Amazon SES Developer Guide</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.ErrorResponse">
- <summary>
- A list of errors associated with a request returned by Amazon SimpleDB.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ErrorResponse.WithError(Amazon.SimpleDB.Model.Error[])">
- <summary>
- Sets the Error property
- </summary>
- <param name="list">A specific error associated with a Amazon SimpleDB request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ErrorResponse.IsSetError">
- <summary>
- Checks if Error property is set
- </summary>
- <returns>true if Error property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ErrorResponse.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">A unique ID for tracking the request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ErrorResponse.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ErrorResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ErrorResponse.Error">
- <summary>
- Gets and sets the Error property.
- A specific error associated with a Amazon SimpleDB request.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ErrorResponse.RequestId">
- <summary>
- Gets and sets the RequestId property.
- A unique ID for tracking the request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DomainMetadataResponse">
- <summary>
- Returns information about the domain, including when the domain was created, the number of items and
- attributes, and the size of attribute names and values.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResponse.WithDomainMetadataResult(Amazon.SimpleDB.Model.DomainMetadataResult)">
- <summary>
- Sets the DomainMetadataResult property
- </summary>
- <param name="domainMetadataResult">Returns information about the domain, including when the domain was created, the number of items and
- attributes, and the size of attribute names and values.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResponse.IsSetDomainMetadataResult">
- <summary>
- Checks if DomainMetadataResult property is set
- </summary>
- <returns>true if DomainMetadataResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResponse.DomainMetadataResult">
- <summary>
- Gets and sets the DomainMetadataResult property.
- Returns information about the domain, including when the domain was created, the number of items and
- attributes, and the size of attribute names and values.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.SetNotificationConfigurationRequest">
- <summary>
- The SetNotificationConfigurationRequest contains the parameters used for the SetNotificationConfiguration operation.
- If the NotificationConfiguration is null or empty then the current configuration will be cleared.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.SetNotificationConfigurationRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket the request will get the location for.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetNotificationConfigurationRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.SetNotificationConfigurationRequest.WithNotificationConfiguration(Amazon.S3.Model.NotificationConfigurationList)">
- <summary>
- Sets the NotificationConfiguration property for this request.
- </summary>
- <param name="notificationConfig">The value that NotificationConfiguration is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.S3.Model.SetNotificationConfigurationRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.SetNotificationConfigurationRequest.NotificationConfiguration">
- <summary>
- Gets and sets the NotificationConfiguration property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DisableBucketLoggingRequest">
- <summary>
- The DisableBucketLoggingRequest contains the parameters used for the DisableBucketLogging operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3BucketLoggingConfig">
- <summary>
- BucketLoggingConfig represents a configuration for the S3 bucket
- logging operatons. This includes a target bucket name which is where
- the logs will be stored, a target prefix which is the prefix assigned
- to all log files, and a List of grants which will set the AccessControl
- for the logs.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.AddGrant(Amazon.S3.Model.S3Grantee,Amazon.S3.Model.S3Permission)">
- <summary>
- Creates a S3Grant and adds it to the list of grants.
- </summary>
- <param name="grantee">The grantee for the grant.</param>
- <param name="permission">The permission for the grantee.</param>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.RemoveGrant(Amazon.S3.Model.S3Grantee,Amazon.S3.Model.S3Permission)">
- <summary>
- Removes a specific permission for the given grantee.
- </summary>
- <param name="grantee">The grantee</param>
- <param name="permission">The permission for the grantee to remove</param>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.RemoveGrant(Amazon.S3.Model.S3Grantee)">
- <summary>
- Removes all permissions for the given grantee.
- </summary>
- <param name="grantee"></param>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.ToString">
- <summary>
- Creates an XML representation of this logging configuration which
- is to be sent to S3 when setting up bucket logging.
- </summary>
- <returns>
- XML representation of the logging configuration
- </returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.WithGrants(Amazon.S3.Model.S3Grant[])">
- <summary>
- Sets the Grants property.
- </summary>
- <param name="args">Grants property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.IsSetGrants">
- <summary>
- Checks if Grants property is set.
- </summary>
- <returns>true if Grants property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.WithTargetBucketName(System.String)">
- <summary>
- Sets the TargetBucketName property.
- </summary>
- <param name="targetBucketName">TargetBucketName property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.IsSetTargetBucketName">
- <summary>
- Checks if TargetBucketName property is set.
- </summary>
- <returns>true if TargetBucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.WithTargetPrefix(System.String)">
- <summary>
- Sets the TargetPrefix property.
- If no value is set for the property, the default value
- for the TargetPrefix is the empty string
- </summary>
- <param name="targetPrefix">TargetPrefix property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3BucketLoggingConfig.IsSetTargetPrefix">
- <summary>
- Checks if TargetPrefix property is set to a non-null value.
- </summary>
- <returns>true if TargetPrefix property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3BucketLoggingConfig.Grants">
- <summary>
- Gets and sets the Grants property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3BucketLoggingConfig.TargetBucketName">
- <summary>
- Gets and sets the TargetBucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3BucketLoggingConfig.TargetPrefix">
- <summary>
- Gets and sets the TargetPrefix property.
- The default value for the TargetPrefix is the empty string
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PutBucketWebsiteResponse">
- <summary>
- The PutBucketWebsiteResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.PutBucketPolicyResponse">
- <summary>
- The PutBucketPolicyResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.CompleteMultipartUploadRequest">
- <summary>
- The CompleteMultipartUploadRequest contains the parameters used for the CompleteMultipartUpload method.
- <br />Required Parameters: BucketName, Key, UploadId, PartETags
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket where the S3 Object you are
- creating gets put.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object you create.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.WithUploadId(System.String)">
- <summary>
- Sets the UploadId property for this request.
- This is the upload id for the multipart upload in process.
- </summary>
- <param name="uploadId">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.IsSetUploadId">
- <summary>
- Checks if UploadId property is set.
- </summary>
- <returns>true if UploadId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.WithPartETags(Amazon.S3.Model.PartETag[])">
- <summary>
- Adds the elements from the array in the collection of PartETags for this request.
- </summary>
- <param name="partETags">PartETags that will added to this request.</param>
- <returns>the request with the PartETags set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.WithPartETags(System.Collections.Generic.IEnumerable{Amazon.S3.Model.PartETag})">
- <summary>
- Adds the elements from the array in the collection of PartETags for this request.
- </summary>
- <param name="partETags">PartETags that will added to this request.</param>
- <returns>The request with the PartETags set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.WithPartETags(Amazon.S3.Model.UploadPartResponse[])">
- <summary>
- Transforms the UploadPartResponses into PartETags and adds them to the request.
- </summary>
- <param name="responses">The list of response objects return from UploadParts.</param>
- <returns>The request with the PartETags set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CompleteMultipartUploadRequest.WithPartETags(System.Collections.Generic.IEnumerable{Amazon.S3.Model.UploadPartResponse})">
- <summary>
- Transforms the UploadPartResponses into PartETags and adds them to the request.
- </summary>
- <param name="responses">The list of response objects return from UploadParts.</param>
- <returns>The request with the PartETags set</returns>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadRequest.UploadId">
- <summary>
- Gets and sets the UploadId property.
- This is the upload id for the multipart upload in process.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CompleteMultipartUploadRequest.PartETags">
- <summary>
- Gets and sets the PartETags property. This collection contains an entry for every part uploaded
- with its part number and etag.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeEngineDefaultParametersResultUnmarshaller">
- <summary>
- Result Unmarshaller for DescribeEngineDefaultParameters operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBInstancesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeDBInstances operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBParameterGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateDBParameterGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ReservedDBInstancesOfferingNotFoundException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstancesOfferingNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new ReservedDBInstancesOfferingNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.PendingModifiedValues">
- <summary>
- <para> This data type is used as a response element in the ModifyDBInstance action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.PendingModifiedValues.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PendingModifiedValues.WithAllocatedStorage(System.Int32)">
- <summary>
- Sets the AllocatedStorage property
- </summary>
- <param name="allocatedStorage">The value to set for the AllocatedStorage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PendingModifiedValues.WithMasterUserPassword(System.String)">
- <summary>
- Sets the MasterUserPassword property
- </summary>
- <param name="masterUserPassword">The value to set for the MasterUserPassword property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PendingModifiedValues.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PendingModifiedValues.WithBackupRetentionPeriod(System.Int32)">
- <summary>
- Sets the BackupRetentionPeriod property
- </summary>
- <param name="backupRetentionPeriod">The value to set for the BackupRetentionPeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PendingModifiedValues.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.PendingModifiedValues.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.PendingModifiedValues.DBInstanceClass">
- <summary>
- Contains the new <c>DBInstanceClass</c> for the DB Instance that will be applied or is in progress.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PendingModifiedValues.AllocatedStorage">
- <summary>
- Contains the new <c>AllocatedStorage</c> size for the DB Instance that will be applied or is in progress.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PendingModifiedValues.MasterUserPassword">
- <summary>
- Contains the pending or in-progress change of the master credentials for the DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PendingModifiedValues.Port">
- <summary>
- Specifies the pending port for the DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PendingModifiedValues.BackupRetentionPeriod">
- <summary>
- Specifies the pending number of days for which automated backups are retained.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PendingModifiedValues.MultiAZ">
- <summary>
- Indicates that the Single-AZ DB Instance is to change to a Multi-AZ deployment.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.PendingModifiedValues.EngineVersion">
- <summary>
- Indicates the database engine version.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ModifyDBParameterGroupResult">
- <summary>
- <para> Contains the result of a successful invocation of the ModifyDBParameterGroup or ResetDBParameterGroup action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ModifyDBParameterGroupResult.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBParameterGroupResult.DBParameterGroupName">
- <summary>
- The name of the DB Parameter Group.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.InsufficientDBInstanceCapacityException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.InsufficientDBInstanceCapacityException.#ctor(System.String)">
- <summary>
- Constructs a new InsufficientDBInstanceCapacityException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBSecurityGroupAlreadyExistsException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSecurityGroupAlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new DBSecurityGroupAlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBInstanceAlreadyExistsException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstanceAlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new DBInstanceAlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBSecurityGroupResponse">
- <summary>
- Returns information about the CreateDBSecurityGroup response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSecurityGroupResponse.CreateDBSecurityGroupResult">
-
- Gets and sets the CreateDBSecurityGroupResult property.
- Contains the result of a successful invocation of the CreateDBSecurityGroup
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBInstanceResponse">
- <summary>
- Returns information about the CreateDBInstance response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceResponse.CreateDBInstanceResult">
-
- Gets and sets the CreateDBInstanceResult property.
- Contains the result of a successful invocation of the CreateDBInstance
- action.
-
- </member>
- <member name="T:Amazon.ImportExport.Model.Job">
- <summary>
- <para> Representation of a job returned by the ListJobs operation.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.Job.WithJobId(System.String)">
- <summary>
- Sets the JobId property
- </summary>
- <param name="jobId">The value to set for the JobId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.Job.WithCreationDate(System.DateTime)">
- <summary>
- Sets the CreationDate property
- </summary>
- <param name="creationDate">The value to set for the CreationDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.Job.WithIsCanceled(System.Boolean)">
- <summary>
- Sets the IsCanceled property
- </summary>
- <param name="isCanceled">The value to set for the IsCanceled property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.Job.WithJobType(System.String)">
- <summary>
- Sets the JobType property
- </summary>
- <param name="jobType">The value to set for the JobType property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.Job.JobId">
- <summary>
- A unique identifier which refers to a particular job.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.Job.CreationDate">
- <summary>
- Timestamp of the CreateJob request in ISO8601 date format. For example
- "2010-03-28T20:27:35Z".
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.Job.IsCanceled">
- <summary>
- Indicates whether the job was canceled.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.Job.JobType">
- <summary>
- Specifies whether the job to initiate is an import or export job.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Import, Export</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.InvalidAccessKeyIdException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.InvalidAccessKeyIdException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidAccessKeyIdException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.CancelJobResponse">
- <summary>
- Returns information about the CancelJobResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CancelJobResponse.CancelJobResult">
- <summary>
- Gets and sets the CancelJobResult property.
- Output structure for the CancelJob operation.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateGroupResponse">
- <summary>
- Returns information about the UpdateGroup response metadata.
- The UpdateGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateGroupRequest">
- <summary>
- Container for the parameters to the UpdateGroup operation.
- <para>Updates the name and/or the path of the specified group.</para>
- <para><b>IMPORTANT:</b> You should understand the implications of
- changing a group's path or name. For more information, see Renaming
- Users and Groups in Using AWS Identity and Access Management. </para>
- <para><b>NOTE:</b>To change a group name the requester must have
- appropriate permissions on both the source object and the target
- object. For example, to change Managers to MGRs, the entity making
- the request must have permission on Managers and MGRs, or must have
- permission on all (*). For more information about permissions, see
- Permissions and Policies. </para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UpdateGroup(Amazon.IdentityManagement.Model.UpdateGroupRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateGroupRequest.WithNewPath(System.String)">
- <summary>
- Sets the NewPath property
- </summary>
- <param name="newPath">The value to set for the NewPath property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UpdateGroupRequest.WithNewGroupName(System.String)">
- <summary>
- Sets the NewGroupName property
- </summary>
- <param name="newGroupName">The value to set for the NewGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateGroupRequest.GroupName">
- <summary>
- Name of the group to update. If you're changing the name of the group, this is the original name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateGroupRequest.NewPath">
- <summary>
- New path for the group. Only include this if changing the group's path.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>(\u002F)|(\u002F[\u0021-\u007F]+\u002F)</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UpdateGroupRequest.NewGroupName">
- <summary>
- New name for the group. Only include this if changing the group's name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UserUnmarshaller">
- <summary>
- User Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateAccessKeyRequestMarshaller">
- <summary>
- Update Access Key Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.PutGroupPolicyRequestMarshaller">
- <summary>
- Put Group Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListUsersResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListUsers operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetUserPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetUserPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeactivateMFADeviceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeactivateMFADevice operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateGroupResultUnmarshaller">
- <summary>
- CreateGroupResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.MalformedCertificateException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.MalformedCertificateException.#ctor(System.String)">
- <summary>
- Constructs a new MalformedCertificateException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListMFADevicesRequest">
- <summary>
- Container for the parameters to the ListMFADevices operation.
- <para>Lists the MFA devices associated with the specified User
- name.</para> <para>You can paginate the results using the
- <c>MaxItems</c> and <c>Marker</c> parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListMFADevices(Amazon.IdentityManagement.Model.ListMFADevicesRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListMFADevicesRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListMFADevicesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListMFADevicesRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListMFADevicesRequest.UserName">
- <summary>
- Name of the User whose MFA devices you want to list.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListMFADevicesRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListMFADevicesRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of keys you want in the response. If there are additional keys beyond
- the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupPoliciesResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListGroupPolicies action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupPoliciesResult.WithPolicyNames(System.String[])">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupPoliciesResult.WithPolicyNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the PolicyNames collection
- </summary>
- <param name="policyNames">The values to add to the PolicyNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupPoliciesResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupPoliciesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupPoliciesResult.PolicyNames">
- <summary>
- A list of policy names.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupPoliciesResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more policy names to list. If your results were truncated, you can make a subsequent pagination
- request using the <c>Marker</c> request parameter to retrieve more policy names in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupPoliciesResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupPoliciesRequest">
- <summary>
- Container for the parameters to the ListGroupPolicies operation.
- <para>Lists the names of the policies associated with the specified
- group. If there are none, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListGroupPolicies(Amazon.IdentityManagement.Model.ListGroupPoliciesRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupPoliciesRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupPoliciesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupPoliciesRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupPoliciesRequest.GroupName">
- <summary>
- The name of the group to list policies for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupPoliciesRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupPoliciesRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of policy names you want in the response. If there are additional
- policy names beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetUserPolicyRequest">
- <summary>
- Container for the parameters to the GetUserPolicy operation.
- <para>Retrieves the specified policy document for the specified User.
- The returned policy is URL-encoded according to RFC 3986. For more
- information about RFC 3986, go to
- http://www.faqs.org/rfcs/rfc3986.html.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetUserPolicy(Amazon.IdentityManagement.Model.GetUserPolicyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetUserPolicyRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetUserPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserPolicyRequest.UserName">
- <summary>
- Name of the User who the policy is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserPolicyRequest.PolicyName">
- <summary>
- Name of the policy document to get.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetGroupRequest">
- <summary>
- Container for the parameters to the GetGroup operation.
- <para>Returns a list of Users that are in the specified group. You can
- paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetGroup(Amazon.IdentityManagement.Model.GetGroupRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetGroupRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupRequest.GroupName">
- <summary>
- Name of the group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetGroupRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of User names you want in the response. If there are additional User
- names beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.EntityAlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new EntityAlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteLoginProfileResponse">
- <summary>
- Returns information about the DeleteLoginProfile response metadata.
- The DeleteLoginProfile operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest">
- <summary>
- Container for the parameters to the DeactivateMFADevice operation.
- <para>Deactivates the specified MFA device and removes it from
- association with the User name for which it was originally
- enabled.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeactivateMFADevice(Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest.WithSerialNumber(System.String)">
- <summary>
- Sets the SerialNumber property
- </summary>
- <param name="serialNumber">The value to set for the SerialNumber property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest.UserName">
- <summary>
- Name of the User whose MFA device you want to deactivate.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest.SerialNumber">
- <summary>
- The serial number that uniquely identifies the MFA device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>9 - 48</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.DescribeJobFlowsResult">
- <summary>
- <para> The output for the DescribeJobFlows operation. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.DescribeJobFlowsResult.WithJobFlows(Amazon.ElasticMapReduce.Model.JobFlowDetail[])">
- <summary>
- Adds elements to the JobFlows collection
- </summary>
- <param name="jobFlows">The values to add to the JobFlows collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.DescribeJobFlowsResult.JobFlows">
- <summary>
- A list of job flows matching the parameters supplied.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.BootstrapActionDetail">
- <summary>
- <para>Reports the configuration of a bootstrap action in a job
- flow.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.BootstrapActionDetail.WithBootstrapActionConfig(Amazon.ElasticMapReduce.Model.BootstrapActionConfig)">
- <summary>
- Sets the BootstrapActionConfig property
- </summary>
- <param name="bootstrapActionConfig">The value to set for the BootstrapActionConfig property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.BootstrapActionDetail.BootstrapActionConfig">
- <summary>
- A description of the bootstrap action.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.AddInstanceGroupsResponse">
- <summary>
- Returns information about the AddInstanceGroupsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.AddInstanceGroupsResponse.AddInstanceGroupsResult">
- <summary>
- Gets and sets the AddInstanceGroupsResult property.
- Output from an AddInstanceGroups call.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient">
- <summary>
- Implemenation for accessing AmazonElasticMapReduce.
-
- <para> This is the Amazon Elastic MapReduce API Reference Guide. This
- guide is for programmers who need detailed information about the
- Amazon Elastic MapReduce APIs. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonElasticMapReduceClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.#ctor(System.String,System.String,Amazon.ElasticMapReduce.AmazonElasticMapReduceConfig)">
- <summary>
- Constructs AmazonElasticMapReduceClient with AWS Access Key ID, AWS Secret Key and an
- AmazonS3 Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonElasticMapReduceClient Configuration Object</param>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.AddInstanceGroups(Amazon.ElasticMapReduce.Model.AddInstanceGroupsRequest)">
- <summary>
- <para>AddInstanceGroups adds an instance group to a running
- cluster.</para>
- </summary>
-
- <param name="addInstanceGroupsRequest">Container for the necessary
- parameters to execute the AddInstanceGroups service method on
- AmazonElasticMapReduce.</param>
-
- <returns>The response from the AddInstanceGroups service method, as
- returned by AmazonElasticMapReduce.</returns>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.AddJobFlowSteps(Amazon.ElasticMapReduce.Model.AddJobFlowStepsRequest)">
- <summary>
- <para> AddJobFlowSteps adds new steps to a running job flow. A maximum
- of 256 steps are allowed in each job flow. </para> <para> A step
- specifies the location of a JAR file stored either on the master node
- of the job flow or in Amazon S3. Each step is performed by the main
- function of the main class of the JAR file. The main class can be
- specified either in the manifest of the JAR or by using the
- MainFunction parameter of the step. </para> <para> Elastic MapReduce
- executes each step in the order listed. For a step to be considered
- complete, the main function must exit with a zero exit code and all
- Hadoop jobs started while the step was running must have completed and
- run successfully. </para> <para> You can only add steps to a job flow
- that is in one of the following states: STARTING, BOOTSTAPPING,
- RUNNING, or WAITING.</para>
- </summary>
-
- <param name="addJobFlowStepsRequest">Container for the necessary
- parameters to execute the AddJobFlowSteps service method on
- AmazonElasticMapReduce.</param>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.TerminateJobFlows(Amazon.ElasticMapReduce.Model.TerminateJobFlowsRequest)">
- <summary>
- <para> TerminateJobFlows shuts a list of job flows down. When a job
- flow is shut down, any step not yet completed is canceled and the EC2
- instances on which the job flow is running are stopped. Any log files
- not already saved are uploaded to Amazon S3 if a LogUri was specified
- when the job flow was created. </para>
- </summary>
-
- <param name="terminateJobFlowsRequest">Container for the necessary
- parameters to execute the TerminateJobFlows service method on
- AmazonElasticMapReduce.</param>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.DescribeJobFlows(Amazon.ElasticMapReduce.Model.DescribeJobFlowsRequest)">
- <summary>
- <para> DescribeJobFlows returns a list of job flows that match all of
- the supplied parameters. The parameters can include a list of job flow
- IDs, job flow states, and restrictions on job flow creation date and
- time.</para> <para> Regardless of supplied parameters, only job flows
- created within the last two months are returned.</para> <para> If no
- parameters are supplied, then job flows matching either of the
- following criteria are returned:</para>
- <ul>
- <li>Job flows created and completed in the last two weeks</li>
- <li> Job flows created within the last two months that are in one of
- the following states: <c>RUNNING</c> ,
-
- <c>WAITING</c> ,
-
- <c>SHUTTING_DOWN</c> ,
-
- <c>STARTING</c> </li>
-
- </ul>
- <para> Amazon Elastic MapReduce can return a maximum of 512 job flow
- descriptions. </para>
- </summary>
-
- <param name="describeJobFlowsRequest">Container for the necessary
- parameters to execute the DescribeJobFlows service method on
- AmazonElasticMapReduce.</param>
-
- <returns>The response from the DescribeJobFlows service method, as
- returned by AmazonElasticMapReduce.</returns>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.RunJobFlow(Amazon.ElasticMapReduce.Model.RunJobFlowRequest)">
- <summary>
- <para> RunJobFlow creates and starts running a new job flow. The job
- flow will run the steps specified. Once the job flow completes, the
- cluster is stopped and the HDFS partition is lost. To prevent loss of
- data, configure the last step of the job flow to store results in
- Amazon S3. If the JobFlowInstancesDetail : KeepJobFlowAliveWhenNoSteps
- parameter is set to <c>TRUE</c> , the job flow will transition to the
- WAITING state rather than shutting down once the steps have completed.
- </para> <para>A maximum of 256 steps are allowed in each job
- flow.</para> <para>For long running job flows, we recommended that you
- periodically store your results.</para>
- </summary>
-
- <param name="runJobFlowRequest">Container for the necessary parameters
- to execute the RunJobFlow service method on
- AmazonElasticMapReduce.</param>
-
- <returns>The response from the RunJobFlow service method, as returned
- by AmazonElasticMapReduce.</returns>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="M:Amazon.ElasticMapReduce.AmazonElasticMapReduceClient.ModifyInstanceGroups(Amazon.ElasticMapReduce.Model.ModifyInstanceGroupsRequest)">
- <summary>
- <para>ModifyInstanceGroups modifies the number of nodes and
- configuration settings of an instance group. The input parameters
- include the new target instance count for the group and the instance
- group ID. The call will either succeed or fail atomically.</para>
- </summary>
-
- <param name="modifyInstanceGroupsRequest">Container for the necessary
- parameters to execute the ModifyInstanceGroups service method on
- AmazonElasticMapReduce.</param>
-
- <exception cref="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException"/>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.HealthCheckUnmarshaller">
- <summary>
- HealthCheck Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DisableAvailabilityZonesForLoadBalancerRequestMarshaller">
- <summary>
- Disable Availability Zones For Load Balancer Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeregisterInstancesFromLoadBalancerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeregisterInstancesFromLoadBalancer operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DeleteLoadBalancerListenersRequestMarshaller">
- <summary>
- Delete Load Balancer Listeners Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLoadBalancerResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateLoadBalancer operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLBCookieStickinessPolicyResultUnmarshaller">
- <summary>
- CreateLBCookieStickinessPolicyResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateAppCookieStickinessPolicyRequestMarshaller">
- <summary>
- Create App Cookie Stickiness Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.AppCookieStickinessPolicyUnmarshaller">
- <summary>
- AppCookieStickinessPolicy Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription">
- <summary>
- <para> Contains the result of a successful invocation of DescribeLoadBalancers. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.#ctor">
- <summary>
- Default constructor for a new LoadBalancerDescription object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithDNSName(System.String)">
- <summary>
- Sets the DNSName property
- </summary>
- <param name="dNSName">The value to set for the DNSName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithCanonicalHostedZoneName(System.String)">
- <summary>
- Sets the CanonicalHostedZoneName property
- </summary>
- <param name="canonicalHostedZoneName">The value to set for the CanonicalHostedZoneName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithCanonicalHostedZoneNameID(System.String)">
- <summary>
- Sets the CanonicalHostedZoneNameID property
- </summary>
- <param name="canonicalHostedZoneNameID">The value to set for the CanonicalHostedZoneNameID property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithListenerDescriptions(Amazon.ElasticLoadBalancing.Model.ListenerDescription[])">
- <summary>
- Adds elements to the ListenerDescriptions collection
- </summary>
- <param name="listenerDescriptions">The values to add to the ListenerDescriptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithListenerDescriptions(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.ListenerDescription})">
- <summary>
- Adds elements to the ListenerDescriptions collection
- </summary>
- <param name="listenerDescriptions">The values to add to the ListenerDescriptions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithPolicies(Amazon.ElasticLoadBalancing.Model.Policies)">
- <summary>
- Sets the Policies property
- </summary>
- <param name="policies">The value to set for the Policies property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithInstances(Amazon.ElasticLoadBalancing.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithInstances(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithHealthCheck(Amazon.ElasticLoadBalancing.Model.HealthCheck)">
- <summary>
- Sets the HealthCheck property
- </summary>
- <param name="healthCheck">The value to set for the HealthCheck property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithSourceSecurityGroup(Amazon.ElasticLoadBalancing.Model.SourceSecurityGroup)">
- <summary>
- Sets the SourceSecurityGroup property
- </summary>
- <param name="sourceSecurityGroup">The value to set for the SourceSecurityGroup property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.WithCreatedTime(System.DateTime)">
- <summary>
- Sets the CreatedTime property
- </summary>
- <param name="createdTime">The value to set for the CreatedTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.LoadBalancerName">
- <summary>
- Specifies the name associated with the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.DNSName">
- <summary>
- Specifies the external DNS name associated with the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.CanonicalHostedZoneName">
- <summary>
- Provides the name of the Amazon Route 53 hosted zone that is associated with the load balancer. For information on how to associate your
- load balancer with a hosted zone, go to <a
- href="http://docs.amazonwebservices.com/ElasticLoadBalancing/latest/DeveloperGuide/using-domain-names-with-elb.html">Using Domain Names With
- Elastic Load Balancing</a> in the <i>Elastic Load Balancing Developer Guide</i>.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.CanonicalHostedZoneNameID">
- <summary>
- Provides the ID of the Amazon Route 53 hosted zone name that is associated with the load balancer. For information on how to associate or
- disassociate your load balancer with a hosted zone, go to <a
- href="http://docs.amazonwebservices.com/ElasticLoadBalancing/latest/DeveloperGuide/using-domain-names-with-elb.html">Using Domain Names With
- Elastic Load Balancing</a> in the <i>Elastic Load Balancing Developer Guide</i>.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.ListenerDescriptions">
- <summary>
- LoadBalancerPort, InstancePort, Protocol, and PolicyNames are returned in a list of tuples in the ListenerDescriptions element.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.Policies">
- <summary>
- Provides a list of policies defined for the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.AvailabilityZones">
- <summary>
- Specifies a list of Availability Zones.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.Instances">
- <summary>
- Provides a list of EC2 instance IDs for the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.HealthCheck">
- <summary>
- Specifies information regarding the various health probes conducted on the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.SourceSecurityGroup">
- <summary>
- The security group that you can use as part of your inbound rules for your load balancer's back-end Amazon EC2 application instances. To
- disallow traffic from sources other than your load balancer, add a security group rule to your back end instance that specifies this source
- security group as the inbound source.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.LoadBalancerDescription.CreatedTime">
- <summary>
- Provides the date and time the LoadBalancer was created.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerResponse">
- <summary>
- Returns information about the EnableAvailabilityZonesForLoadBalancerResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerResponse.EnableAvailabilityZonesForLoadBalancerResult">
- <summary>
- Gets and sets the EnableAvailabilityZonesForLoadBalancerResult property.
- The output for the EnableAvailabilityZonesForLoadBalancer action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersResponse">
- <summary>
- Returns information about the DescribeLoadBalancersResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DescribeLoadBalancersResponse.DescribeLoadBalancersResult">
- <summary>
- Gets and sets the DescribeLoadBalancersResult property.
- The output for the DescribeLoadBalancers action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyResponse">
- <summary>
- Returns information about the DeleteLoadBalancerPolicyResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyResponse.DeleteLoadBalancerPolicyResult">
- <summary>
- Gets and sets the DeleteLoadBalancerPolicyResult property.
- The output for the DeleteLoadBalancerPolicy action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest">
- <summary>
- Container for the parameters to the UpdateApplicationVersion operation.
- <para> Updates the specified application version to have the specified properties. </para> <para><b>NOTE:</b> If a property (for example,
- description) is not provided, the value remains unchanged. To clear properties, specify an empty string. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateApplicationVersion(Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest.ApplicationName">
- <summary>
- The name of the application associated with this version. If no application is found with this name, <c>UpdateApplication</c> returns an
- <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest.VersionLabel">
- <summary>
- The name of the version to update. If no application version is found with this label, <c>UpdateApplication</c> returns an
- <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionRequest.Description">
- <summary>
- A new description for this release.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.TriggerUnmarshaller">
- <summary>
- Trigger Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RetrieveEnvironmentInfoResultUnmarshaller">
- <summary>
- RetrieveEnvironmentInfoResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.LoadBalancerUnmarshaller">
- <summary>
- LoadBalancer Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEnvironmentsRequestMarshaller">
- <summary>
- Describe Environments Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeConfigurationOptionsRequestMarshaller">
- <summary>
- Describe Configuration Options Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ApplicationVersionDescriptionUnmarshaller">
- <summary>
- ApplicationVersionDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.SourceBundleDeletionException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SourceBundleDeletionException.#ctor(System.String)">
- <summary>
- Constructs a new SourceBundleDeletionException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription">
- <summary>
- <para>Describes the details of a LoadBalancer.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription.WithDomain(System.String)">
- <summary>
- Sets the Domain property
- </summary>
- <param name="domain">The value to set for the Domain property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription.WithListeners(Amazon.ElasticBeanstalk.Model.Listener[])">
- <summary>
- Adds elements to the Listeners collection
- </summary>
- <param name="listeners">The values to add to the Listeners collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription.WithListeners(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.Listener})">
- <summary>
- Adds elements to the Listeners collection
- </summary>
- <param name="listeners">The values to add to the Listeners collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription.LoadBalancerName">
- <summary>
- The name of the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription.Domain">
- <summary>
- The domain name of the LoadBalancer.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.LoadBalancerDescription.Listeners">
- <summary>
- A list of Listeners used by the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest">
- <summary>
- Container for the parameters to the DescribeEnvironmentResources operation.
- <para>Returns AWS resources for this environment.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeEnvironmentResources(Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest.EnvironmentId">
- <summary>
- The ID of the environment to retrieve AWS resource usage data.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesRequest.EnvironmentName">
- <summary>
- The name of the environment to retrieve AWS resource usage data.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsResult">
- <summary>
- <para>The results from a request to change the configuration settings of an environment.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsResult.WithConfigurationSettings(Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription[])">
- <summary>
- Adds elements to the ConfigurationSettings collection
- </summary>
- <param name="configurationSettings">The values to add to the ConfigurationSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsResult.WithConfigurationSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationSettingsDescription})">
- <summary>
- Adds elements to the ConfigurationSettings collection
- </summary>
- <param name="configurationSettings">The values to add to the ConfigurationSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsResult.ConfigurationSettings">
- <summary>
- A list of <a>ConfigurationSettingsDescription</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteApplicationRequest">
- <summary>
- Container for the parameters to the DeleteApplication operation.
- <para> Deletes the specified application along with all associated versions and configurations. </para> <para><b>NOTE:</b>You cannot delete
- an application that has a running environment. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteApplication(Amazon.ElasticBeanstalk.Model.DeleteApplicationRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteApplicationRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteApplicationRequest.ApplicationName">
- <summary>
- The name of the application to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkConfig">
- <summary>
- Configuration for accessing AWS Elastic Beanstalk service
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.AmazonElasticBeanstalkConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.StopInstancesResponse">
- <summary>
- Information returned by a StopInstances request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesResponse.IsSetStopInstancesResult">
- <summary>
- Checks if StopInstancesResult property is set
- </summary>
- <returns>true if StopInstancesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.StopInstancesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.StopInstancesResponse.StopInstancesResult">
- <summary>
- Gets and sets the StopInstancesResult property.
- Result of a StopInstances request.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.StateReason">
- <summary>
- Reason for the state change.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.StateReason.WithCode(System.String)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">Reason code for the state change.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StateReason.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StateReason.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">Message for the state change.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StateReason.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.StateReason.Code">
- <summary>
- Gets and sets the Code property.
- Reason code for the state change.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.StateReason.Message">
- <summary>
- Gets and sets the Message property.
- Message for the state change.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ResetSnapshotAttributeResponse">
- <summary>
- Reset Snapshot Attribute Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResetSnapshotAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetSnapshotAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetSnapshotAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResetSnapshotAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReleaseAddressRequest">
- <summary>
- Releases an elastic IP address associated with
- your account.
-
- If you run this operation on an elastic IP address
- that is already released,
- the address might be assigned to another
- account which will cause Amazon
- EC2 to return an error.
-
- Note -
- releasing an IP address automatically disassociates it from any
- instance with which it is associated. To disassociate an IP
- address without
- releasing it, use the DisassociateAddress
- operation.
-
- Important - after releasing an elastic IP address, it is
- released to the IP
- address pool and might no longer be available to
- your account. Make sure
- to update your DNS records and any servers
- or devices that communicate with the address.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReleaseAddressRequest.WithPublicIp(System.String)">
- <summary>
- Sets the PublicIp property
- </summary>
- <param name="publicIp">The IP address that you are releasing from
- your account.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReleaseAddressRequest.IsSetPublicIp">
- <summary>
- Checks if PublicIp property is set
- </summary>
- <returns>true if PublicIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReleaseAddressRequest.WithAllocationId(System.String)">
- <summary>
- Sets the AllocationId property
- </summary>
- <param name="allocationId">The allocation ID that AWS provided when you allocated
- the address for use with Amazon VPC.
-
- Type: String
- Default: None
- Condition: Required for VPC elastic IP addresses</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReleaseAddressRequest.IsSetAllocationId">
- <summary>
- Checks if AllocationId property is set
- </summary>
- <returns>true if AllocationId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReleaseAddressRequest.PublicIp">
- <summary>
- Gets and sets the PublicIp property.
- The IP address that you are releasing from
- your account.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReleaseAddressRequest.AllocationId">
- <summary>
- Gets and sets the AllocationId property.
- The allocation ID that AWS provided when you allocated
- the address for use with Amazon VPC.
-
- Type: String
- Default: None
- Condition: Required for VPC elastic IP addresses
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.MonitoringSpecification">
- <summary>
- Specifies whether to enable monitoring for the
- Spot Instance.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.MonitoringSpecification.WithEnabled(System.Boolean)">
- <summary>
- Sets the Enabled property
- </summary>
- <param name="enabled">Enable monitoring for the Spot instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.MonitoringSpecification.IsSetEnabled">
- <summary>
- Checks if Enabled property is set
- </summary>
- <returns>true if Enabled property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.MonitoringSpecification.Enabled">
- <summary>
- Gets and sets the Enabled property.
- Enable monitoring for the Spot instance.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportVolumeResult">
- <summary>
- Import Volume Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeResult.IsSetConversionTask">
- <summary>
- Checks if ConversionTask property is set
- </summary>
- <returns>true if ConversionTask property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeResult.ConversionTask">
- <summary>
- Gets and sets the ConversionTask property.
- Information about the import instance task.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.GetConsoleOutputResult">
- <summary>
- Get Console Output Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputResult.IsSetConsoleOutput">
- <summary>
- Checks if ConsoleOutput property is set
- </summary>
- <returns>true if ConsoleOutput property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.GetConsoleOutputResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.GetConsoleOutputResult.ConsoleOutput">
- <summary>
- Gets and sets the ConsoleOutput property.
- Console output
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DetachVolumeResponse">
- <summary>
- Detach Volume Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeResponse.IsSetDetachVolumeResult">
- <summary>
- Checks if DetachVolumeResult property is set
- </summary>
- <returns>true if DetachVolumeResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVolumeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVolumeResponse.DetachVolumeResult">
- <summary>
- Gets and sets the DetachVolumeResult property.
- Detach Volume Result
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVolumeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest">
- <summary>
- Request to describe Spot Instance requests. Spot
- Instances are instances that automatically launch
- when your request price exceeds that Spot Price
- that Amazon EC2 periodically calculates.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest.WithSpotInstanceRequestId(System.String[])">
- <summary>
- Sets the SpotInstanceRequestId property
- </summary>
- <param name="list">The ID of the Spot Instance request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest.IsSetSpotInstanceRequestId">
- <summary>
- Checks if SpotInstanceRequestId property is set
- </summary>
- <returns>true if SpotInstanceRequestId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated
- with the specified SpotInstances.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest.SpotInstanceRequestId">
- <summary>
- Gets and sets the SpotInstanceRequestId property.
- The ID of the Spot Instance request.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotInstanceRequestsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated
- with the specified SpotInstances.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeImageAttributeRequest">
- <summary>
- Returns information about an attribute of an AMI.
- Only one attribute can be specified per call.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeRequest.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">The ID of the AMI for which an attribute will
- be described.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeRequest.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Attribute name to be described.Valid values:
- launchPermission | productCodes | kernel
- | ramdisk | blockDeviceMapping | platform</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImageAttributeRequest.ImageId">
- <summary>
- Gets and sets the ImageId property.
- The ID of the AMI for which an attribute will
- be described.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImageAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Attribute name to be described.Valid values:
- launchPermission | productCodes | kernel
- | ramdisk | blockDeviceMapping | platform
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVpnConnectionRequest">
- <summary>
- Deletes a VPN connection. Use this if you want to delete a VPC and all
- its associated components. Another reason to use this operation is
- if you believe the tunnel credentials for your VPN connection
- have been compromised.
-
- In that situation, you can delete the VPN connection and create a
- new one that has new keys, without needing to delete
- the VPC or VPN gateway. If you create a new VPN
- connection, you must reconfigure the customer
- gateway using the new configuration information returned
- with the new VPN connection ID.
-
- If you're deleting the VPC and all its associated parts, we
- recommend you detach the VPN gateway from the
- VPC and delete the VPC before deleting the VPN
- connection.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnConnectionRequest.WithVpnConnectionId(System.String)">
- <summary>
- Sets the VpnConnectionId property
- </summary>
- <param name="vpnConnectionId">The ID of the VPN connection you want to
- delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnConnectionRequest.IsSetVpnConnectionId">
- <summary>
- Checks if VpnConnectionId property is set
- </summary>
- <returns>true if VpnConnectionId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVpnConnectionRequest.VpnConnectionId">
- <summary>
- Gets and sets the VpnConnectionId property.
- The ID of the VPN connection you want to
- delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteTagsResponse">
- <summary>
- The Response for the
- DeleteTags operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTagsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTagsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteTagsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteTagsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSecurityGroupRequest">
- <summary>
- Deletes a security group that you own.
-
- If you attempt to delete a security group that contains instances, a
- fault is returned.
-
- If you attempt to delete a security group that is referenced by
- another security group, a fault is returned. For example,
- if security group B has a rule that allows access from
- security group A, security group A cannot be deleted until the
- allow rule is removed.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSecurityGroupRequest.WithGroupId(System.String)">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="groupId">ID of the security group to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSecurityGroupRequest.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSecurityGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">Name of the security group to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSecurityGroupRequest.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupName property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSecurityGroupRequest.GroupId">
- <summary>
- Gets and sets the GroupId property.
- ID of the security group to delete.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSecurityGroupRequest.GroupName">
- <summary>
- Gets and sets the GroupName property.
- Name of the security group to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeletePlacementGroupResponse">
- <summary>
- Information returned by the DeletePlacementGroup request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeletePlacementGroupResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeletePlacementGroupResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeletePlacementGroupResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeletePlacementGroupResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteKeyPairResponse">
- <summary>
- Delete Key Pair Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteKeyPairResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteKeyPairResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteKeyPairResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteKeyPairResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeactivateLicenseRequest">
- <summary>
- Deactivates a license.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeactivateLicenseRequest.WithLicenseId(System.String)">
- <summary>
- Sets the LicenseId property
- </summary>
- <param name="licenseId">LicenseId property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeactivateLicenseRequest.IsSetLicenseId">
- <summary>
- Checks if LicenseId property is set
- </summary>
- <returns>true if LicenseId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeactivateLicenseRequest.WithCapacity(System.Decimal)">
- <summary>
- Sets the Capacity property
- </summary>
- <param name="capacity">Capacity property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeactivateLicenseRequest.IsSetCapacity">
- <summary>
- Checks if Capacity property is set
- </summary>
- <returns>true if Capacity property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeactivateLicenseRequest.LicenseId">
- <summary>
- Gets and sets the LicenseId property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DeactivateLicenseRequest.Capacity">
- <summary>
- Gets and sets the Capacity property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateNetworkAclResult">
- <summary>
- CreateNetworkAcl Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclResult.IsSetNetworkAcl">
- <summary>
- Checks if NetworkAcl property is set
- </summary>
- <returns>true if NetworkAcl property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclResult.NetworkAcl">
- <summary>
- Gets and sets the NetworkAcl property.
- Information about the new network ACL.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateKeyPairResponse">
- <summary>
- Create Key Pair Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairResponse.IsSetCreateKeyPairResult">
- <summary>
- Checks if CreateKeyPairResult property is set
- </summary>
- <returns>true if CreateKeyPairResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateKeyPairResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateKeyPairResponse.CreateKeyPairResult">
- <summary>
- Gets and sets the CreateKeyPairResult property.
- Create Key Pair Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ConfirmProductInstanceResult">
- <summary>
- Confirm Product Instance Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceResult.IsSetOwnerId">
- <summary>
- Checks if OwnerId property is set
- </summary>
- <returns>true if OwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ConfirmProductInstanceResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ConfirmProductInstanceResult.OwnerId">
- <summary>
- Gets and sets the OwnerId property.
- The instance owner's account ID. Only present
- if the product code is attached to the instance.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachVpnGatewayRequest">
- <summary>
- Attaches a VPN gateway to a VPC. This is the last step
- required to get your VPC fully connected to your data center
- before launching instances in it. For more information, go to
- Process for Using Amazon VPC in the Amazon Virtual Private Cloud
- Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayRequest.WithVpnGatewayId(System.String)">
- <summary>
- Sets the VpnGatewayId property
- </summary>
- <param name="vpnGatewayId">The ID of the VPN gateway you want to attach
- to the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayRequest.IsSetVpnGatewayId">
- <summary>
- Checks if VpnGatewayId property is set
- </summary>
- <returns>true if VpnGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC you want to attach to the
- VPN gateway</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVpnGatewayRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVpnGatewayRequest.VpnGatewayId">
- <summary>
- Gets and sets the VpnGatewayId property.
- The ID of the VPN gateway you want to attach
- to the VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVpnGatewayRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC you want to attach to the
- VPN gateway
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateAddressResponse">
- <summary>
- Associate Address Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressResponse.IsSetAssociateAddressResult">
- <summary>
- Checks if AssociateAddressResult property is set
- </summary>
- <returns>true if AssociateAddressResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateAddressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateAddressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateAddressResponse.AssociateAddressResult">
- <summary>
- Gets and sets the AssociateAddressResult property.
- AssociateAddress Result
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.GetMetricStatisticsResult">
- <summary>
- <para> The output for the GetMetricStatistics action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsResult.WithLabel(System.String)">
- <summary>
- Sets the Label property
- </summary>
- <param name="label">The value to set for the Label property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsResult.WithDatapoints(Amazon.CloudWatch.Model.Datapoint[])">
- <summary>
- Adds elements to the Datapoints collection
- </summary>
- <param name="datapoints">The values to add to the Datapoints collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.GetMetricStatisticsResult.WithDatapoints(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Datapoint})">
- <summary>
- Adds elements to the Datapoints collection
- </summary>
- <param name="datapoints">The values to add to the Datapoints collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsResult.Label">
- <summary>
- A label describing the specified metric.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.GetMetricStatisticsResult.Datapoints">
- <summary>
- The datapoints for the specified metric.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest">
- <summary>
- Container for the parameters to the DescribeAlarmsForMetric operation.
- <para> Retrieves all alarms for a single metric. Specify a statistic,
- period, or unit to filter the set of alarms further. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.DescribeAlarmsForMetric(Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.WithMetricName(System.String)">
- <summary>
- Sets the MetricName property
- </summary>
- <param name="metricName">The value to set for the MetricName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.WithStatistic(System.String)">
- <summary>
- Sets the Statistic property
- </summary>
- <param name="statistic">The value to set for the Statistic property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.WithDimensions(Amazon.CloudWatch.Model.Dimension[])">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.WithDimensions(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Dimension})">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.WithPeriod(System.Int32)">
- <summary>
- Sets the Period property
- </summary>
- <param name="period">The value to set for the Period property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.WithUnit(System.String)">
- <summary>
- Sets the Unit property
- </summary>
- <param name="unit">The value to set for the Unit property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.MetricName">
- <summary>
- The name of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.Namespace">
- <summary>
- The namespace of the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[^:].*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.Statistic">
- <summary>
- The statistic for the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>SampleCount, Average, Sum, Minimum, Maximum</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.Dimensions">
- <summary>
- The list of dimensions associated with the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.Period">
- <summary>
- The period in seconds over which the statistic is applied.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>60 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricRequest.Unit">
- <summary>
- The unit for the metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, None</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Util.AmazonCloudFrontUtil">
- <summary>
- Provides utilities used by the Amazon CloudFront client implementation.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Util.AmazonCloudFrontUtil.CreateHeaderEntry(System.String,System.String)">
- <summary>
- Builds and returns the name value collection
- that can be added to the HTTP headers for the request
- </summary>
- <param name="key">The key to be added to the headers (eg. Content-Body)</param>
- <param name="value">The value of the key being added</param>
- <returns>A NameValueCollection with just one key-value pair</returns>
- </member>
- <member name="M:Amazon.CloudFront.Util.AmazonCloudFrontUtil.Sign(System.String,System.Security.SecureString,System.Security.Cryptography.KeyedHashAlgorithm)">
- <summary>
- Computes RFC 2104-compliant HMAC signature
- </summary>
- <param name="data">The data to be signed</param>
- <param name="key">The secret signing key</param>
- <param name="algorithm">The algorithm to sign the data with</param>
- <returns>A string representing the HMAC signature</returns>
- </member>
- <member name="M:Amazon.CloudFront.Util.AmazonCloudFrontUtil.UrlEncode(System.String,System.Boolean)">
- <summary>
- URL encodes a string. If the path property is specified,
- the accepted characters {/:+} are not encoded.
- </summary>
- <param name="data">The string to encode</param>
- <param name="path">Whether the string is a URL path or not</param>
- <returns></returns>
- </member>
- <member name="P:Amazon.CloudFront.Util.AmazonCloudFrontUtil.FormattedCurrentTimestamp">
- <summary>
- Formats the current date as a GMT timestamp
- </summary>
- <returns>A GMT formatted string representation
- of the current date and time
- </returns>
- </member>
- <member name="T:Amazon.CloudFront.Model.Tuple`2">
- <summary>
- Creates a Key Value pair relating the key and value of type
- T and U respectively
- </summary>
- <typeparam name="T">The type of the key</typeparam>
- <typeparam name="U">The type of the value</typeparam>
- </member>
- <member name="M:Amazon.CloudFront.Model.Tuple`2.#ctor">
- <summary>
- The default constructor
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.Tuple`2.#ctor(`0,`1)">
- <summary>
- Constructs a Tuple relating an instance
- of type T to an instance of type U
- </summary>
- <param name="first">The key</param>
- <param name="second">The value</param>
- </member>
- <member name="M:Amazon.CloudFront.Model.Tuple`2.GetHashCode">
- <summary>
- Returns the hash code for this tuple
- </summary>
- <returns>A 32-bit signed integer hash code</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.Tuple`2.Equals(System.Object)">
- <summary>
- Determines whether two Tuple objects have the same value.
- </summary>
- <param name="obj"></param>
- <returns>true if obj is a String and its value is the same as this instance; otherwise, false.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.Tuple`2.Equals(Amazon.CloudFront.Model.Tuple{`0,`1})">
- <summary>
- Determines whether two Tuple objects have the same value.
- </summary>
- <param name="other"></param>
- <returns>true if obj is a String and its value is the same as this instance; otherwise, false.</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.Tuple`2.First">
- <summary>
- Returns the key of this Tuple
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.Tuple`2.Second">
- <summary>
- Returns the value of this Tuple
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.S3Origin">
- <summary>
- S3 origin information to associate with the distribution.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.S3Origin.#ctor">
- <summary>
- Initializes a new instance of the S3Origin class.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.S3Origin.#ctor(System.String,Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity)">
- <summary>
- Initializes a new instance of the S3Origin class.
- </summary>
- <param name="dnsName">The DNS name of your Amazon S3 bucket.</param>
- <param name="originAccessIdentity">The origin access identity.</param>
- </member>
- <member name="M:Amazon.CloudFront.Model.S3Origin.WithDNSName(System.String)">
- <summary>
- Sets the DNS name of your Amazon S3 bucket to associate with the distribution and
- returns back this instance for method chaining.
- </summary>
- <param name="dnsName">The DNS name of your Amazon S3 bucket.</param>
- <returns>This instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.S3Origin.WithOriginAccessIdentity(Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity)">
- <summary>
- Sets the CloudFront origin access identity to associate with
- the distribution. When the distribution is serving private
- content this property must be set.
- This instance is returned back for method chaining.
- </summary>
- <param name="originAccessIdentity">The origin access identity.</param>
- <returns>This instance</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.S3Origin.DNSName">
- <summary>
- Gets or sets the DNS name of your Amazon S3 bucket to associate with the distribution.
- For example: mybucket.s3.amazonaws.com.
- </summary>
- <value>The DNS name of your Amazon S3 bucket.</value>
- </member>
- <member name="P:Amazon.CloudFront.Model.S3Origin.OriginAccessIdentity">
- <summary>
- Gets or sets the CloudFront origin access identity to associate with
- the distribution. When the distribution is serving private
- content this property must be set.
- </summary>
- <value>The origin access identity.</value>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetStreamingDistributionInfoRequest">
- <summary>
- The GetStreamingDistributionInfoRequest contains the parameters used for the GetStreamingDistributionInfo operation.
- <br />Required Parameter: Id
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetStreamingDistributionInfoRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The StreamingDistribution's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetStreamingDistributionInfoRequest.Id">
- <summary>
- Gets and sets the Id property for the StreamingDistribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetStreamingDistributionConfigRequest">
- <summary>
- The GetStreamingDistributionConfigRequest contains the parameters used for the GetStreamingDistributionConfig operation.
- <br />Required Parameters: Id
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.GetStreamingDistributionConfigRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The StreamingDistribution's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetStreamingDistributionConfigRequest.Id">
- <summary>
- Gets and sets the Id property for the StreamingDistribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.DeleteDistributionResponse">
- <summary>
- The DeleteDistributionResponse contains any headers returned by CloudFront.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.DeleteDistributionRequest">
- <summary>
- The DeleteDistributionRequest contains the parameters used for the DeleteDistribution operation.
- <br />Required Parameters: Id
- <br />Required Parameters: ETag
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.DeleteDistributionRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The distribution's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.DeleteDistributionRequest.WithETag(System.String)">
- <summary>
- Sets the ETag property of this request to the value passed in.
- </summary>
- <param name="etag">The distribution's etag</param>
- <returns>The request with the ETag property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.DeleteDistributionRequest.Id">
- <summary>
- Gets and sets the Id property for the Distribution
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.DeleteDistributionRequest.ETag">
- <summary>
- Gets and sets the ETag property for the Distribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest">
- <summary>
- The CreateOriginAccessIdentityRequest contains the parameters used for the CreateOriginAccessIdentity operation.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest.WithOriginAccessIdentityConfig(Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig)">
- <summary>
- Sets the OriginAccessIdentityConfig property for this request.
- </summary>
- <param name="oaiConfig">The value that OriginAccessIdentityConfig is set to</param>
- <returns>the request with the Id set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CreateOriginAccessIdentityRequest.OriginAccessIdentityConfig">
- <summary>
- Gets and Sets the OriginAccessIdentityConfig property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.AmazonCloudFrontConfig">
- <summary>
- Configuration for Amazon CloudFront Client.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithServiceURL(System.String)">
- <summary>
- Sets the ServiceURL property
- </summary>
- <param name="serviceURL">ServiceURL property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.IsSetServiceURL">
- <summary>
- Checks if ServiceURL property is set
- </summary>
- <returns>true if ServiceURL property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithUserAgent(System.String)">
- <summary>
- Sets the UserAgent property
- </summary>
- <param name="userAgent">UserAgent property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.IsSetUserAgent">
- <summary>
- Checks if UserAgent property is set
- </summary>
- <returns>true if UserAgent property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithProxyHost(System.String)">
- <summary>
- Sets the ProxyHost property
- </summary>
- <param name="proxyHost">ProxyHost property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.IsSetProxyHost">
- <summary>
- Checks if ProxyHost property is set
- </summary>
- <returns>true if ProxyHost property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithProxyPort(System.Int32)">
- <summary>
- Sets the ProxyPort property
- </summary>
- <param name="proxyPort">ProxyPort property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.IsSetProxyPort">
- <summary>
- Checks if ProxyPort property is set
- </summary>
- <returns>true if ProxyPort property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithMaxErrorRetry(System.Int32)">
- <summary>
- Sets the MaxErrorRetry property
- </summary>
- <param name="maxErrorRetry">MaxErrorRetry property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.IsSetMaxErrorRetry">
- <summary>
- Checks if MaxErrorRetry property is set
- </summary>
- <returns>true if MaxErrorRetry property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithUseSecureStringForAwsSecretKey(System.Boolean)">
- <summary>
- Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <param name="fSecure">
- Whether a secure string should be used or not.
- </param>
- <returns>The Config object with the property set</returns>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithProxyUsername(System.String)">
- <summary>
- Sets the ProxyUsername property
- </summary>
- <param name="userName">Value for the ProxyUsername property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.IsSetProxyUsername">
- <summary>
- Checks if ProxyUsername property is set
- </summary>
- <returns>true if ProxyUsername property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.WithProxyPassword(System.String)">
- <summary>
- Sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- <param name="password">ProxyPassword property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.AmazonCloudFrontConfig.IsSetProxyPassword">
- <summary>
- Checks if ProxyPassword property is set
- </summary>
- <returns>true if ProxyPassword property is set</returns>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.ServiceURL">
- <summary>
- Gets and sets of the ServiceURL property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.UserAgent">
- <summary>
- Gets and sets of the UserAgent property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.ProxyHost">
- <summary>
- Gets and sets of the ProxyHost property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.ProxyPort">
- <summary>
- Gets and sets of the ProxyPort property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.MaxErrorRetry">
- <summary>
- Gets and sets of the MaxErrorRetry property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.UseSecureStringForAwsSecretKey">
- <summary>
- Gets and Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.ProxyUsername">
- <summary>
- Gets and sets the ProxyUsername property.
- Used in conjunction with the ProxyPassword
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.AmazonCloudFrontConfig.ProxyPassword">
- <summary>
- Gets and sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Stack">
- <summary>
- <para> The Stack data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithStackId(System.String)">
- <summary>
- Sets the StackId property
- </summary>
- <param name="stackId">The value to set for the StackId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithParameters(Amazon.CloudFormation.Model.Parameter[])">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithParameters(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.Parameter})">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithCreationTime(System.DateTime)">
- <summary>
- Sets the CreationTime property
- </summary>
- <param name="creationTime">The value to set for the CreationTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithStackStatus(System.String)">
- <summary>
- Sets the StackStatus property
- </summary>
- <param name="stackStatus">The value to set for the StackStatus property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithStackStatusReason(System.String)">
- <summary>
- Sets the StackStatusReason property
- </summary>
- <param name="stackStatusReason">The value to set for the StackStatusReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithDisableRollback(System.Boolean)">
- <summary>
- Sets the DisableRollback property
- </summary>
- <param name="disableRollback">The value to set for the DisableRollback property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithNotificationARNs(System.String[])">
- <summary>
- Adds elements to the NotificationARNs collection
- </summary>
- <param name="notificationARNs">The values to add to the NotificationARNs collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithNotificationARNs(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the NotificationARNs collection
- </summary>
- <param name="notificationARNs">The values to add to the NotificationARNs collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithTimeoutInMinutes(System.Int32)">
- <summary>
- Sets the TimeoutInMinutes property
- </summary>
- <param name="timeoutInMinutes">The value to set for the TimeoutInMinutes property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithOutputs(Amazon.CloudFormation.Model.Output[])">
- <summary>
- Adds elements to the Outputs collection
- </summary>
- <param name="outputs">The values to add to the Outputs collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Stack.WithOutputs(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.Output})">
- <summary>
- Adds elements to the Outputs collection
- </summary>
- <param name="outputs">The values to add to the Outputs collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.StackId">
- <summary>
- Unique identifier of the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.StackName">
- <summary>
- The name associated with the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.Description">
- <summary>
- User defined description associated with the stack.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.Parameters">
- <summary>
- A list of <c>Parameter</c> structures.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.CreationTime">
- <summary>
- Time at which the stack was created.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.StackStatus">
- <summary>
- Current status of the stack.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>CREATE_IN_PROGRESS, CREATE_FAILED, CREATE_COMPLETE, ROLLBACK_IN_PROGRESS, ROLLBACK_FAILED, ROLLBACK_COMPLETE, DELETE_IN_PROGRESS, DELETE_FAILED, DELETE_COMPLETE</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.StackStatusReason">
- <summary>
- Success/failure message associated with the stack status.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.DisableRollback">
- <summary>
- Boolean to enable or disable rollback on stack creation failures: <ul> <li><c>true</c>: disable rollback</li> <li><c>false</c>: enable
- rollback</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.NotificationARNs">
- <summary>
- SNS topic ARNs to which stack related events are published.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.TimeoutInMinutes">
- <summary>
- The amount of time within which stack creation should complete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Stack.Outputs">
- <summary>
- A list of output structures.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStacksResult">
- <summary>
- <para> The output for a DescribeStacks action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStacksResult.WithStacks(Amazon.CloudFormation.Model.Stack[])">
- <summary>
- Adds elements to the Stacks collection
- </summary>
- <param name="stacks">The values to add to the Stacks collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStacksResult.WithStacks(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.Stack})">
- <summary>
- Adds elements to the Stacks collection
- </summary>
- <param name="stacks">The values to add to the Stacks collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStacksResult.Stacks">
- <summary>
- A list of stack structures.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ExecutePolicyRequestMarshaller">
- <summary>
- Execute Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.CreateAutoScalingGroupRequestMarshaller">
- <summary>
- Create Auto Scaling Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest">
- <summary>
- Container for the parameters to the PutScheduledUpdateGroupAction operation.
- <para> Creates a scheduled scaling action for a Auto Scaling group. If you leave a parameter unspecified, the corresponding value remains
- unchanged in the affected Auto Scaling group. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.PutScheduledUpdateGroupAction(Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.WithScheduledActionName(System.String)">
- <summary>
- Sets the ScheduledActionName property
- </summary>
- <param name="scheduledActionName">The value to set for the ScheduledActionName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.WithTime(System.DateTime)">
- <summary>
- Sets the Time property
- </summary>
- <param name="time">The value to set for the Time property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.WithMinSize(System.Int32)">
- <summary>
- Sets the MinSize property
- </summary>
- <param name="minSize">The value to set for the MinSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.WithMaxSize(System.Int32)">
- <summary>
- Sets the MaxSize property
- </summary>
- <param name="maxSize">The value to set for the MaxSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.WithDesiredCapacity(System.Int32)">
- <summary>
- Sets the DesiredCapacity property
- </summary>
- <param name="desiredCapacity">The value to set for the DesiredCapacity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.AutoScalingGroupName">
- <summary>
- The name or ARN of the Auto Scaling Group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.ScheduledActionName">
- <summary>
- The name of this scaling action.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.Time">
- <summary>
- The time for this action to start.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.MinSize">
- <summary>
- The minimum size for the new Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.MaxSize">
- <summary>
- The maximum size for the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScheduledUpdateGroupActionRequest.DesiredCapacity">
- <summary>
- The number of EC2 instances that should be running in the group.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribePoliciesResponse">
- <summary>
- Returns information about the DescribePoliciesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribePoliciesResponse.DescribePoliciesResult">
- <summary>
- Gets and sets the DescribePoliciesResult property.
- The PoliciesType data type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeletePolicyResponse">
- <summary>
- Returns information about the DeletePolicy response metadata.
- The DeletePolicy operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteLaunchConfigurationResponse">
- <summary>
- Returns information about the DeleteLaunchConfiguration response metadata.
- The DeleteLaunchConfiguration operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteAutoScalingGroupRequest">
- <summary>
- Container for the parameters to the DeleteAutoScalingGroup operation.
- <para> Deletes the specified auto scaling group if the group has no instances and no scaling activities in progress. </para>
- <para><b>NOTE:</b> To remove all instances before calling DeleteAutoScalingGroup, you can call UpdateAutoScalingGroup to set the minimum and
- maximum size of the AutoScalingGroup to zero. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteAutoScalingGroup(Amazon.AutoScaling.Model.DeleteAutoScalingGroupRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeleteAutoScalingGroupRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.PublishResponse">
- <summary>
- Encapsulates the metadata and result of the Publish action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishResponse.IsSetPublishResult">
- <summary>
- Checks if PublishResult property is set
- </summary>
- <returns>true if PublishResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.PublishResponse.PublishResult">
- <summary>
- Gets and sets the PublishResult property.
- Encapsulates the result of the Publish action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.PublishResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.DeleteTopicResponse">
- <summary>
- Encapsulates the metadata and result of the DeleteTopic action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.DeleteTopicResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.DeleteTopicResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.DeleteTopicResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.DeleteTopicResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.ListVerifiedEmailAddressesRequestMarshaller">
- <summary>
- List Verified Email Addresses Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesResult">
- <summary>
- <para>Represents a list of all the email addresses verified for the
- current user.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesResult.WithVerifiedEmailAddresses(System.String[])">
- <summary>
- Adds elements to the VerifiedEmailAddresses collection
- </summary>
- <param name="verifiedEmailAddresses">The values to add to the VerifiedEmailAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.ListVerifiedEmailAddressesResult.WithVerifiedEmailAddresses(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the VerifiedEmailAddresses collection
- </summary>
- <param name="verifiedEmailAddresses">The values to add to the VerifiedEmailAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="T:Amazon.SimpleDB.Model.GetAttributesRequest">
- <summary>
- Returns all of the attributes associated with the item. Optionally, the attributes returned can be limited to
- one or more specified attribute name parameters.
-
- If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The
- system does not return an error as it cannot guarantee the item does not exist on other replicas.
-
- If you do not specify any attribute names, all the attributes for the item are returned.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain in which to perform the operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.WithItemName(System.String)">
- <summary>
- Sets the ItemName property
- </summary>
- <param name="itemName">The name of the item in which to perform the operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.IsSetItemName">
- <summary>
- Checks if ItemName property is set
- </summary>
- <returns>true if ItemName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.WithAttributeName(System.String[])">
- <summary>
- Sets the AttributeName property
- </summary>
- <param name="list">The name of the attribute.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.IsSetAttributeName">
- <summary>
- Checks if AttributeName property is set
- </summary>
- <returns>true if AttributeName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.WithConsistentRead(System.Boolean)">
- <summary>
- Sets the ConsistentRead property
- </summary>
- <param name="consistentRead">If set to true, this flag ensures that the most recently written data is
- returned.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesRequest.IsSetConsistentRead">
- <summary>
- Checks if ConsistentRead property is set
- </summary>
- <returns>true if ConsistentRead property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.GetAttributesRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain in which to perform the operation.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.GetAttributesRequest.ItemName">
- <summary>
- Gets and sets the ItemName property.
- The name of the item in which to perform the operation.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.GetAttributesRequest.AttributeName">
- <summary>
- Gets and sets the AttributeName property.
- The name of the attribute.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.GetAttributesRequest.ConsistentRead">
- <summary>
- Gets and sets the ConsistentRead property.
- If set to true, this flag ensures that the most recently written data is
- returned.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DeleteableItem">
- <summary>
- DeleteableItem contains an item name and a list of <see cref="T:Amazon.SimpleDB.Model.Attribute"/> that will be deleted.
- If no attributes are entered then the whole item will be deleted.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteableItem.WithItemName(System.String)">
- <summary>
- Sets the ItemName property
- </summary>
- <param name="itemName">The name of the item.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteableItem.IsSetItemName">
- <summary>
- Checks if ItemName property is set
- </summary>
- <returns>true if ItemName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteableItem.WithAttribute(Amazon.SimpleDB.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DeleteableItem.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteableItem.ItemName">
- <summary>
- Gets and sets the ItemName property.
- The name of the item.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DeleteableItem.Attribute">
- <summary>
- Gets and sets the Attribute property.
- An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.CreateDomainResponse">
- <summary>
- Returns metadata about the response, including box usage and request ID.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.CreateDomainResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.CreateDomainResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.CreateDomainResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.CreateDomainResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.S3.Transfer.TransferUtilityDownloadRequest">
- <summary>
- Contains all the parameters
- that can be set when making a this request with the
- <c>TransferUtility</c> method.
- </summary>
- </member>
- <member name="T:Amazon.S3.Transfer.BaseDownloadRequest">
- <summary>
- The base class for requests that return Amazon S3 objects.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.BaseDownloadRequest.IsSetBucketName">
- <summary>
- Gets whether or not the bucket name is set.
- </summary>
- <returns>
- A value of <c>true</c> if the bucket name is set.
- Returns <c>false</c> if otherwise.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.BaseDownloadRequest.IsSetKey">
- <summary>
- Gets whether or not the key property is set.
- </summary>
- <returns>
- A value of <c>true</c> if key property is set.
- Returns <c>false</c> if otherwise.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.BaseDownloadRequest.IsSetVersionId">
- <summary>
- Checks if VersionId property is set.
- </summary>
- <returns>true if VersionId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.BaseDownloadRequest.IsSetModifiedSinceDate">
- <summary>
- Checks if ModifiedSinceDate property is set.
- </summary>
- <returns>true if ModifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.BaseDownloadRequest.IsSetUnmodifiedSinceDate">
- <summary>
- Checks if UnmodifiedSinceDate property is set.
- </summary>
- <returns>true if UnmodifiedSinceDate property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Transfer.BaseDownloadRequest.BucketName">
- <summary>
- Gets or sets the name of the bucket.
- </summary>
- <value>
- The name of the bucket.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.BaseDownloadRequest.Key">
- <summary>
- Gets or sets the key under which the Amazon S3 object is stored.
- </summary>
- <value>
- The key under which the Amazon S3 object is stored.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.BaseDownloadRequest.VersionId">
- <summary>
- Gets or sets the version ID of the Amazon S3 object.
- </summary>
- <value>
- The version ID of the Amazon S3 object.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.BaseDownloadRequest.ModifiedSinceDate">
- <summary>
- Gets or sets the <c>ModifiedSinceDate</c> property.
- </summary>
- <value>
- The <c>ModifiedSinceDate</c> property.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.BaseDownloadRequest.UnmodifiedSinceDate">
- <summary>
- Gets or sets the <c>UnmodifiedSinceDate</c> property.
- </summary>
- <value>
- The <c>UnmodifiedSinceDate</c> property.
- </value>
- </member>
- <member name="P:Amazon.S3.Transfer.BaseDownloadRequest.Timeout">
- <summary>
- Gets or sets the timeout property in milliseconds.
- The value of this property is assigned to the
- <c>ReadWriteTimeout</c> and <c>Timeout</c> properties of the
- <c>HTTPWebRequest</c> object used for Amazon S3 GET Object requests.
- </summary>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithBucketName(System.String)">
- <summary>
- Sets the bucket name containing the Amazon S3 object to download and returns
- this object instance, enabling additional method calls to
- be chained together.
- </summary>
- <param name="bucketName">
- The name of the bucket containing the Amazon S3 object to download.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithKey(System.String)">
- <summary>
- Sets the key under which the Amazon S3 object is stored and returns
- this object instance, enabling additional method calls to be chained together.
- </summary>
- <param name="key">
- The key under which the Amazon S3 object is stored.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithVersionId(System.String)">
- <summary>
- Sets the version ID of the Amazon S3 object to download
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="versionId">
- The version ID of the Amazon S3 object to download.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithModifiedSinceDate(System.DateTime)">
- <summary>
- <para>
- Sets the <c>ModifiedSinceDate</c> property for this request
- and returns this object instance,
- enabling additional method calls to be chained together.
- </para>
- <para>
- When this property is set, the Amazon S3 object is returned only if it
- has been modified since the specified time. Otherwise,
- this requests returns a 304 error code.
- </para>
- </summary>
- <param name="modifiedSinceDate">
- The <c>ModifiedSinceDate</c> value.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithUnmodifiedSinceDate(System.DateTime)">
- <summary>
- <para>
- Sets the <c>UnmodifiedSinceDate</c> property for this request
- and returns this object instance,
- enabling additional method calls to be chained together.
- </para>
- <para>
- When this property is set, the Amazon S3 object is returned only if it
- has not been modified since the specified time. Otherwise,
- this requests returns a 412 error code.
- </para>
- </summary>
- <param name="unmodifiedSinceDate">
- The <c>UnmodifiedSinceDate</c> value.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the timeout property in milliseconds.
- The value of this property is assigned to the
- <c>ReadWriteTimeout</c> and <c>Timeout</c> properties of the
- <c>HTTPWebRequest</c> object used for Amazon S3 GET Object requests.
- Specify a timeout value only if certain that
- the file will not be retrieved within the default intervals
- specified for the <c>HttpWebRequest</c>.
- </summary>
- <param name="timeout">
- The timeout property in milliseconds.
- </param>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.IsSetFilePath">
- <summary>
- Checks if FilePath property is set.
- </summary>
- <returns>true if FilePath property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithFilePath(System.String)">
- <summary>
- Sets the file path location of where the
- downloaded Amazon S3 object will be written to
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="filePath">
- The file path location of where the
- downloaded Amazon S3 object will be written to.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WithSubscriber(System.EventHandler{Amazon.S3.Model.WriteObjectProgressArgs})">
- <summary>
- The handler will be attached to the WriteObjectProgressEvent which is fired as data
- is downloaded from S3. The handler will be passed information detailing how much data
- has been downloaded as well as how much will be downloaded.
- </summary>
- <param name="handler">A method that is called when WriteObjectProgressEvent is fired.</param>
- <returns>this instance of the TransferUtilityDownloadRequest</returns>
- </member>
- <member name="P:Amazon.S3.Transfer.TransferUtilityDownloadRequest.FilePath">
- <summary>
- Get or sets the file path location of where the
- downloaded Amazon S3 object will be written to.
- </summary>
- <value>
- The file path location of where the downloaded Amazon S3 object will be written to.
- </value>
- </member>
- <member name="E:Amazon.S3.Transfer.TransferUtilityDownloadRequest.WriteObjectProgressEvent">
- <summary>
- The event for WriteObjectProgressEvent notifications. All
- subscribers will be notified when a new progress
- event is raised.
- <para>
- The WriteObjectProgressEvent is fired as data
- is downloaded from S3. The delegates attached to the event
- will be passed information detailing how much data
- has been downloaded as well as how much will be downloaded.
- </para>
- </summary>
- <remarks>
- Subscribe to this event if you want to receive
- WriteObjectProgressEvent notifications. Here is how:<br />
- 1. Define a method with a signature similar to this one:
- <code>
- private void displayProgress(object sender, WriteObjectProgressArgs args)
- {
- Console.WriteLine(args);
- }
- </code>
- 2. Add this method to the WriteObjectProgressEvent delegate's invocation list
- <code>
- TransferUtilityDownloadRequest request = new TransferUtilityDownloadRequest();
- request.WriteObjectProgressEvent += displayProgress;
- </code>
- </remarks>
- </member>
- <member name="T:Amazon.S3.Model.CopyObjectRequest">
- <summary>
- The CopyObjectRequest contains the parameters used for the CopyObject operation.
- For more information about the optional parameters, refer:
- <see href="http://docs.amazonwebservices.com/AmazonS3/latest/RESTObjectCOPY.html"/>
- <br />Required Parameters: SourceBucket, SourceKey, DestinationBucket
- <br />Optional Parameters: DestinationKey, ETagToMatch, ETagToNotMatch, ModifiedSinceDate,
- UnmodifiedSinceDate, Directive, Metadata, CannedACL, Timeout, SourceVersionId,
- StorageClass
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithSourceBucket(System.String)">
- <summary>
- Sets the SourceBucket property for this request.
- This is the S3Bucket that contains the S3 Object you
- want to copy.
- </summary>
- <param name="srcBucket">The value that SourceBucket is set to</param>
- <returns>the response with the SourceBucket set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetSourceBucket">
- <summary>
- Checks if SourceBucket property is set.
- </summary>
- <returns>true if SourceBucket property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithSourceKey(System.String)">
- <summary>
- Sets the SourceKey property for this request.
- This is the S3Object you want to copy.
- </summary>
- <param name="srcKey">The value that SourceKey is set to</param>
- <returns>the response with the SourceKey set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetSourceKey">
- <summary>
- Checks if SourceKey property is set.
- </summary>
- <returns>true if SourceKey property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithDestinationBucket(System.String)">
- <summary>
- Sets the DestinationBucket property for this request.
- This is the S3 Bucket where the copied S3 Object is put.
- </summary>
- <param name="dstBucket">The value that DestinationBucket is set to</param>
- <returns>the response with the DestinationBucket set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetDestinationBucket">
- <summary>
- Checks if DestinationBucket property is set.
- </summary>
- <returns>true if DestinationBucket property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithDestinationKey(System.String)">
- <summary>
- Sets the DestinationKey property for this request.
- This is the key for the new S3 Object that is copied.
- </summary>
- <param name="dstKey">The value that DestinationKey is set to</param>
- <returns>the response with the Destinationkey set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetDestinationKey">
- <summary>
- Checks if DestinationKey property is set.
- </summary>
- <returns>true if DestinationKey property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithContentType(System.String)">
- <summary>
- Sets the ContentType property for this request.
- </summary>
- <param name="contentType">the value the ContentType to be set to</param>
- <returns>The request with the ContentType set</returns>
- <remarks>
- This property defaults to "binary/octet-stream",
- but if you require something else you can set this property.
- This property is passed on to S3 only if the metadata
- directive is REPLACE.
- </remarks>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetContentType">
- <summary>
- Checks if ContentType property is set.
- </summary>
- <returns>true if ContentType property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithETagToMatch(System.String)">
- <summary>
- Sets the ETagToMatch property for this request.
- Copies the object if its entity tag (ETag) matches
- the specified tag; otherwise return a 412 (precondition failed).
- Constraints: This property can be used with IfUnmodifiedSince,
- but cannot be used with other conditional copy properties.
- </summary>
- <param name="etagToMatch">The value that ETagToMatch is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetETagToMatch">
- <summary>
- Checks if ETagToMatch property is set.
- </summary>
- <returns>true if ETagToMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithETagToNotMatch(System.String)">
- <summary>
- Sets the ETagToNotMatch property for this request.
- Copies the object if its entity tag (ETag) is different
- than the specified Etag; otherwise returns a 412 (failed condition).
- Constraints: This header can be used with IfModifiedSince, but cannot
- be used with other conditional copy properties.
- </summary>
- <param name="etagToNotMatch">The value that ETagToNotMatch is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetETagToNotMatch">
- <summary>
- Checks if ETagToNotMatch property is set.
- </summary>
- <returns>true if ETagToNotMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithModifiedSinceDate(System.DateTime)">
- <summary>
- Sets the ModifiedSinceDate property for this request.
- Copies the object if it has been modified since the
- specified time; otherwise returns a 412 (failed condition).
- Constraints: This property can be used with ETagToNotMatch,
- but cannot be used with other conditional copy properties.
- </summary>
- <param name="modifiedSinceDate">The value that ModifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetModifiedSinceDate">
- <summary>
- Checks if ModifiedSinceDate property is set.
- </summary>
- <returns>true if ModifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithUnmodifiedSinceDate(System.DateTime)">
- <summary>
- Sets the UnmodifiedSinceDate property for this request.
- Copies the object if it hasn't been modified since the
- specified time; otherwise returns a 412 (precondition failed).
- Constraints: This property can be used with ETagToMatch,
- but cannot be used with other conditional copy properties.
- </summary>
- <param name="unmodifiedSinceDate">The value that UnmodifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetUnmodifiedSinceDate">
- <summary>
- Checks if UnmodifiedSinceDate property is set.
- </summary>
- <returns>true if UnmodifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithDirective(Amazon.S3.Model.S3MetadataDirective)">
- <summary>
- Sets the Directive property for this request. The
- default value for the directive is COPY.
- </summary>
- <param name="directive">The value that Directive is set to</param>
- <returns>the response with the Directive set</returns>
- <remarks>
- Specifies whether the metadata is copied from
- the source object or replaced with metadata
- provided in the request. If COPY, the metadata remains
- unchanged, otherwise, all original metadata is
- replaced by the metadata you specify.
- You cannot copy an object to itself unless the Directive
- property is specified and its value set to REPLACE.
- </remarks>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithMetaData(System.String,System.String)">
- <summary>
- Adds a key/value pair to the Metadata property for this request.
- The S3 Object that you copy will have this metadata associated
- with it.
- </summary>
- <param name="key">The key to associate with the object</param>
- <param name="value">The value for the key</param>
- <returns>The response with Metadata set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithMetaData(System.Collections.Specialized.NameValueCollection)">
- <summary>
- Adds a set of key-value pairs to the request
- </summary>
- <param name="metaInfo">The set of key-value pairs that will eventually be
- associated with the S3 Object</param>
- <returns></returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetMetaData">
- <summary>
- Checks if Metadata property is set.
- </summary>
- <returns>true if Metadata property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.RemoveMetaData(System.String)">
- <summary>
- Removes a key from the Metadata list if it was
- added previously
- </summary>
- <param name="key">The key to remove</param>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithCannedACL(Amazon.S3.Model.S3CannedACL)">
- <summary>
- Sets the CannedACL property for this request.
- If set the S3 Object will have this CannedACL
- permission.
- </summary>
- <param name="acl">The Canned ACL to be set on the object</param>
- <returns>The request with the CannedACL set</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetCannedACL">
- <summary>
- Checks if the S3CannedACL property is set.
- </summary>
- <returns>true if there is the S3CannedACL property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.RemoveCannedACL">
- <summary>
- Resets the S3CannedACL
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the Timeout property (in milliseconds).
- Please set the timeout only if you are certain that
- the file will not be transferred within the default intervals
- for an HttpWebRequest.
- </summary>
- <param name="timeout">Timeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithReadWriteTimeout(System.Int32)">
- <summary>
- Sets the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout property of the HttpWebRequest.
- </summary>
- <param name="readwritetimeout">ReadWriteTimeout property</param>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <returns>this instance</returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithSourceVersionId(System.String)">
- <summary>
- Sets the SourceVersionId property for this request.
- This is the SourceVersionId for the S3 Object you want to Get.
- </summary>
- <param name="srcVersionId">The value that SourceVersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.IsSetSourceVersionId">
- <summary>
- Checks if SourceVersionId property is set.
- </summary>
- <returns>true if SourceVersionId property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.CopyObjectRequest.WithStorageClass(Amazon.S3.Model.S3StorageClass)">
- <summary>
- Sets the StorageClass property for the destination object.
- Default: The S3StorageClass of the source object.
- Set this property only if you want to change the storage
- class of the destination object. Please refer
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- <param name="sClass">The Storage Class to be set on the object</param>
- <returns>The request with the StorageClass set</returns>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.SourceBucket">
- <summary>
- Gets and sets the SourceBucket property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.SourceKey">
- <summary>
- Gets and sets the SourceKey property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.DestinationBucket">
- <summary>
- Gets and sets the DestinationBucket property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.DestinationKey">
- <summary>
- Gets and sets the DestinationKey property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.ContentType">
- <summary>
- Gets and sets the ContentType property.
- </summary>
- <remarks>
- This property defaults to "binary/octet-stream",
- but if you require something else you can set this property.
- This property is passed on to S3 only if the metadata
- directive is REPLACE.
- </remarks>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.ETagToMatch">
- <summary>
- Gets and sets the ETagToMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.ETagToNotMatch">
- <summary>
- Gets and sets the ETagToNotMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.ModifiedSinceDate">
- <summary>
- Gets and sets the ModifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.UnmodifiedSinceDate">
- <summary>
- Gets and sets the UnmodifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.Directive">
- <summary>
- Gets and sets the Directive property. Default is COPY.
- </summary>
- <remarks>
- Specifies whether the metadata is copied from
- the source object or replaced with metadata
- provided in the request. If COPY, the metadata remains
- unchanged, otherwise, all original metadata is
- replaced by the metadata you specify.
- You cannot copy an object to itself unless the Directive
- property is specified and its value set to REPLACE.
- </remarks>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.CannedACL">
- <summary>
- Gets and sets the CannedACL property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.Timeout">
- <summary>
- Gets and sets of the Timeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout and Timeout properties of the
- HTTPWebRequest object used for S3 COPY requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.ReadWriteTimeout">
- <summary>
- Gets and sets of the ReadWriteTimeout property (in milliseconds).
- The value of this property is assigned to the
- ReadWriteTimeout properties of the
- HTTPWebRequest object used for S3 COPY requests.
- </summary>
- <remarks>A value less than or equal to 0 will be silently ignored</remarks>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.SourceVersionId">
- <summary>
- Gets and sets the SourceVersionId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.CopyObjectRequest.StorageClass">
- <summary>
- Gets and sets the StorageClass property.
- Default: The S3StorageClass of the source object.
- Set this property only if you want to change the storage
- class of the destination object. Please refer
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3Error">
- <summary>
- Represents an error returned by the S3 service. Exposes
- an error code, a message, a host ID and a request ID for
- debugging purposes.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Error.Code">
- <summary>
- Gets and sets the Code property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Error.Message">
- <summary>
- Gets and sets the Message property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Error.HostId">
- <summary>
- Gets and sets the HostId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Error.RequestId">
- <summary>
- Gets and sets the RequestId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Error.UploadId">
- <summary>
- Gets and sets the UploadId property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.S3Error.ETag">
- <summary>
- Gets and sets the ETag property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.DeleteBucketWebsiteRequest">
- <summary>
- The DeleteBucketWebsiteRequest contains the parameters used for the DeleteBucketWebsiteRequest operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.DeleteBucketWebsiteRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket where the website configuration will be deleted.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.DeleteBucketWebsiteRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.DeleteBucketWebsiteRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.AbortMultipartUploadResponse">
- <summary>
- The AbortMultipartUploadResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.RestoreDBInstanceFromDBSnapshotResultUnmarshaller">
- <summary>
- Result Unmarshaller for RestoreDBInstanceFromDBSnapshot operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeOrderableDBInstanceOptionsRequestMarshaller">
- <summary>
- Describe Orderable D B Instance Options Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeEngineDefaultParametersRequestMarshaller">
- <summary>
- Describe Engine Default Parameters Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DBParameterGroupUnmarshaller">
- <summary>
- DBParameterGroup Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBInstanceResultUnmarshaller">
- <summary>
- Result Unmarshaller for CreateDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBInstanceRequestMarshaller">
- <summary>
- Create D B Instance Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.AuthorizeDBSecurityGroupIngressResponseUnmarshaller">
- <summary>
- Response Unmarshaller for AuthorizeDBSecurityGroupIngress operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeReservedDBInstancesRequest">
- <summary>
- Container for the parameters to the DescribeReservedDBInstances operation.
- <para> Returns information about reserved DB Instances for this account, or about a specified reserved DB Instance. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeReservedDBInstances(Amazon.RDS.Model.DescribeReservedDBInstancesRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithReservedDBInstanceId(System.String)">
- <summary>
- Sets the ReservedDBInstanceId property
- </summary>
- <param name="reservedDBInstanceId">The value to set for the ReservedDBInstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithReservedDBInstancesOfferingId(System.String)">
- <summary>
- Sets the ReservedDBInstancesOfferingId property
- </summary>
- <param name="reservedDBInstancesOfferingId">The value to set for the ReservedDBInstancesOfferingId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithDuration(System.String)">
- <summary>
- Sets the Duration property
- </summary>
- <param name="duration">The value to set for the Duration property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The value to set for the ProductDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.ReservedDBInstanceId">
- <summary>
- The reserved DB Instance identifier filter value. Specify this parameter to show only the reservation that matches the specified reservation
- ID.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.ReservedDBInstancesOfferingId">
- <summary>
- The offering identifier filter value. Specify this parameter to show only purchased reservations matching the specified offering identifier.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.DBInstanceClass">
- <summary>
- The DB Instance class filter value. Specify this parameter to show only those reservations matching the specified DB Instances class.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.Duration">
- <summary>
- The duration filter value, specified in years or seconds. Specify this parameter to show only reservations for this duration. Valid Values:
- <c>1 | 3 | 31536000 | 94608000</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.ProductDescription">
- <summary>
- The product description filter value. Specify this parameter to show only those reservations matching the specified product description.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.MultiAZ">
- <summary>
- The Multi-AZ filter value. Specify this parameter to show only those reservations matching the specified Multi-AZ parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more than the <c>MaxRecords</c> value is available, a marker is included in the
- response so that the following results can be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeReservedDBInstancesRequest.Marker">
- <summary>
- The marker provided in the previous request. If this parameter is specified, the response includes records beyond the marker only, up to
- <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBParameterGroupsResult">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeDBParameterGroups action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParameterGroupsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParameterGroupsResult.WithDBParameterGroups(Amazon.RDS.Model.DBParameterGroup[])">
- <summary>
- Adds elements to the DBParameterGroups collection
- </summary>
- <param name="dBParameterGroups">The values to add to the DBParameterGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParameterGroupsResult.WithDBParameterGroups(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.DBParameterGroup})">
- <summary>
- Adds elements to the DBParameterGroups collection
- </summary>
- <param name="dBParameterGroups">The values to add to the DBParameterGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParameterGroupsResult.Marker">
- <summary>
- The marker obtained from a previous operation response.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParameterGroupsResult.DBParameterGroups">
- <summary>
- A list of <a>DBParameterGroup</a> instances.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBParameterGroupResponse">
- <summary>
- Returns information about the DeleteDBParameterGroup response metadata.
- The DeleteDBParameterGroup operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBParameterGroupResponse">
- <summary>
- Returns information about the CreateDBParameterGroup response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBParameterGroupResponse.CreateDBParameterGroupResult">
-
- Gets and sets the CreateDBParameterGroupResult property.
- Contains the result of a successful invocation of the CreateDBParameterGroup
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest">
- <summary>
- Container for the parameters to the CreateDBInstanceReadReplica operation.
- <para> Creates a DB Instance that acts as a Read Replica of a source DB Instance. </para> <para> All Read Replica DB Instances are created
- as Single-AZ deployments with backups disabled. All other DB Instance attributes (including DB Security Groups and DB Parameter Groups) are
- inherited from the source DB Instance, except as specified below. </para> <para><b>IMPORTANT:</b> The source DB Instance must have backup
- retention enabled. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.CreateDBInstanceReadReplica(Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.WithSourceDBInstanceIdentifier(System.String)">
- <summary>
- Sets the SourceDBInstanceIdentifier property
- </summary>
- <param name="sourceDBInstanceIdentifier">The value to set for the SourceDBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The value to set for the AvailabilityZone property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.WithAutoMinorVersionUpgrade(System.Boolean)">
- <summary>
- Sets the AutoMinorVersionUpgrade property
- </summary>
- <param name="autoMinorVersionUpgrade">The value to set for the AutoMinorVersionUpgrade property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.DBInstanceIdentifier">
- <summary>
- The DB Instance identifier of the Read Replica. This is the unique key that identifies a DB Instance. This parameter is stored as a
- lowercase string.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.SourceDBInstanceIdentifier">
- <summary>
- The identifier of the DB Instance that will act as the source for the Read Replica. Each DB Instance can have up to five Read Replicas.
- Constraints: Must be the identifier of an existing DB Instance that is not already a Read Replica DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.DBInstanceClass">
- <summary>
- The compute and memory capacity of the Read Replica. Valid Values: <c>db.m1.small | db.m1.large | db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge
- | db.m2.4xlarge</c> Default: Inherits from the source DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.AvailabilityZone">
- <summary>
- The Amazon EC2 Availability Zone that the Read Replica will be created in. Default: A random, system-chosen Availability Zone in the
- endpoint's region. Example: <c>us-east-1d</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.Port">
- <summary>
- The port number that the DB Instance uses for connections. Default: Inherits from the source DB Instance Valid Values: <c>1150-65535</c>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBInstanceReadReplicaRequest.AutoMinorVersionUpgrade">
- <summary>
- Indicates that minor engine upgrades will be applied automatically to the Read Replica during the maintenance window. Default: Inherits from
- the source DB Instance
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.AvailabilityZone">
- <summary>
- <para> Contains Availability Zone information. </para> <para> This data type is used as an element in the following data type:
- <ul>
- <li> OrderableDBInstanceOption </li>
-
- </ul>
- </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.AvailabilityZone.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.AvailabilityZone.Name">
- <summary>
- The name of the availability zone.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.GetStatusResult">
- <summary>
- <para> Output structure for the GetStatus operation. </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithJobId(System.String)">
- <summary>
- Sets the JobId property
- </summary>
- <param name="jobId">The value to set for the JobId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithJobType(System.String)">
- <summary>
- Sets the JobType property
- </summary>
- <param name="jobType">The value to set for the JobType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithAwsShippingAddress(System.String)">
- <summary>
- Sets the AwsShippingAddress property
- </summary>
- <param name="awsShippingAddress">The value to set for the AwsShippingAddress property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithLocationCode(System.String)">
- <summary>
- Sets the LocationCode property
- </summary>
- <param name="locationCode">The value to set for the LocationCode property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithLocationMessage(System.String)">
- <summary>
- Sets the LocationMessage property
- </summary>
- <param name="locationMessage">The value to set for the LocationMessage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithProgressCode(System.String)">
- <summary>
- Sets the ProgressCode property
- </summary>
- <param name="progressCode">The value to set for the ProgressCode property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithProgressMessage(System.String)">
- <summary>
- Sets the ProgressMessage property
- </summary>
- <param name="progressMessage">The value to set for the ProgressMessage property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithCarrier(System.String)">
- <summary>
- Sets the Carrier property
- </summary>
- <param name="carrier">The value to set for the Carrier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithTrackingNumber(System.String)">
- <summary>
- Sets the TrackingNumber property
- </summary>
- <param name="trackingNumber">The value to set for the TrackingNumber property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithLogBucket(System.String)">
- <summary>
- Sets the LogBucket property
- </summary>
- <param name="logBucket">The value to set for the LogBucket property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithLogKey(System.String)">
- <summary>
- Sets the LogKey property
- </summary>
- <param name="logKey">The value to set for the LogKey property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithErrorCount(System.Int32)">
- <summary>
- Sets the ErrorCount property
- </summary>
- <param name="errorCount">The value to set for the ErrorCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithSignature(System.String)">
- <summary>
- Sets the Signature property
- </summary>
- <param name="signature">The value to set for the Signature property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithSignatureFileContents(System.String)">
- <summary>
- Sets the SignatureFileContents property
- </summary>
- <param name="signatureFileContents">The value to set for the SignatureFileContents property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithCurrentManifest(System.String)">
- <summary>
- Sets the CurrentManifest property
- </summary>
- <param name="currentManifest">The value to set for the CurrentManifest property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.GetStatusResult.WithCreationDate(System.DateTime)">
- <summary>
- Sets the CreationDate property
- </summary>
- <param name="creationDate">The value to set for the CreationDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.JobId">
- <summary>
- A unique identifier which refers to a particular job.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.JobType">
- <summary>
- Specifies whether the job to initiate is an import or export job.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Import, Export</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.AwsShippingAddress">
- <summary>
- Address you ship your storage device to.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.LocationCode">
- <summary>
- A token representing the location of the storage device, such as
- "AtAWS".
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.LocationMessage">
- <summary>
- A more human readable form of the physical location of the storage
- device.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.ProgressCode">
- <summary>
- A token representing the state of the job, such as "Started".
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.ProgressMessage">
- <summary>
- A more human readable form of the job status.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.Carrier">
- <summary>
- Name of the shipping company. This value is included when the
- LocationCode is "Returned".
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.TrackingNumber">
- <summary>
- The shipping tracking number assigned by AWS Import/Export to the
- storage device when it's returned to you. We return this value when
- the LocationCode is "Returned".
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.LogBucket">
- <summary>
- Amazon S3 bucket for user logs.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.LogKey">
- <summary>
- The key where the user logs were stored.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.ErrorCount">
- <summary>
- Number of errors. We return this value when the ProgressCode is
- Success or SuccessWithErrors.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.Signature">
- <summary>
- An encrypted code used to authenticate the request and response, for
- example, "DV+TpDfx1/TdSE9ktyK9k/bDTVI=". Only use this value is you
- want to create the signature file yourself. Generally you should use
- the SignatureFileContents value.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.SignatureFileContents">
- <summary>
- An encrypted code used to authenticate the request and response, for
- example, "DV+TpDfx1/TdSE9ktyK9k/bDTVI=". Only use this value is you
- want to create the signature file yourself. Generally you should use
- the SignatureFileContents value.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.CurrentManifest">
- <summary>
- The last manifest submitted, which will be used to process the job.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.GetStatusResult.CreationDate">
- <summary>
- Timestamp of the CreateJob request in ISO8601 date format. For example
- "2010-03-28T20:27:35Z".
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.ExpiredJobIdException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.ExpiredJobIdException.#ctor(System.String)">
- <summary>
- Constructs a new ExpiredJobIdException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Util.IdentityManagementConstants">
- <summary>
- Utility constants for Amazon.IdentityManagament.
- </summary>
- </member>
- <member name="F:Amazon.IdentityManagement.Util.IdentityManagementConstants.ActiveSigningCertificateStatus">
- <summary>
- Active value for <c>Amazon.IdentityManagement.Model.SigningCertificate.Status</c>.
- </summary>
- </member>
- <member name="F:Amazon.IdentityManagement.Util.IdentityManagementConstants.InactiveSigningCertificateStatus">
- <summary>
- Inctive value for <c>Amazon.IdentityManagement.Model.SigningCertificate.Status</c>.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UploadSigningCertificateRequest">
- <summary>
- Container for the parameters to the UploadSigningCertificate operation.
- <para>Uploads an X.509 signing certificate and associates it with the
- specified User. Some AWS services use X.509 signing certificates to
- validate requests that are signed with a corresponding private key.
- When you upload the certificate, its default status is <c>Active</c>
- .</para> <para>If the <c>UserName</c> field is not specified, the User
- name is determined implicitly based on the AWS Access Key ID used to
- sign the request. Because this action works for access keys under the
- AWS Account, this API can be used to manage root credentials even if
- the AWS Account has no associated Users.</para>
- <para><b>NOTE:</b>Because the body of a X.509 certificate can be
- large, you should use POST rather than GET when calling
- UploadSigningCertificate. For more information, see Making Query
- Requests in Using AWS Identity and Access Management.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.UploadSigningCertificate(Amazon.IdentityManagement.Model.UploadSigningCertificateRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadSigningCertificateRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadSigningCertificateRequest.WithCertificateBody(System.String)">
- <summary>
- Sets the CertificateBody property
- </summary>
- <param name="certificateBody">The value to set for the CertificateBody property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadSigningCertificateRequest.UserName">
- <summary>
- Name of the User the signing certificate is for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadSigningCertificateRequest.CertificateBody">
- <summary>
- The contents of the signing certificate.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 16384</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0009\u000A\u000D\u0020-\u00FF]+</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UploadServerCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UploadServerCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateLoginProfileRequestMarshaller">
- <summary>
- Update Login Profile Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteSigningCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteSigningCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateUserRequestMarshaller">
- <summary>
- Create User Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.PutGroupPolicyResponse">
- <summary>
- Returns information about the PutGroupPolicy response metadata.
- The PutGroupPolicy operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListServerCertificatesResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- ListServerCertificates action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListServerCertificatesResult.WithServerCertificateMetadataList(Amazon.IdentityManagement.Model.ServerCertificateMetadata[])">
- <summary>
- Adds elements to the ServerCertificateMetadataList collection
- </summary>
- <param name="serverCertificateMetadataList">The values to add to the ServerCertificateMetadataList collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListServerCertificatesResult.WithServerCertificateMetadataList(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.ServerCertificateMetadata})">
- <summary>
- Adds elements to the ServerCertificateMetadataList collection
- </summary>
- <param name="serverCertificateMetadataList">The values to add to the ServerCertificateMetadataList collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListServerCertificatesResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListServerCertificatesResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListServerCertificatesResult.ServerCertificateMetadataList">
- <summary>
- A list of server certificates.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListServerCertificatesResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more server certificates to list. If your results were truncated, you can make a subsequent
- pagination request using the <c>Marker</c> request parameter to retrieve more server certificates in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListServerCertificatesResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupsResponse">
- <summary>
- Returns information about the ListGroupsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsResponse.ListGroupsResult">
- <summary>
- Gets and sets the ListGroupsResult property.
- Contains the result of a successful invocation of the ListGroups action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupsRequest">
- <summary>
- Container for the parameters to the ListGroups operation.
- <para>Lists the groups that have the specified path prefix.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListGroups(Amazon.IdentityManagement.Model.ListGroupsRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsRequest.WithPathPrefix(System.String)">
- <summary>
- Sets the PathPrefix property
- </summary>
- <param name="pathPrefix">The value to set for the PathPrefix property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsRequest.PathPrefix">
- <summary>
- The path prefix for filtering the results. For example: <c>/division_abc/subdivision_xyz/</c>, which would get all groups whose path starts
- with <c>/division_abc/subdivision_xyz/</c>. This parameter is optional. If it is not included, it defaults to a slash (/), listing all
- groups.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>\u002F[\u0021-\u007F]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of groups you want in the response. If there are additional groups
- beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.EnableMFADeviceResponse">
- <summary>
- Returns information about the EnableMFADevice response metadata.
- The EnableMFADevice operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteUserRequest">
- <summary>
- Container for the parameters to the DeleteUser operation.
- <para>Deletes the specified User. The User must not belong to any
- groups, have any keys or signing certificates, or have any attached
- policies.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteUser(Amazon.IdentityManagement.Model.DeleteUserRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteUserRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteUserRequest.UserName">
- <summary>
- Name of the User to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteUserPolicyRequest">
- <summary>
- Container for the parameters to the DeleteUserPolicy operation.
- <para>Deletes the specified policy associated with the specified
- User.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteUserPolicy(Amazon.IdentityManagement.Model.DeleteUserPolicyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteUserPolicyRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteUserPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteUserPolicyRequest.UserName">
- <summary>
- Name of the User the policy is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteUserPolicyRequest.PolicyName">
- <summary>
- Name of the policy document to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteLoginProfileRequest">
- <summary>
- Container for the parameters to the DeleteLoginProfile operation.
- <para>Deletes the login profile for the specified User, which
- terminates the User's ability to access AWS services through the IAM
- login page.</para> <para><b>IMPORTANT:</b>Deleting a User's login
- profile does not prevent a User from accessing IAM through the command
- line interface or the API. To prevent all User access you must also
- either make the access key inactive or delete it. For more
- information about making keys inactive or deleting them, see
- UpdateAccessKey and DeleteAccessKey. </para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteLoginProfile(Amazon.IdentityManagement.Model.DeleteLoginProfileRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteLoginProfileRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteLoginProfileRequest.UserName">
- <summary>
- Name of the User whose login profile you want to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateUserResponse">
- <summary>
- Returns information about the CreateUserResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateUserResponse.CreateUserResult">
- <summary>
- Gets and sets the CreateUserResult property.
- Contains the result of a successful invocation of the CreateUser action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateAccountAliasRequest">
- <summary>
- Container for the parameters to the CreateAccountAlias operation.
- <para>This action creates an alias for your AWS Account. For
- information about using an AWS Account alias, see Using an Alias for
- Your AWS Account ID in <i>Using AWS Identity and Access Management</i>
- .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.CreateAccountAlias(Amazon.IdentityManagement.Model.CreateAccountAliasRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.CreateAccountAliasRequest.WithAccountAlias(System.String)">
- <summary>
- Sets the AccountAlias property
- </summary>
- <param name="accountAlias">The value to set for the AccountAlias property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateAccountAliasRequest.AccountAlias">
- <summary>
- Name of the account alias to create
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>3 - 63</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.CreateAccessKeyResponse">
- <summary>
- Returns information about the CreateAccessKeyResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.CreateAccessKeyResponse.CreateAccessKeyResult">
- <summary>
- Gets and sets the CreateAccessKeyResult property.
- Contains the result of a successful invocation of the CreateAccessKey action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient">
- <summary>
- Implemenation for accessing AmazonIdentityManagementService.
-
- AWS Identity and Access Management <para>This is the AWS Identity and
- Access Management (IAM) API Reference. This guide provides
- descriptions of the IAM API as well as links to related content in the
- guide, Using IAM.</para> <para>AWS Identity and Access Management
- (IAM) is a web service that enables Amazon Web Services (AWS)
- customers to manage Users and User permissions under their AWS
- Account.</para> <para>For more information about this product go to
- AWS Identity and Access Management (IAM). For specific information
- about setting up signatures and authorization through the API, go to
- Making Query Requests in the Using IAM guide.</para> <para>If you're
- new to AWS and need additional technical information about a specific
- AWS product, you can find the product's technical documentation at
- http://aws.amazon.com/documentation/.</para> <para>We will refer to
- Amazon AWS Identity and Access Management using the abbreviated form
- IAM. All copyrights and legal protections still apply.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonIdentityManagementServiceClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.#ctor(System.String,System.String,Amazon.IdentityManagement.AmazonIdentityManagementServiceConfig)">
- <summary>
- Constructs AmazonIdentityManagementServiceClient with AWS Access Key ID, AWS Secret Key and an
- AmazonS3 Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="clientConfig">The AmazonIdentityManagementServiceClient Configuration Object</param>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListGroups(Amazon.IdentityManagement.Model.ListGroupsRequest)">
- <summary>
- <para>Lists the groups that have the specified path prefix.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listGroupsRequest">Container for the necessary parameters
- to execute the ListGroups service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListGroups service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteAccessKey(Amazon.IdentityManagement.Model.DeleteAccessKeyRequest)">
- <summary>
- <para>Deletes the access key associated with the specified
- User.</para> <para>If you do not specify a User name, IAM determines
- the User name implicitly based on the AWS Access Key ID signing the
- request. Because this action works for access keys under the AWS
- Account, you can use this API to manage root credentials even if the
- AWS Account has no associated Users.</para>
- </summary>
-
- <param name="deleteAccessKeyRequest">Container for the necessary
- parameters to execute the DeleteAccessKey service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteAccountAlias(Amazon.IdentityManagement.Model.DeleteAccountAliasRequest)">
- <summary>
- <para>Deletes the specified AWS Account alias. For information about
- using an AWS Account alias, see Using an Alias for Your AWS Account ID
- in <i>Using AWS Identity and Access Management</i> .</para>
- </summary>
-
- <param name="deleteAccountAliasRequest">Container for the necessary
- parameters to execute the DeleteAccountAlias service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListSigningCertificates(Amazon.IdentityManagement.Model.ListSigningCertificatesRequest)">
- <summary>
- <para>Returns information about the signing certificates associated
- with the specified User. If there are none, the action returns an
- empty list.</para> <para>Although each User is limited to a small
- number of signing certificates, you can still paginate the results
- using the <c>MaxItems</c> and <c>Marker</c> parameters.</para>
- <para>If the <c>UserName</c> field is not specified, the UserName is
- determined implicitly based on the AWS Access Key ID used to sign the
- request. Because this action works for access keys under the AWS
- Account, this API can be used to manage root credentials even if the
- AWS Account has no associated Users.</para>
- </summary>
-
- <param name="listSigningCertificatesRequest">Container for the
- necessary parameters to execute the ListSigningCertificates service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListSigningCertificates service method,
- as returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UploadSigningCertificate(Amazon.IdentityManagement.Model.UploadSigningCertificateRequest)">
- <summary>
- <para>Uploads an X.509 signing certificate and associates it with the
- specified User. Some AWS services use X.509 signing certificates to
- validate requests that are signed with a corresponding private key.
- When you upload the certificate, its default status is <c>Active</c>
- .</para> <para>If the <c>UserName</c> field is not specified, the User
- name is determined implicitly based on the AWS Access Key ID used to
- sign the request. Because this action works for access keys under the
- AWS Account, this API can be used to manage root credentials even if
- the AWS Account has no associated Users.</para>
- <para><b>NOTE:</b>Because the body of a X.509 certificate can be
- large, you should use POST rather than GET when calling
- UploadSigningCertificate. For more information, see Making Query
- Requests in Using AWS Identity and Access Management.</para>
- </summary>
-
- <param name="uploadSigningCertificateRequest">Container for the
- necessary parameters to execute the UploadSigningCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the UploadSigningCertificate service
- method, as returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.DuplicateCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.InvalidCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteUserPolicy(Amazon.IdentityManagement.Model.DeleteUserPolicyRequest)">
- <summary>
- <para>Deletes the specified policy associated with the specified
- User.</para>
- </summary>
-
- <param name="deleteUserPolicyRequest">Container for the necessary
- parameters to execute the DeleteUserPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.PutUserPolicy(Amazon.IdentityManagement.Model.PutUserPolicyRequest)">
- <summary>
- <para>Adds (or updates) a policy document associated with the
- specified User. For information about policies, refer to Overview of
- Policies in <i>Using AWS Identity and Access Management</i> .</para>
- <para>For information about limits on the number of policies you can
- associate with a User, see Limitations on IAM Entities in <i>Using AWS
- Identity and Access Management</i> .</para> <para><b>NOTE:</b>Because
- policy documents can be large, you should use POST rather than GET
- when calling PutUserPolicy. For more information, see Making Query
- Requests in Using AWS Identity and Access Management.</para>
- </summary>
-
- <param name="putUserPolicyRequest">Container for the necessary
- parameters to execute the PutUserPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedPolicyDocumentException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListServerCertificates(Amazon.IdentityManagement.Model.ListServerCertificatesRequest)">
- <summary>
- <para>Lists the server certificates that have the specified path
- prefix. If none exist, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listServerCertificatesRequest">Container for the
- necessary parameters to execute the ListServerCertificates service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListServerCertificates service method,
- as returned by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.GetUserPolicy(Amazon.IdentityManagement.Model.GetUserPolicyRequest)">
- <summary>
- <para>Retrieves the specified policy document for the specified User.
- The returned policy is URL-encoded according to RFC 3986. For more
- information about RFC 3986, go to
- http://www.faqs.org/rfcs/rfc3986.html.</para>
- </summary>
-
- <param name="getUserPolicyRequest">Container for the necessary
- parameters to execute the GetUserPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetUserPolicy service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UpdateLoginProfile(Amazon.IdentityManagement.Model.UpdateLoginProfileRequest)">
- <summary>
- <para>Updates the login profile for the specified User. Use this API
- to change the User's password.</para>
- </summary>
-
- <param name="updateLoginProfileRequest">Container for the necessary
- parameters to execute the UpdateLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UpdateServerCertificate(Amazon.IdentityManagement.Model.UpdateServerCertificateRequest)">
- <summary>
- <para>Updates the name and/or the path of the specified server
- certificate.</para> <para><b>IMPORTANT:</b> You should understand the
- implications of changing a server certificate's path or name. For more
- information, see Managing Server Certificates in Using AWS Identity
- and Access Management. </para> <para><b>NOTE:</b>To change a server
- certificate name the requester must have appropriate permissions on
- both the source object and the target object. For example, to change
- the name from ProductionCert to ProdCert, the entity making the
- request must have permission on ProductionCert and ProdCert, or must
- have permission on all (*). For more information about permissions,
- see Permissions and Policies. </para>
- </summary>
-
- <param name="updateServerCertificateRequest">Container for the
- necessary parameters to execute the UpdateServerCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UpdateUser(Amazon.IdentityManagement.Model.UpdateUserRequest)">
- <summary>
- <para>Updates the name and/or the path of the specified User.</para>
- <para><b>IMPORTANT:</b> You should understand the implications of
- changing a User's path or name. For more information, see Renaming
- Users and Groups in Using AWS Identity and Access Management. </para>
- <para><b>NOTE:</b>To change a User name the requester must have
- appropriate permissions on both the source object and the target
- object. For example, to change Bob to Robert, the entity making the
- request must have permission on Bob and Robert, or must have
- permission on all (*). For more information about permissions, see
- Permissions and Policies. </para>
- </summary>
-
- <param name="updateUserRequest">Container for the necessary parameters
- to execute the UpdateUser service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteLoginProfile(Amazon.IdentityManagement.Model.DeleteLoginProfileRequest)">
- <summary>
- <para>Deletes the login profile for the specified User, which
- terminates the User's ability to access AWS services through the IAM
- login page.</para> <para><b>IMPORTANT:</b>Deleting a User's login
- profile does not prevent a User from accessing IAM through the command
- line interface or the API. To prevent all User access you must also
- either make the access key inactive or delete it. For more
- information about making keys inactive or deleting them, see
- UpdateAccessKey and DeleteAccessKey. </para>
- </summary>
-
- <param name="deleteLoginProfileRequest">Container for the necessary
- parameters to execute the DeleteLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UpdateSigningCertificate(Amazon.IdentityManagement.Model.UpdateSigningCertificateRequest)">
- <summary>
- <para>Changes the status of the specified signing certificate from
- active to disabled, or vice versa. This action can be used to disable
- a User's signing certificate as part of a certificate rotation
- workflow.</para> <para>If the <c>UserName</c> field is not specified,
- the UserName is determined implicitly based on the AWS Access Key ID
- used to sign the request. Because this action works for access keys
- under the AWS Account, this API can be used to manage root credentials
- even if the AWS Account has no associated Users.</para> <para>For
- information about rotating certificates, see Managing Keys and
- Certificates in <i>Using AWS Identity and Access Management</i>
- .</para>
- </summary>
-
- <param name="updateSigningCertificateRequest">Container for the
- necessary parameters to execute the UpdateSigningCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteGroupPolicy(Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest)">
- <summary>
- <para>Deletes the specified policy that is associated with the
- specified group.</para>
- </summary>
-
- <param name="deleteGroupPolicyRequest">Container for the necessary
- parameters to execute the DeleteGroupPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListUsers(Amazon.IdentityManagement.Model.ListUsersRequest)">
- <summary>
- <para>Lists the Users that have the specified path prefix. If there
- are none, the action returns an empty list.</para> <para>You can
- paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
-
- <param name="listUsersRequest">Container for the necessary parameters
- to execute the ListUsers service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListUsers service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UpdateGroup(Amazon.IdentityManagement.Model.UpdateGroupRequest)">
- <summary>
- <para>Updates the name and/or the path of the specified group.</para>
- <para><b>IMPORTANT:</b> You should understand the implications of
- changing a group's path or name. For more information, see Renaming
- Users and Groups in Using AWS Identity and Access Management. </para>
- <para><b>NOTE:</b>To change a group name the requester must have
- appropriate permissions on both the source object and the target
- object. For example, to change Managers to MGRs, the entity making
- the request must have permission on Managers and MGRs, or must have
- permission on all (*). For more information about permissions, see
- Permissions and Policies. </para>
- </summary>
-
- <param name="updateGroupRequest">Container for the necessary
- parameters to execute the UpdateGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.GetServerCertificate(Amazon.IdentityManagement.Model.GetServerCertificateRequest)">
- <summary>
- <para>Retrieves information about the specified server
- certificate.</para>
- </summary>
-
- <param name="getServerCertificateRequest">Container for the necessary
- parameters to execute the GetServerCertificate service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetServerCertificate service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.PutGroupPolicy(Amazon.IdentityManagement.Model.PutGroupPolicyRequest)">
- <summary>
- <para>Adds (or updates) a policy document associated with the
- specified group. For information about policies, refer to Overview of
- Policies in <i>Using AWS Identity and Access Management</i> .</para>
- <para>For information about limits on the number of policies you can
- associate with a group, see Limitations on IAM Entities in <i>Using
- AWS Identity and Access Management</i> .</para>
- <para><b>NOTE:</b>Because policy documents can be large, you should
- use POST rather than GET when calling PutGroupPolicy. For more
- information, see Making Query Requests in Using AWS Identity and
- Access Management.</para>
- </summary>
-
- <param name="putGroupPolicyRequest">Container for the necessary
- parameters to execute the PutGroupPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedPolicyDocumentException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.CreateUser(Amazon.IdentityManagement.Model.CreateUserRequest)">
- <summary>
- <para>Creates a new User for your AWS Account.</para> <para>For
- information about limitations on the number of Users you can create,
- see Limitations on IAM Entities in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
-
- <param name="createUserRequest">Container for the necessary parameters
- to execute the CreateUser service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateUser service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteSigningCertificate(Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest)">
- <summary>
- <para>Deletes the specified signing certificate associated with the
- specified User.</para> <para>If you do not specify a User name, IAM
- determines the User name implicitly based on the AWS Access Key ID
- signing the request. Because this action works for access keys under
- the AWS Account, you can use this API to manage root credentials even
- if the AWS Account has no associated Users.</para>
- </summary>
-
- <param name="deleteSigningCertificateRequest">Container for the
- necessary parameters to execute the DeleteSigningCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.EnableMFADevice(Amazon.IdentityManagement.Model.EnableMFADeviceRequest)">
- <summary>
- <para>Enables the specified MFA device and associates it with the
- specified User name. When enabled, the MFA device is required for
- every subsequent login by the User name associated with the
- device.</para>
- </summary>
-
- <param name="enableMFADeviceRequest">Container for the necessary
- parameters to execute the EnableMFADevice service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.InvalidAuthenticationCodeException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListUserPolicies(Amazon.IdentityManagement.Model.ListUserPoliciesRequest)">
- <summary>
- <para>Lists the names of the policies associated with the specified
- User. If there are none, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listUserPoliciesRequest">Container for the necessary
- parameters to execute the ListUserPolicies service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListUserPolicies service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListAccessKeys(Amazon.IdentityManagement.Model.ListAccessKeysRequest)">
- <summary>
- <para>Returns information about the Access Key IDs associated with the
- specified User. If there are none, the action returns an empty
- list.</para> <para>Although each User is limited to a small number of
- keys, you can still paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para> <para>If the <c>UserName</c> field is
- not specified, the UserName is determined implicitly based on the AWS
- Access Key ID used to sign the request. Because this action works for
- access keys under the AWS Account, this API can be used to manage root
- credentials even if the AWS Account has no associated Users.</para>
- <para><b>NOTE:</b>To ensure the security of your AWS Account, the
- secret access key is accessible only during key and User
- creation.</para>
- </summary>
-
- <param name="listAccessKeysRequest">Container for the necessary
- parameters to execute the ListAccessKeys service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListAccessKeys service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.GetLoginProfile(Amazon.IdentityManagement.Model.GetLoginProfileRequest)">
- <summary>
- <para>Retrieves the login profile for the specified User.</para>
- </summary>
-
- <param name="getLoginProfileRequest">Container for the necessary
- parameters to execute the GetLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetLoginProfile service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListGroupsForUser(Amazon.IdentityManagement.Model.ListGroupsForUserRequest)">
- <summary>
- <para>Lists the groups the specified User belongs to.</para> <para>You
- can paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
-
- <param name="listGroupsForUserRequest">Container for the necessary
- parameters to execute the ListGroupsForUser service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListGroupsForUser service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.CreateGroup(Amazon.IdentityManagement.Model.CreateGroupRequest)">
- <summary>
- <para>Creates a new group.</para> <para>For information about the
- number of groups you can create, see Limitations on IAM Entities in
- <i>Using AWS Identity and Access Management</i> .</para>
- </summary>
-
- <param name="createGroupRequest">Container for the necessary
- parameters to execute the CreateGroup service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateGroup service method, as returned
- by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UploadServerCertificate(Amazon.IdentityManagement.Model.UploadServerCertificateRequest)">
- <summary>
- <para>Uploads a server certificate entity for the AWS Account. The
- server certificate entity includes a public key certificate, a private
- key, and an optional certificate chain, which should all be
- PEM-encoded.</para> <para>For information about the number of server
- certificates you can upload, see Limitations on IAM Entities in
- <i>Using AWS Identity and Access Management</i> .</para>
- <para><b>NOTE:</b>Because the body of the public key certificate,
- private key, and the certificate chain can be large, you should use
- POST rather than GET when calling UploadServerCertificate. For more
- information, see Making Query Requests in Using AWS Identity and
- Access Management.</para>
- </summary>
-
- <param name="uploadServerCertificateRequest">Container for the
- necessary parameters to execute the UploadServerCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <returns>The response from the UploadServerCertificate service method,
- as returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.KeyPairMismatchException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.MalformedCertificateException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.CreateAccountAlias(Amazon.IdentityManagement.Model.CreateAccountAliasRequest)">
- <summary>
- <para>This action creates an alias for your AWS Account. For
- information about using an AWS Account alias, see Using an Alias for
- Your AWS Account ID in <i>Using AWS Identity and Access Management</i>
- .</para>
- </summary>
-
- <param name="createAccountAliasRequest">Container for the necessary
- parameters to execute the CreateAccountAlias service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.GetGroupPolicy(Amazon.IdentityManagement.Model.GetGroupPolicyRequest)">
- <summary>
- <para>Retrieves the specified policy document for the specified group.
- The returned policy is URL-encoded according to RFC 3986. For more
- information about RFC 3986, go to
- http://www.faqs.org/rfcs/rfc3986.html.</para>
- </summary>
-
- <param name="getGroupPolicyRequest">Container for the necessary
- parameters to execute the GetGroupPolicy service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetGroupPolicy service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteUser(Amazon.IdentityManagement.Model.DeleteUserRequest)">
- <summary>
- <para>Deletes the specified User. The User must not belong to any
- groups, have any keys or signing certificates, or have any attached
- policies.</para>
- </summary>
-
- <param name="deleteUserRequest">Container for the necessary parameters
- to execute the DeleteUser service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.DeleteConflictException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeactivateMFADevice(Amazon.IdentityManagement.Model.DeactivateMFADeviceRequest)">
- <summary>
- <para>Deactivates the specified MFA device and removes it from
- association with the User name for which it was originally
- enabled.</para>
- </summary>
-
- <param name="deactivateMFADeviceRequest">Container for the necessary
- parameters to execute the DeactivateMFADevice service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.EntityTemporarilyUnmodifiableException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.RemoveUserFromGroup(Amazon.IdentityManagement.Model.RemoveUserFromGroupRequest)">
- <summary>
- <para>Removes the specified User from the specified group.</para>
- </summary>
-
- <param name="removeUserFromGroupRequest">Container for the necessary
- parameters to execute the RemoveUserFromGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteServerCertificate(Amazon.IdentityManagement.Model.DeleteServerCertificateRequest)">
- <summary>
- <para>Deletes the specified server certificate.</para>
- <para><b>IMPORTANT:</b>If your Elastic Load Balancing instances are
- using a server certificate, deleting the certificate could have
- implications for your application. If your Elastic Load Balancing
- instances do not detect the deletion of bound certificates, they may
- continue to use the certificates. This could cause them to stop
- accepting traffic. We recommend that you remove the reference to the
- certificate from your Elastic Load Balancing instances before using
- this command to delete the certificate.</para>
- </summary>
-
- <param name="deleteServerCertificateRequest">Container for the
- necessary parameters to execute the DeleteServerCertificate service
- method on AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.DeleteConflictException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListGroupPolicies(Amazon.IdentityManagement.Model.ListGroupPoliciesRequest)">
- <summary>
- <para>Lists the names of the policies associated with the specified
- group. If there are none, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listGroupPoliciesRequest">Container for the necessary
- parameters to execute the ListGroupPolicies service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListGroupPolicies service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.CreateLoginProfile(Amazon.IdentityManagement.Model.CreateLoginProfileRequest)">
- <summary>
- <para>Creates a login profile for the specified User, giving the User
- the ability to access AWS services such as the AWS Management Console.
- For more information about login profiles, see Managing Login
- Profiles and MFA Devices in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
-
- <param name="createLoginProfileRequest">Container for the necessary
- parameters to execute the CreateLoginProfile service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateLoginProfile service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.EntityAlreadyExistsException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.CreateAccessKey(Amazon.IdentityManagement.Model.CreateAccessKeyRequest)">
- <summary>
- <para>Creates a new AWS Secret Access Key and corresponding AWS Access
- Key ID for the specified User. The default status for new keys is
- <c>Active</c> .</para> <para>If you do not specify a User name, IAM
- determines the User name implicitly based on the AWS Access Key ID
- signing the request. Because this action works for access keys under
- the AWS Account, you can use this API to manage root credentials even
- if the AWS Account has no associated Users.</para> <para>For
- information about limits on the number of keys you can create, see
- Limitations on IAM Entities in <i>Using AWS Identity and Access
- Management</i> .</para> <para><b>IMPORTANT:</b>To ensure the security
- of your AWS Account, the Secret Access Key is accessible only during
- key and User creation. You must save the key (for example, in a text
- file) if you want to be able to access it again. If a secret key is
- lost, you can delete the access keys for the associated User and then
- create new keys.</para>
- </summary>
-
- <param name="createAccessKeyRequest">Container for the necessary
- parameters to execute the CreateAccessKey service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the CreateAccessKey service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.GetUser(Amazon.IdentityManagement.Model.GetUserRequest)">
- <summary>
- <para>Retrieves information about the specified User, including the
- User's path, GUID, and ARN.</para> <para>If you do not specify a User
- name, IAM determines the User name implicitly based on the AWS Access
- Key ID signing the request.</para>
- </summary>
-
- <param name="getUserRequest">Container for the necessary parameters to
- execute the GetUser service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetUser service method, as returned by
- AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ResyncMFADevice(Amazon.IdentityManagement.Model.ResyncMFADeviceRequest)">
- <summary>
- <para>Synchronizes the specified MFA device with AWS servers.</para>
- </summary>
-
- <param name="resyncMFADeviceRequest">Container for the necessary
- parameters to execute the ResyncMFADevice service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.InvalidAuthenticationCodeException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListMFADevices(Amazon.IdentityManagement.Model.ListMFADevicesRequest)">
- <summary>
- <para>Lists the MFA devices associated with the specified User
- name.</para> <para>You can paginate the results using the
- <c>MaxItems</c> and <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listMFADevicesRequest">Container for the necessary
- parameters to execute the ListMFADevices service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListMFADevices service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.UpdateAccessKey(Amazon.IdentityManagement.Model.UpdateAccessKeyRequest)">
- <summary>
- <para>Changes the status of the specified access key from Active to
- Inactive, or vice versa. This action can be used to disable a User's
- key as part of a key rotation workflow.</para> <para>If the
- <c>UserName</c> field is not specified, the UserName is determined
- implicitly based on the AWS Access Key ID used to sign the request.
- Because this action works for access keys under the AWS Account, this
- API can be used to manage root credentials even if the AWS Account has
- no associated Users.</para> <para>For information about rotating keys,
- see Managing Keys and Certificates in <i>Using AWS Identity and Access
- Management</i> .</para>
- </summary>
-
- <param name="updateAccessKeyRequest">Container for the necessary
- parameters to execute the UpdateAccessKey service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.GetAccountSummary(Amazon.IdentityManagement.Model.GetAccountSummaryRequest)">
- <summary>
- <para>Retrieves account level information about account entity usage
- and IAM quotas.</para> <para>For information about limitations on IAM
- entities, see Limitations on IAM Entities in <i>Using AWS Identity and
- Access Management</i> .</para>
- </summary>
-
- <param name="getAccountSummaryRequest">Container for the necessary
- parameters to execute the GetAccountSummary service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetAccountSummary service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.AddUserToGroup(Amazon.IdentityManagement.Model.AddUserToGroupRequest)">
- <summary>
- <para>Adds the specified User to the specified group.</para>
- </summary>
-
- <param name="addUserToGroupRequest">Container for the necessary
- parameters to execute the AddUserToGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.LimitExceededException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.GetGroup(Amazon.IdentityManagement.Model.GetGroupRequest)">
- <summary>
- <para>Returns a list of Users that are in the specified group. You can
- paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
-
- <param name="getGroupRequest">Container for the necessary parameters
- to execute the GetGroup service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the GetGroup service method, as returned by
- AmazonIdentityManagementService.</returns>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.ListAccountAliases(Amazon.IdentityManagement.Model.ListAccountAliasesRequest)">
- <summary>
- <para>Lists the account aliases associated with the account. For
- information about using an AWS Account alias, see Using an Alias for
- Your AWS Account ID in <i>Using AWS Identity and Access Management</i>
- .</para> <para>You can paginate the results using the <c>MaxItems</c>
- and <c>Marker</c> parameters.</para>
- </summary>
-
- <param name="listAccountAliasesRequest">Container for the necessary
- parameters to execute the ListAccountAliases service method on
- AmazonIdentityManagementService.</param>
-
- <returns>The response from the ListAccountAliases service method, as
- returned by AmazonIdentityManagementService.</returns>
-
- </member>
- <member name="M:Amazon.IdentityManagement.AmazonIdentityManagementServiceClient.DeleteGroup(Amazon.IdentityManagement.Model.DeleteGroupRequest)">
- <summary>
- <para>Deletes the specified group. The group must not contain any
- Users or have any attached policies.</para>
- </summary>
-
- <param name="deleteGroupRequest">Container for the necessary
- parameters to execute the DeleteGroup service method on
- AmazonIdentityManagementService.</param>
-
- <exception cref="T:Amazon.IdentityManagement.Model.NoSuchEntityException"/>
- <exception cref="T:Amazon.IdentityManagement.Model.DeleteConflictException"/>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.ModifyInstanceGroupsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ModifyInstanceGroups operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.JobFlowDetailUnmarshaller">
- <summary>
- JobFlowDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.InternalServerErrorException">
- <summary>
- AmazonElasticMapReduce exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InternalServerErrorException.#ctor(System.String)">
- <summary>
- Constructs a new InternalServerErrorException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.InstanceGroupDetail">
- <summary>
- <para>Detailed information about an instance group. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithInstanceGroupId(System.String)">
- <summary>
- Sets the InstanceGroupId property
- </summary>
- <param name="instanceGroupId">The value to set for the InstanceGroupId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The value to set for the Name property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithMarket(System.String)">
- <summary>
- Sets the Market property
- </summary>
- <param name="market">The value to set for the Market property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithInstanceRole(System.String)">
- <summary>
- Sets the InstanceRole property
- </summary>
- <param name="instanceRole">The value to set for the InstanceRole property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The value to set for the InstanceType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithInstanceRequestCount(System.Int32)">
- <summary>
- Sets the InstanceRequestCount property
- </summary>
- <param name="instanceRequestCount">The value to set for the InstanceRequestCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithInstanceRunningCount(System.Int32)">
- <summary>
- Sets the InstanceRunningCount property
- </summary>
- <param name="instanceRunningCount">The value to set for the InstanceRunningCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The value to set for the State property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithLastStateChangeReason(System.String)">
- <summary>
- Sets the LastStateChangeReason property
- </summary>
- <param name="lastStateChangeReason">The value to set for the LastStateChangeReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithCreationDateTime(System.DateTime)">
- <summary>
- Sets the CreationDateTime property
- </summary>
- <param name="creationDateTime">The value to set for the CreationDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithStartDateTime(System.DateTime)">
- <summary>
- Sets the StartDateTime property
- </summary>
- <param name="startDateTime">The value to set for the StartDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithReadyDateTime(System.DateTime)">
- <summary>
- Sets the ReadyDateTime property
- </summary>
- <param name="readyDateTime">The value to set for the ReadyDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.WithEndDateTime(System.DateTime)">
- <summary>
- Sets the EndDateTime property
- </summary>
- <param name="endDateTime">The value to set for the EndDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.InstanceGroupId">
- <summary>
- Unique identifier for the instance group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.Name">
- <summary>
- Friendly name for the instance group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.Market">
- <summary>
- Market type of the Amazon EC2 instances used to create a cluster node.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>ON_DEMAND</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.InstanceRole">
- <summary>
- Instance group role in the cluster
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>MASTER, CORE, TASK</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.InstanceType">
- <summary>
- Amazon EC2 Instance type.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.InstanceRequestCount">
- <summary>
- Target number of instances to run in the instance group.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.InstanceRunningCount">
- <summary>
- Actual count of running instances.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.State">
- <summary>
- State of instance group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>PROVISIONING, STARTING, RUNNING, SHUTTING_DOWN, TERMINATED, FAILED</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.LastStateChangeReason">
- <summary>
- Details regarding the state of the instance group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.CreationDateTime">
- <summary>
- The date/time the instance group was created.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.StartDateTime">
- <summary>
- The date/time the instance group was started.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.ReadyDateTime">
- <summary>
- The date/time the instance group was available to the cluster.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupDetail.EndDateTime">
- <summary>
- The date/time the instance group was terminated.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.SourceSecurityGroupUnmarshaller">
- <summary>
- SourceSecurityGroup Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.LoadBalancerDescriptionUnmarshaller">
- <summary>
- LoadBalancerDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DescribeInstanceHealthRequestMarshaller">
- <summary>
- Describe Instance Health Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.ConfigureHealthCheckResultUnmarshaller">
- <summary>
- ConfigureHealthCheckResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateResponse">
- <summary>
- Returns information about the SetLoadBalancerListenerSSLCertificateResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerListenerSSLCertificateResponse.SetLoadBalancerListenerSSLCertificateResult">
- <summary>
- Gets and sets the SetLoadBalancerListenerSSLCertificateResult property.
- The output for the SetLoadBalancerListenerSSLCertificate action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Policies">
- <summary>
- <para> The Policies data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Policies.#ctor">
- <summary>
- Default constructor for a new Policies object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Policies.WithAppCookieStickinessPolicies(Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy[])">
- <summary>
- Adds elements to the AppCookieStickinessPolicies collection
- </summary>
- <param name="appCookieStickinessPolicies">The values to add to the AppCookieStickinessPolicies collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Policies.WithAppCookieStickinessPolicies(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.AppCookieStickinessPolicy})">
- <summary>
- Adds elements to the AppCookieStickinessPolicies collection
- </summary>
- <param name="appCookieStickinessPolicies">The values to add to the AppCookieStickinessPolicies collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Policies.WithLBCookieStickinessPolicies(Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy[])">
- <summary>
- Adds elements to the LBCookieStickinessPolicies collection
- </summary>
- <param name="lBCookieStickinessPolicies">The values to add to the LBCookieStickinessPolicies collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.Policies.WithLBCookieStickinessPolicies(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.LBCookieStickinessPolicy})">
- <summary>
- Adds elements to the LBCookieStickinessPolicies collection
- </summary>
- <param name="lBCookieStickinessPolicies">The values to add to the LBCookieStickinessPolicies collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.Policies.AppCookieStickinessPolicies">
- <summary>
- A list of the <a>AppCookieStickinessPolicy</a> objects created with <a>CreateAppCookieStickinessPolicy</a>.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.Policies.LBCookieStickinessPolicies">
- <summary>
- A list of the <a>LBCookieStickinessPolicy</a> objects created with <a>CreateAppCookieStickinessPolicy</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DuplicatePolicyNameException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DuplicatePolicyNameException.#ctor(System.String)">
- <summary>
- Constructs a new DuplicatePolicyNameException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerPolicyResult">
- <summary>
- <para> The output for the DeleteLoadBalancerPolicy action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsResult">
- <summary>
- <para>Provides a list of validation messages.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsResult.WithMessages(Amazon.ElasticBeanstalk.Model.ValidationMessage[])">
- <summary>
- Adds elements to the Messages collection
- </summary>
- <param name="messages">The values to add to the Messages collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsResult.WithMessages(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ValidationMessage})">
- <summary>
- Adds elements to the Messages collection
- </summary>
- <param name="messages">The values to add to the Messages collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsResult.Messages">
- <summary>
- A list of <a>ValidationMessage</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsResponse">
- <summary>
- Returns information about the ValidateConfigurationSettingsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsResponse.ValidateConfigurationSettingsResult">
- <summary>
- Gets and sets the ValidateConfigurationSettingsResult property.
- Provides a list of validation messages.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult">
- <summary>
- <para>Describes the properties of an environment.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithEndpointURL(System.String)">
- <summary>
- Sets the EndpointURL property
- </summary>
- <param name="endpointURL">The value to set for the EndpointURL property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithCNAME(System.String)">
- <summary>
- Sets the CNAME property
- </summary>
- <param name="cNAME">The value to set for the CNAME property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithHealth(System.String)">
- <summary>
- Sets the Health property
- </summary>
- <param name="health">The value to set for the Health property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.WithResources(Amazon.ElasticBeanstalk.Model.EnvironmentResourcesDescription)">
- <summary>
- Sets the Resources property
- </summary>
- <param name="resources">The value to set for the Resources property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.EnvironmentName">
- <summary>
- The name of this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.EnvironmentId">
- <summary>
- The ID of this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.ApplicationName">
- <summary>
- The name of the application associated with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.VersionLabel">
- <summary>
- The application version deployed in this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.SolutionStackName">
- <summary>
- The name of the <c>SolutionStack</c> deployed with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.TemplateName">
- <summary>
- The name of the configuration template used to originally launch this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.Description">
- <summary>
- Describes this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.EndpointURL">
- <summary>
- The URL to the LoadBalancer for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.CNAME">
- <summary>
- The URL to the CNAME for this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.DateCreated">
- <summary>
- The creation date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.DateUpdated">
- <summary>
- The last modified date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.Status">
- <summary>
- The current operational status of the environment: <ul> <li> <c>Launching</c>: Environment is in the process of initial deployment. </li>
- <li> <c>Updating</c>: Environment is in the process of updating its configuration settings or application version. </li> <li> <c>Ready</c>:
- Environment is available to have an action performed on it, such as update or terminate. </li> <li> <c>Terminating</c>: Environment is in
- the shut-down process. </li> <li> <c>Terminated</c>: Environment is not running. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Launching, Updating, Ready, Terminating, Terminated</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.Health">
- <summary>
- Describes the health status of the environment. AWS Elastic Beanstalk indicates the failure levels for a running environment: <enumValues>
- <value name="Red"> <c>Red</c> : Indicates the environment is not working. </value> <value name="Yellow"> <c>Yellow</c>: Indicates that
- something is wrong, the application might not be available, but the instances appear running. </value> <value name="Green"> <c>Green</c>:
- Indicates the environment is healthy and fully functional. </value> </enumValues> <ul> <li> <c>Red</c>: Indicates the environment is not
- responsive. Occurs when three or more consecutive failures occur for an environment. </li> <li> <c>Yellow</c>: Indicates that something is
- wrong. Occurs when two consecutive failures occur for an environment. </li> <li> <c>Green</c>: Indicates the environment is healthy and
- fully functional. </li> <li> <c>Grey</c>: Default health for a new environment. The environment is not fully launched and health checks have
- not started or health checks are suspended during an <c>UpdateEnvironment</c> or <c>RestartEnvironement</c> request. </li> </ul> Default:
- <c>Grey</c>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Green, Yellow, Red, Grey</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateEnvironmentResult.Resources">
- <summary>
- The description of the AWS resources used by this environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateApplicationResult">
- <summary>
- <para>Result message containing a single description of an application.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateApplicationResult.WithApplication(Amazon.ElasticBeanstalk.Model.ApplicationDescription)">
- <summary>
- Sets the Application property
- </summary>
- <param name="application">The value to set for the Application property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationResult.Application">
- <summary>
- The <a>ApplicationDescription</a> of the application.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateApplicationResponse">
- <summary>
- Returns information about the UpdateApplicationResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationResponse.UpdateApplicationResult">
- <summary>
- Gets and sets the UpdateApplicationResult property.
- Result message containing a single description of an application.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ValidateConfigurationSettingsRequestMarshaller">
- <summary>
- Validate Configuration Settings Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ListAvailableSolutionStacksRequestMarshaller">
- <summary>
- List Available Solution Stacks Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEventsResultUnmarshaller">
- <summary>
- DescribeEventsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeConfigurationSettingsResultUnmarshaller">
- <summary>
- DescribeConfigurationSettingsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateApplicationRequestMarshaller">
- <summary>
- Create Application Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationVersionsException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TooManyApplicationVersionsException.#ctor(System.String)">
- <summary>
- Constructs a new TooManyApplicationVersionsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.SourceConfiguration">
- <summary>
- <para>A specification for an environment configuration</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SourceConfiguration.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.SourceConfiguration.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.SourceConfiguration.ApplicationName">
- <summary>
- The name of the application associated with the configuration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.SourceConfiguration.TemplateName">
- <summary>
- The name of the configuration template.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RestartAppServerRequest">
- <summary>
- Container for the parameters to the RestartAppServer operation.
- <para> Causes the environment to restart the application container server running on each Amazon EC2 instance. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RestartAppServer(Amazon.ElasticBeanstalk.Model.RestartAppServerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RestartAppServerRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RestartAppServerRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RestartAppServerRequest.EnvironmentId">
- <summary>
- The ID of the environment to restart the server for.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RestartAppServerRequest.EnvironmentName">
- <summary>
- The name of the environment to restart the server for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoResponse">
- <summary>
- Returns information about the RequestEnvironmentInfo response metadata.
- The RequestEnvironmentInfo operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription">
- <summary>
- <para>The information retrieved from the Amazon EC2 instances.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.WithInfoType(System.String)">
- <summary>
- Sets the InfoType property
- </summary>
- <param name="infoType">The value to set for the InfoType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.WithEc2InstanceId(System.String)">
- <summary>
- Sets the Ec2InstanceId property
- </summary>
- <param name="ec2InstanceId">The value to set for the Ec2InstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.WithSampleTimestamp(System.DateTime)">
- <summary>
- Sets the SampleTimestamp property
- </summary>
- <param name="sampleTimestamp">The value to set for the SampleTimestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The value to set for the Message property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.InfoType">
- <summary>
- The type of information retrieved.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>tail</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.Ec2InstanceId">
- <summary>
- The Amazon EC2 Instance ID for this information.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.SampleTimestamp">
- <summary>
- The time stamp when this information was retrieved.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentInfoDescription.Message">
- <summary>
- The retrieved information.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeApplicationsRequest">
- <summary>
- Container for the parameters to the DescribeApplications operation.
- <para>Returns the descriptions of existing applications.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeApplications(Amazon.ElasticBeanstalk.Model.DescribeApplicationsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationsRequest.WithApplicationNames(System.String[])">
- <summary>
- Adds elements to the ApplicationNames collection
- </summary>
- <param name="applicationNames">The values to add to the ApplicationNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationsRequest.WithApplicationNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ApplicationNames collection
- </summary>
- <param name="applicationNames">The values to add to the ApplicationNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeApplicationsRequest.ApplicationNames">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include those with the specified names.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteApplicationVersionResponse">
- <summary>
- Returns information about the DeleteApplicationVersion response metadata.
- The DeleteApplicationVersion operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RunningInstance">
- <summary>
- Properties of a Launched EC2 Instance
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">Unique ID of the instance launched.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">Image ID of the AMI used to launch the
- instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithInstanceState(Amazon.EC2.Model.InstanceState)">
- <summary>
- Sets the InstanceState property
- </summary>
- <param name="instanceState">The current state of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetInstanceState">
- <summary>
- Checks if InstanceState property is set
- </summary>
- <returns>true if InstanceState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithPrivateDnsName(System.String)">
- <summary>
- Sets the PrivateDnsName property
- </summary>
- <param name="privateDnsName">The private DNS name assigned to the instance.
- This DNS name can only be used inside the Amazon EC2 network.
- This element remains empty until the instance
- enters a running state</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetPrivateDnsName">
- <summary>
- Checks if PrivateDnsName property is set
- </summary>
- <returns>true if PrivateDnsName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithPublicDnsName(System.String)">
- <summary>
- Sets the PublicDnsName property
- </summary>
- <param name="publicDnsName">The public DNS name assigned to the instance.
- This DNS name is contactable from
- outside the Amazon EC2 network.
- This element remains empty until the
- instance enters a running state</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetPublicDnsName">
- <summary>
- Checks if PublicDnsName property is set
- </summary>
- <returns>true if PublicDnsName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithStateTransitionReason(System.String)">
- <summary>
- Sets the StateTransitionReason property
- </summary>
- <param name="stateTransitionReason">Reason for the most recent state transition.
- This might be an empty string.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetStateTransitionReason">
- <summary>
- Checks if StateTransitionReason property is set
- </summary>
- <returns>true if StateTransitionReason property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">If this instance was launched with an
- associated key pair, this
- displays the key pair
- name.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithAmiLaunchIndex(System.String)">
- <summary>
- Sets the AmiLaunchIndex property
- </summary>
- <param name="amiLaunchIndex">The AMI launch index, which can be used to find
- this instance
- within the launch
- group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetAmiLaunchIndex">
- <summary>
- Checks if AmiLaunchIndex property is set
- </summary>
- <returns>true if AmiLaunchIndex property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithProductCode(System.String[])">
- <summary>
- Sets the ProductCode property
- </summary>
- <param name="list">Product codes attached to this instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetProductCode">
- <summary>
- Checks if ProductCode property is set
- </summary>
- <returns>true if ProductCode property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The instance type.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithLaunchTime(System.String)">
- <summary>
- Sets the LaunchTime property
- </summary>
- <param name="launchTime">The time the instance launched.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetLaunchTime">
- <summary>
- Checks if LaunchTime property is set
- </summary>
- <returns>true if LaunchTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithPlacement(Amazon.EC2.Model.Placement)">
- <summary>
- Sets the Placement property
- </summary>
- <param name="placement">The location where the instance launched.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetPlacement">
- <summary>
- Checks if Placement property is set
- </summary>
- <returns>true if Placement property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">Kernel associated with this instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetKernelId">
- <summary>
- Checks if KernelId property is set
- </summary>
- <returns>true if KernelId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">RAM disk associated with this instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetRamdiskId">
- <summary>
- Checks if RamdiskId property is set
- </summary>
- <returns>true if RamdiskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithPlatform(System.String)">
- <summary>
- Sets the Platform property
- </summary>
- <param name="platform">Platform of the instance (e.g., Windows).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetPlatform">
- <summary>
- Checks if Platform property is set
- </summary>
- <returns>true if Platform property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithMonitoring(Amazon.EC2.Model.Monitoring)">
- <summary>
- Sets the Monitoring property
- </summary>
- <param name="monitoring">Specifies whether monitoring is enabled for the
- instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetMonitoring">
- <summary>
- Checks if Monitoring property is set
- </summary>
- <returns>true if Monitoring property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">Specifies the subnet ID in which the instance
- is running (Amazon Virtual Private Cloud).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">Specifies the VPC in which the instance is
- running (Amazon Virtual Private Cloud).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithPrivateIpAddress(System.String)">
- <summary>
- Sets the PrivateIpAddress property
- </summary>
- <param name="privateIpAddress">Specifies the private IP address that is
- assigned to the instance (Amazon VPC).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetPrivateIpAddress">
- <summary>
- Checks if PrivateIpAddress property is set
- </summary>
- <returns>true if PrivateIpAddress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithIpAddress(System.String)">
- <summary>
- Sets the IpAddress property
- </summary>
- <param name="ipAddress">Specifies the IP address of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetIpAddress">
- <summary>
- Checks if IpAddress property is set
- </summary>
- <returns>true if IpAddress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithSourceDestCheck(System.Boolean)">
- <summary>
- Sets the SourceDestCheck property
- </summary>
- <param name="sourceDestCheck">This attribute exists to enable a Network Address Translation (NAT)
- instance in a VPC to perform NAT. The attribute controls whether
- source/destination checking is enabled on the instance. A value of
- true means checking is enabled, and false means checking is
- disabled. The value must be false for the instance to perform NAT.
- For more information, go to NAT Instances in the Amazon Virtual
- Private Cloud User Guide.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetSourceDestCheck">
- <summary>
- Checks if SourceDestCheck property is set
- </summary>
- <returns>true if SourceDestCheck property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithGroupId(System.String[])">
- <summary>
- Sets the GroupId property
- </summary>
- <param name="list">A list of VPC security groups the instance is in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithGroupName(System.String[])">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="list">A list of security groups the instance is in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetGroupName">
- <summary>
- Checks if GroupName property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithStateReason(Amazon.EC2.Model.StateReason)">
- <summary>
- Sets the StateReason property
- </summary>
- <param name="stateReason">The reason for the state change.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetStateReason">
- <summary>
- Checks if StateReason property is set
- </summary>
- <returns>true if StateReason property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithArchitecture(System.String)">
- <summary>
- Sets the Architecture property
- </summary>
- <param name="architecture">The architecture of the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetArchitecture">
- <summary>
- Checks if Architecture property is set
- </summary>
- <returns>true if Architecture property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithRootDeviceType(System.String)">
- <summary>
- Sets the RootDeviceType property
- </summary>
- <param name="rootDeviceType">The root device type used by the AMI. The AMI
- can use an Amazon EBS or instance store root device.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetRootDeviceType">
- <summary>
- Checks if RootDeviceType property is set
- </summary>
- <returns>true if RootDeviceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithRootDeviceName(System.String)">
- <summary>
- Sets the RootDeviceName property
- </summary>
- <param name="rootDeviceName">The root device name (e.g., /dev/sda1).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetRootDeviceName">
- <summary>
- Checks if RootDeviceName property is set
- </summary>
- <returns>true if RootDeviceName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithBlockDeviceMapping(Amazon.EC2.Model.InstanceBlockDeviceMapping[])">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="list">Block device mapping set.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithInstanceLifecycle(System.String)">
- <summary>
- Sets the InstanceLifecycle property
- </summary>
- <param name="instanceLifecycle">InstanceLifecycle property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetInstanceLifecycle">
- <summary>
- Checks if InstanceLifecycle property is set
- </summary>
- <returns>true if InstanceLifecycle property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithSpotInstanceRequestId(System.String)">
- <summary>
- Sets the SpotInstanceRequestId property
- </summary>
- <param name="spotInstanceRequestId">The ID of the Spot Instance request that
- started this instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetSpotInstanceRequestId">
- <summary>
- Checks if SpotInstanceRequestId property is set
- </summary>
- <returns>true if SpotInstanceRequestId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithLicense(Amazon.EC2.Model.InstanceLicense)">
- <summary>
- Sets the License property
- </summary>
- <param name="license">The active license in use and attached to the
- Amazon EC2 instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetLicense">
- <summary>
- Checks if License property is set
- </summary>
- <returns>true if License property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithVirtualizationType(System.String)">
- <summary>
- Sets the VirtualizationType property
- </summary>
- <param name="virtualizationType">Specifies whether the Amazon EC2 instance is a
- hardware virtual machine
- (HVM) or a para-virtual machine (PVM).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetVirtualizationType">
- <summary>
- Checks if VirtualizationType property is set
- </summary>
- <returns>true if VirtualizationType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithClientToken(System.String)">
- <summary>
- Sets the ClientToken property
- </summary>
- <param name="clientToken">ClientToken property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetClientToken">
- <summary>
- Checks if ClientToken property is set
- </summary>
- <returns>true if ClientToken property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the RunningInstance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunningInstance.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Unique ID of the instance launched.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.ImageId">
- <summary>
- Gets and sets the ImageId property.
- Image ID of the AMI used to launch the
- instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.InstanceState">
- <summary>
- Gets and sets the InstanceState property.
- The current state of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.PrivateDnsName">
- <summary>
- Gets and sets the PrivateDnsName property.
- The private DNS name assigned to the instance.
- This DNS name can only be used inside the Amazon EC2 network.
- This element remains empty until the instance
- enters a running state
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.PublicDnsName">
- <summary>
- Gets and sets the PublicDnsName property.
- The public DNS name assigned to the instance.
- This DNS name is contactable from
- outside the Amazon EC2 network.
- This element remains empty until the
- instance enters a running state
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.StateTransitionReason">
- <summary>
- Gets and sets the StateTransitionReason property.
- Reason for the most recent state transition.
- This might be an empty string.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.KeyName">
- <summary>
- Gets and sets the KeyName property.
- If this instance was launched with an
- associated key pair, this
- displays the key pair
- name.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.AmiLaunchIndex">
- <summary>
- Gets and sets the AmiLaunchIndex property.
- The AMI launch index, which can be used to find
- this instance
- within the launch
- group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.ProductCode">
- <summary>
- Gets and sets the ProductCode property.
- Product codes attached to this instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- The instance type.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.LaunchTime">
- <summary>
- Gets and sets the LaunchTime property.
- The time the instance launched.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.Placement">
- <summary>
- Gets and sets the Placement property.
- The location where the instance launched.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.KernelId">
- <summary>
- Gets and sets the KernelId property.
- Kernel associated with this instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.RamdiskId">
- <summary>
- Gets and sets the RamdiskId property.
- RAM disk associated with this instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.Platform">
- <summary>
- Gets and sets the Platform property.
- Platform of the instance (e.g., Windows).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.Monitoring">
- <summary>
- Gets and sets the Monitoring property.
- Specifies whether monitoring is enabled for the
- instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- Specifies the subnet ID in which the instance
- is running (Amazon Virtual Private Cloud).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.VpcId">
- <summary>
- Gets and sets the VpcId property.
- Specifies the VPC in which the instance is
- running (Amazon Virtual Private Cloud).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.PrivateIpAddress">
- <summary>
- Gets and sets the PrivateIpAddress property.
- Specifies the private IP address that is
- assigned to the instance (Amazon VPC).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.IpAddress">
- <summary>
- Gets and sets the IpAddress property.
- Specifies the IP address of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.SourceDestCheck">
- <summary>
- Gets and sets the SourceDestCheck property.
- This attribute exists to enable a Network Address Translation (NAT)
- instance in a VPC to perform NAT. The attribute controls whether
- source/destination checking is enabled on the instance. A value of
- true means checking is enabled, and false means checking is
- disabled. The value must be false for the instance to perform NAT.
- For more information, go to NAT Instances in the Amazon Virtual
- Private Cloud User Guide.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.GroupId">
- <summary>
- Gets and sets the GroupId property.
- A list of VPC security groups the instance is in.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.GroupName">
- <summary>
- Gets and sets the GroupName property.
- A list of security groups the instance is in.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.StateReason">
- <summary>
- Gets and sets the StateReason property.
- The reason for the state change.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.Architecture">
- <summary>
- Gets and sets the Architecture property.
- The architecture of the image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.RootDeviceType">
- <summary>
- Gets and sets the RootDeviceType property.
- The root device type used by the AMI. The AMI
- can use an Amazon EBS or instance store root device.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.RootDeviceName">
- <summary>
- Gets and sets the RootDeviceName property.
- The root device name (e.g., /dev/sda1).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- Block device mapping set.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.InstanceLifecycle">
- <summary>
- Gets and sets the InstanceLifecycle property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.SpotInstanceRequestId">
- <summary>
- Gets and sets the SpotInstanceRequestId property.
- The ID of the Spot Instance request that
- started this instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.License">
- <summary>
- Gets and sets the License property.
- The active license in use and attached to the
- Amazon EC2 instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.VirtualizationType">
- <summary>
- Gets and sets the VirtualizationType property.
- Specifies whether the Amazon EC2 instance is a
- hardware virtual machine
- (HVM) or a para-virtual machine (PVM).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.ClientToken">
- <summary>
- Gets and sets the ClientToken property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunningInstance.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the RunningInstance.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceRouteRequest">
- <summary>
- Replaces an existing route within a route table in a VPC. For more information about route tables, go to
- Route Tables in the Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The ID of the route table where the route will
- be replaced.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.WithDestinationCidrBlock(System.String)">
- <summary>
- Sets the DestinationCidrBlock property
- </summary>
- <param name="destinationCidrBlock">The CIDR address block used for the
- destination match. For example: 0.0.0.0/0.The
- value you provide must match the CIDR of an
- existing route in the table.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.IsSetDestinationCidrBlock">
- <summary>
- Checks if DestinationCidrBlock property is set
- </summary>
- <returns>true if DestinationCidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.WithGatewayId(System.String)">
- <summary>
- Sets the GatewayId property
- </summary>
- <param name="gatewayId">The ID of a gateway attached to your VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.IsSetGatewayId">
- <summary>
- Checks if GatewayId property is set
- </summary>
- <returns>true if GatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of a NAT instance in your VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteRequest.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The ID of the route table where the route will
- be replaced.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteRequest.DestinationCidrBlock">
- <summary>
- Gets and sets the DestinationCidrBlock property.
- The CIDR address block used for the
- destination match. For example: 0.0.0.0/0.The
- value you provide must match the CIDR of an
- existing route in the table.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteRequest.GatewayId">
- <summary>
- Gets and sets the GatewayId property.
- The ID of a gateway attached to your VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of a NAT instance in your VPC.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RegisterImageResponse">
- <summary>
- Register Image Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageResponse.IsSetRegisterImageResult">
- <summary>
- Checks if RegisterImageResult property is set
- </summary>
- <returns>true if RegisterImageResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RegisterImageResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RegisterImageResponse.RegisterImageResult">
- <summary>
- Gets and sets the RegisterImageResult property.
- Register Image Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.MonitorInstancesRequest">
- <summary>
- Enables monitoring for a running instance. For
- more information, refer to
- the Amazon CloudWatch Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesRequest.WithInstanceId(System.String[])">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="list">Instance ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.MonitorInstancesRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.MonitorInstancesRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance ID.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ModifyImageAttributeRequest">
- <summary>
- Modifies an attribute of an AMI
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">The AMI ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Specifies the attribute to modify. Valid
- Values: launchPermission |
- productCodes</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.WithOperationType(System.String)">
- <summary>
- Sets the OperationType property
- </summary>
- <param name="operationType">Specifies the operation to perform on the
- attribute. Valid Values: add | remove</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.IsSetOperationType">
- <summary>
- Checks if OperationType property is set
- </summary>
- <returns>true if OperationType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.WithUserId(System.String[])">
- <summary>
- Sets the UserId property
- </summary>
- <param name="list">AWS Access Key ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.IsSetUserId">
- <summary>
- Checks if UserId property is set
- </summary>
- <returns>true if UserId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.WithUserGroup(System.String[])">
- <summary>
- Sets the UserGroup property
- </summary>
- <param name="list">Name of the group. Currently supports "all."</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.IsSetUserGroup">
- <summary>
- Checks if UserGroup property is set
- </summary>
- <returns>true if UserGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.WithProductCode(System.String[])">
- <summary>
- Sets the ProductCode property
- </summary>
- <param name="list">Product code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.IsSetProductCode">
- <summary>
- Checks if ProductCode property is set
- </summary>
- <returns>true if ProductCode property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Description property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ModifyImageAttributeRequest.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeRequest.ImageId">
- <summary>
- Gets and sets the ImageId property.
- The AMI ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Specifies the attribute to modify. Valid
- Values: launchPermission |
- productCodes
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeRequest.OperationType">
- <summary>
- Gets and sets the OperationType property.
- Specifies the operation to perform on the
- attribute. Valid Values: add | remove
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeRequest.UserId">
- <summary>
- Gets and sets the UserId property.
- AWS Access Key ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeRequest.UserGroup">
- <summary>
- Gets and sets the UserGroup property.
- Name of the group. Currently supports "all."
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeRequest.ProductCode">
- <summary>
- Gets and sets the ProductCode property.
- Product code.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ModifyImageAttributeRequest.Description">
- <summary>
- Gets and sets the Description property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceMonitoring">
- <summary>
- Instance Monitoring
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceMonitoring.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">Instance ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceMonitoring.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceMonitoring.WithMonitoring(Amazon.EC2.Model.Monitoring)">
- <summary>
- Sets the Monitoring property
- </summary>
- <param name="monitoring">State of monitoring for the instance. Valid
- Values:
- monitoring-enabled (enabled)
- | monitoring-pending
- (pending) | monitoring-disabled (disabled)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceMonitoring.IsSetMonitoring">
- <summary>
- Checks if Monitoring property is set
- </summary>
- <returns>true if Monitoring property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceMonitoring.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceMonitoring.Monitoring">
- <summary>
- Gets and sets the Monitoring property.
- State of monitoring for the instance. Valid
- Values:
- monitoring-enabled (enabled)
- | monitoring-pending
- (pending) | monitoring-disabled (disabled)
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImageAttribute">
- <summary>
- Image Attribute
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">The ID of the AMI.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.WithLaunchPermission(Amazon.EC2.Model.LaunchPermission[])">
- <summary>
- Sets the LaunchPermission property
- </summary>
- <param name="list">Launch permissions.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.IsSetLaunchPermission">
- <summary>
- Checks if LaunchPermission property is set
- </summary>
- <returns>true if LaunchPermission property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.WithProductCode(System.String[])">
- <summary>
- Sets the ProductCode property
- </summary>
- <param name="list">Product codes.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.IsSetProductCode">
- <summary>
- Checks if ProductCode property is set
- </summary>
- <returns>true if ProductCode property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">Kernel ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.IsSetKernelId">
- <summary>
- Checks if KernelId property is set
- </summary>
- <returns>true if KernelId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">RAM disk ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.IsSetRamdiskId">
- <summary>
- Checks if RamdiskId property is set
- </summary>
- <returns>true if RamdiskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Description property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.WithBlockDeviceMapping(Amazon.EC2.Model.BlockDeviceMapping)">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="blockDeviceMapping">Block device mapping.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImageAttribute.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImageAttribute.ImageId">
- <summary>
- Gets and sets the ImageId property.
- The ID of the AMI.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImageAttribute.LaunchPermission">
- <summary>
- Gets and sets the LaunchPermission property.
- Launch permissions.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImageAttribute.ProductCode">
- <summary>
- Gets and sets the ProductCode property.
- Product codes.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImageAttribute.KernelId">
- <summary>
- Gets and sets the KernelId property.
- Kernel ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImageAttribute.RamdiskId">
- <summary>
- Gets and sets the RamdiskId property.
- RAM disk ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImageAttribute.Description">
- <summary>
- Gets and sets the Description property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImageAttribute.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- Block device mapping.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpcsRequest">
- <summary>
- Gives you information about your VPCs. You can filter the results to
- return information only about VPCs that match criteria you specify.
-
- For example, you could ask to get information about a particular VPC
- or VPCs (or all your VPCs) only if the VPC's state is available.
-
- You can specify multiple filters (e.g., the VPC uses one of several
- sets of DHCP options, and the VPC's state is available).
-
- The result includes information for a particular VPC only if the VPC matches all your filters.
-
- If there's no match, no special message is returned; the response is simply empty.
-
- The information returned consists of:
- a) The VPC ID.
- b) The CIDR block
- you've assigned to the VPC.
- c) The ID of the DHCP options you've associated with the VPC
- (or "default" if the default options are associated with the VPC)
-
- The current state of the VPC (pending or available)
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsRequest.WithVpcId(System.String[])">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="list">The ID of a VPC you want information about.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">The available filters are:
- 1. state - The state of the VPC. Valid Values: pending,
- available.
- 2. cidrBlock - The CIDR block of the VPC. The CIDR block you
- specify must exactly match the VPC's CIDR block for information to be
- returned for the VPC.
- Constraints: Must contain the slash followed by one or two
- digits (e.g., /28).
- 3. dhcpOptionsId - The IP of a set of DHCP options.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpcsRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of a VPC you want information about.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpcsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- The available filters are:
- 1. state - The state of the VPC. Valid Values: pending,
- available.
- 2. cidrBlock - The CIDR block of the VPC. The CIDR block you
- specify must exactly match the VPC's CIDR block for information to be
- returned for the VPC.
- Constraints: Must contain the slash followed by one or two
- digits (e.g., /28).
- 3. dhcpOptionsId - The IP of a set of DHCP options.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeTagsRequest">
- <summary>
- Describes Tags for the specified resources.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeTagsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeTagsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties associated with the specified
- Tags.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSubnetsResult">
- <summary>
- Describe Subnets Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsResult.IsSetSubnet">
- <summary>
- Checks if Subnet property is set
- </summary>
- <returns>true if Subnet property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSubnetsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSubnetsResult.Subnet">
- <summary>
- Gets and sets the Subnet property.
- List of subnets
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResponse">
- <summary>
- The Response for the
- DescribeSpotDatafeedSubscription operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResponse.IsSetDescribeSpotDatafeedSubscriptionResult">
- <summary>
- Checks if DescribeSpotDatafeedSubscriptionResult property is set
- </summary>
- <returns>true if DescribeSpotDatafeedSubscriptionResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSpotDatafeedSubscriptionResponse.DescribeSpotDatafeedSubscriptionResult">
- <summary>
- Gets and sets the DescribeSpotDatafeedSubscriptionResult property.
- Describe Spot Datafeed Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInstanceAttributeResponse">
- <summary>
- Information returned by a
- DescribeInstanceAttribute request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeResponse.IsSetDescribeInstanceAttributeResult">
- <summary>
- Checks if DescribeInstanceAttributeResult property is set
- </summary>
- <returns>true if DescribeInstanceAttributeResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstanceAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstanceAttributeResponse.DescribeInstanceAttributeResult">
- <summary>
- Gets and sets the DescribeInstanceAttributeResult property.
- Information about the instance attribute.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInstanceAttributeRequest">
- <summary>
- Returns information about an attribute of an
- instance. Only one attribute
- can be specified per call.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">Instance IDs to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Specifies the attribute to return. Values are
- "instanceType", "kernel", "ramdisk", "userData",
- "disableApiTermination", "instanceInitiatedShutdownBehavior",
- "sourceDestCheck", "groupSet",
- "rootDeviceName", and "blockDeviceMapping"</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstanceAttributeRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance IDs to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstanceAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Specifies the attribute to return. Values are
- "instanceType", "kernel", "ramdisk", "userData",
- "disableApiTermination", "instanceInitiatedShutdownBehavior",
- "sourceDestCheck", "groupSet",
- "rootDeviceName", and "blockDeviceMapping"
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeImagesResponse">
- <summary>
- Describe Images Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesResponse.IsSetDescribeImagesResult">
- <summary>
- Checks if DescribeImagesResult property is set
- </summary>
- <returns>true if DescribeImagesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImagesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImagesResponse.DescribeImagesResult">
- <summary>
- Gets and sets the DescribeImagesResult property.
- Describe Images Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeAddressesResult">
- <summary>
- Describe Addresses Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesResult.IsSetAddress">
- <summary>
- Checks if Address property is set
- </summary>
- <returns>true if Address property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeAddressesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeAddressesResult.Address">
- <summary>
- Gets and sets the Address property.
- The list of IP addresses.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteRouteTableResponse">
- <summary>
- The Response for the
- DeleteRouteTableResponse operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteTableResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteTableResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteRouteTableResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteRouteTableResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSubnetResult">
- <summary>
- Create Subnet Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetResult.IsSetSubnet">
- <summary>
- Checks if Subnet property is set
- </summary>
- <returns>true if Subnet property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSubnetResult.Subnet">
- <summary>
- Gets and sets the Subnet property.
- Subnet
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AllocateAddressResult">
- <summary>
- Allocate Address Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResult.IsSetDomain">
- <summary>
- Checks if Domain property is set
- </summary>
- <returns>true if Domain property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResult.IsSetAllocationId">
- <summary>
- Checks if AllocationId property is set
- </summary>
- <returns>true if AllocationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResult.IsSetPublicIp">
- <summary>
- Checks if PublicIp property is set
- </summary>
- <returns>true if PublicIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AllocateAddressResult.Domain">
- <summary>
- Gets and sets the Domain property.
- Whether this elastic IP address is for instances in EC2 (i.e., standard)
- or instances in a VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AllocateAddressResult.AllocationId">
- <summary>
- Gets and sets the AllocationId property.
- ID that AWS assigns to represent the allocation of the address for
- use with Amazon VPC. Returned only for VPC elastic IP addresses.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AllocateAddressResult.PublicIp">
- <summary>
- Gets and sets the PublicIp property.
- IP address for use with your account.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Address">
- <summary>
- A static public IP address designed for dynamic
- cloud computing. Any elastic IP addresses that you associate with
- your account remains associated with your account until you
- explicitly release them. Unlike traditional static IP
- addresses, however, elastic IP addresses allow you to mask instance or
- Availability Zone failures by rapidly remapping your public IP
- addresses to any instance in your account. The Address type contains
- an Elastic IP associated with your account
- and the InstanceId of the instance it is associated with.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Address.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.WithPublicIp(System.String)">
- <summary>
- Sets the PublicIp property
- </summary>
- <param name="publicIp">The public IP address.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.IsSetPublicIp">
- <summary>
- Checks if PublicIp property is set
- </summary>
- <returns>true if PublicIp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.WithAllocationId(System.String)">
- <summary>
- Sets the AllocationId property
- </summary>
- <param name="allocationId">The ID representing the allocation of the address for use with Amazon
- VPC</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.IsSetAllocationId">
- <summary>
- Checks if AllocationId property is set
- </summary>
- <returns>true if AllocationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.WithAssociationId(System.String)">
- <summary>
- Sets the AssociationId property
- </summary>
- <param name="associationId">The ID representing the association of a VPC elastic IP address with
- an instance in a VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.IsSetAssociationId">
- <summary>
- Checks if AssociationId property is set
- </summary>
- <returns>true if AssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.WithDomain(System.String)">
- <summary>
- Sets the Domain property
- </summary>
- <param name="domain">Whether this elastic IP address is for instances in EC2 (i.e., standard)
- or Amazon VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Address.IsSetDomain">
- <summary>
- Checks if Domain property is set
- </summary>
- <returns>true if Domain property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Address.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Address.PublicIp">
- <summary>
- Gets and sets the PublicIp property.
- The public IP address.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Address.AllocationId">
- <summary>
- Gets and sets the AllocationId property.
- The ID representing the allocation of the address for use with Amazon
- VPC
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Address.AssociationId">
- <summary>
- Gets and sets the AssociationId property.
- The ID representing the association of a VPC elastic IP address with
- an instance in a VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Address.Domain">
- <summary>
- Gets and sets the Domain property.
- Whether this elastic IP address is for instances in EC2 (i.e., standard)
- or Amazon VPC.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DimensionUnmarshaller">
- <summary>
- Dimension Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DeleteAlarmsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteAlarms operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.ListMetricsRequest">
- <summary>
- Container for the parameters to the ListMetrics operation.
- <para> Returns a list of valid metrics stored for the AWS account
- owner. Returned metrics can be used with <c>GetMetricStatistics</c> to
- obtain statistical data for a given metric. </para> <para><b>NOTE:</b>
- Up to 500 results are returned for any one call. To retrieve further
- results, use returned NextToken values with subsequent ListMetrics
- operations. </para> <para><b>NOTE:</b> If you create a metric with the
- PutMetricData action, allow up to fifteen minutes for the metric to
- appear in calls to the ListMetrics action. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.ListMetrics(Amazon.CloudWatch.Model.ListMetricsRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsRequest.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsRequest.WithMetricName(System.String)">
- <summary>
- Sets the MetricName property
- </summary>
- <param name="metricName">The value to set for the MetricName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsRequest.WithDimensions(Amazon.CloudWatch.Model.DimensionFilter[])">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsRequest.WithDimensions(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.DimensionFilter})">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.ListMetricsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.ListMetricsRequest.Namespace">
- <summary>
- The namespace to filter against.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[^:].*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.ListMetricsRequest.MetricName">
- <summary>
- The name of the metric to filter against.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.ListMetricsRequest.Dimensions">
- <summary>
- A list of dimensions to filter against.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.ListMetricsRequest.NextToken">
- <summary>
- The token returned by a previous call to indicate that there is more data available.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmsForMetricResponse">
- <summary>
- Returns information about the DescribeAlarmsForMetricResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricResponse.DescribeAlarmsForMetricResult">
- <summary>
- Gets and sets the DescribeAlarmsForMetricResult property.
- The output for the DescribeAlarmsForMetric action.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.ListDistributionsResponse">
- <summary>
- The ListDistributionsResponse contains the ListDistributionsResult and
- any headers or metadata returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListDistributionsResponse.Distribution">
- <summary>
- Gets the Distribution property as a List
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListDistributionsResponse.Marker">
- <summary>
- Gets and sets the Marker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListDistributionsResponse.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListDistributionsResponse.NextMarker">
- <summary>
- Gets and sets the NextMarker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListDistributionsResponse.IsTruncated">
- <summary>
- Gets and sets the IsTruncated property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetInvalidationListResponse">
- <summary>
- The GetInvalidationListResponse contains the list of invalidations done on a particular distribution
- and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListResponse.Marker">
- <summary>
- Gets and Sets the Marker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListResponse.NextMarker">
- <summary>
- Gets and Sets the NextMarker property. If IsTruncated is true, this element is present and
- contains the value you can use for the Marker
- request parameter to continue listing your
- invalidations where they left off.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListResponse.MaxItems">
- <summary>
- Gets and Sets the MaxItems property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListResponse.IsTruncated">
- <summary>
- Gets and Sets the IsTruncated property which indicated whether all the data was returned from Cloudfront.
- If the value is true the NextMarker property can be used on another request to get the next page of data.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetInvalidationListResponse.Summaries">
- <summary>
- Gets and Sets the Summaries property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ListStacksResultUnmarshaller">
- <summary>
- ListStacksResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ListStacksRequestMarshaller">
- <summary>
- List Stacks Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStacksResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeStacks operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.GetTemplateRequest">
- <summary>
- Container for the parameters to the GetTemplate operation.
- <para>Returns the template body for a specified stack name. You can get the template for running or deleted stacks.</para> <para>For deleted
- stacks, GetTemplate returns the template for up to 90 days after the stack has been deleted. </para> <para><b>NOTE:</b> If the template does
- not exist, a ValidationError is returned. </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.GetTemplate(Amazon.CloudFormation.Model.GetTemplateRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.GetTemplateRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.GetTemplateRequest.StackName">
- <summary>
- The name or the unique identifier associated with the stack.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.ExecutePolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ExecutePolicy operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeMetricCollectionTypesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeMetricCollectionTypes operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingInstancesRequestMarshaller">
- <summary>
- Describe Auto Scaling Instances Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteNotificationConfigurationRequestMarshaller">
- <summary>
- Delete Notification Configuration Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.SetDesiredCapacityRequest">
- <summary>
- Container for the parameters to the SetDesiredCapacity operation.
- <para> Adjusts the desired size of the AutoScalingGroup by initiating scaling activities. When reducing the size of the group, it is not
- possible to define which EC2 instances will be terminated. This applies to any auto-scaling decisions that might result in terminating
- instances. </para> <para> There are two common use cases for <c>SetDesiredCapacity</c> :
- one for users of the Auto Scaling triggering system, and another for developers who write their own triggering systems. Both use
- cases relate to the concept of cooldown. </para> <para> In the first case, if you use the Auto Scaling triggering system,
- <c>SetDesiredCapacity</c> changes the size of your Auto Scaling group without regard to the cooldown period. This could be useful, for
- example, if Auto Scaling did something unexpected for some reason. If your cooldown period is 10 minutes, Auto Scaling would normally reject
- requests to change the size of the group for that entire 10 minute period. The <c>SetDesiredCapacity</c> command allows you to circumvent
- this restriction and change the size of the group before the end of the cooldown period. </para> <para> In the second case, if you write
- your own triggering system, you can use <c>SetDesiredCapacity</c> to control the size of your Auto Scaling group. If you want the same
- cooldown functionality that Auto Scaling offers, you can configure <c>SetDesiredCapacity</c> to honor cooldown by setting the
- <c>HonorCooldown</c> parameter to <c>true</c> .
- </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.SetDesiredCapacity(Amazon.AutoScaling.Model.SetDesiredCapacityRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SetDesiredCapacityRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SetDesiredCapacityRequest.WithDesiredCapacity(System.Int32)">
- <summary>
- Sets the DesiredCapacity property
- </summary>
- <param name="desiredCapacity">The value to set for the DesiredCapacity property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SetDesiredCapacityRequest.WithHonorCooldown(System.Boolean)">
- <summary>
- Sets the HonorCooldown property
- </summary>
- <param name="honorCooldown">The value to set for the HonorCooldown property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SetDesiredCapacityRequest.AutoScalingGroupName">
- <summary>
- The name of the AutoScalingGroup.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SetDesiredCapacityRequest.DesiredCapacity">
- <summary>
- The new capacity setting for the AutoScalingGroup.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SetDesiredCapacityRequest.HonorCooldown">
- <summary>
- By default, <c>SetDesiredCapacity</c> overrides any cooldown period. Set to True if you want Auto Scaling to reject this request if the Auto
- Scaling group is in cooldown.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.EnableMetricsCollectionResponse">
- <summary>
- Returns information about the EnableMetricsCollection response metadata.
- The EnableMetricsCollection operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeScalingActivitiesResult">
- <summary>
- <para> The output for the DescribeScalingActivities action. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesResult.WithActivities(Amazon.AutoScaling.Model.Activity[])">
- <summary>
- Adds elements to the Activities collection
- </summary>
- <param name="activities">The values to add to the Activities collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesResult.WithActivities(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.Activity})">
- <summary>
- Adds elements to the Activities collection
- </summary>
- <param name="activities">The values to add to the Activities collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeScalingActivitiesResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingActivitiesResult.Activities">
- <summary>
- A list of the requested scaling activities.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeScalingActivitiesResult.NextToken">
- <summary>
- Acts as a paging mechanism for large result sets. Set to a non-empty string if there are additional results waiting to be returned. Pass
- this in to subsequent calls to return additional results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResponse">
- <summary>
- Returns information about the DescribeLaunchConfigurationsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsResponse.DescribeLaunchConfigurationsResult">
- <summary>
- Gets and sets the DescribeLaunchConfigurationsResult property.
- The LaunchConfigurationsType data type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesResponse">
- <summary>
- Returns information about the DescribeAutoScalingNotificationTypesResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeAutoScalingNotificationTypesResponse.DescribeAutoScalingNotificationTypesResult">
- <summary>
- Gets and sets the DescribeAutoScalingNotificationTypesResult property.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteLaunchConfigurationRequest">
- <summary>
- Container for the parameters to the DeleteLaunchConfiguration operation.
- <para> Deletes the specified LaunchConfiguration. </para> <para> The specified launch configuration must not be attached to an Auto Scaling
- group. Once this call completes, the launch configuration is no longer available for use. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteLaunchConfiguration(Amazon.AutoScaling.Model.DeleteLaunchConfigurationRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeleteLaunchConfigurationRequest.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DeleteLaunchConfigurationRequest.LaunchConfigurationName">
- <summary>
- The name of the launch configuration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest">
- <summary>
- Container for the parameters to the CreateAutoScalingGroup operation.
- <para> Creates a new Auto Scaling group with the specified name. Once the creation request is completed, the AutoScalingGroup is ready to be
- used in other calls. </para> <para><b>NOTE:</b> The Auto Scaling group name must be unique within the scope of your AWS account, and under
- the quota of Auto Scaling groups allowed for your account. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.CreateAutoScalingGroup(Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithMinSize(System.Int32)">
- <summary>
- Sets the MinSize property
- </summary>
- <param name="minSize">The value to set for the MinSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithMaxSize(System.Int32)">
- <summary>
- Sets the MaxSize property
- </summary>
- <param name="maxSize">The value to set for the MaxSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithDesiredCapacity(System.Int32)">
- <summary>
- Sets the DesiredCapacity property
- </summary>
- <param name="desiredCapacity">The value to set for the DesiredCapacity property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithDefaultCooldown(System.Int32)">
- <summary>
- Sets the DefaultCooldown property
- </summary>
- <param name="defaultCooldown">The value to set for the DefaultCooldown property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithLoadBalancerNames(System.String[])">
- <summary>
- Adds elements to the LoadBalancerNames collection
- </summary>
- <param name="loadBalancerNames">The values to add to the LoadBalancerNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithLoadBalancerNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the LoadBalancerNames collection
- </summary>
- <param name="loadBalancerNames">The values to add to the LoadBalancerNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithHealthCheckType(System.String)">
- <summary>
- Sets the HealthCheckType property
- </summary>
- <param name="healthCheckType">The value to set for the HealthCheckType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithHealthCheckGracePeriod(System.Int32)">
- <summary>
- Sets the HealthCheckGracePeriod property
- </summary>
- <param name="healthCheckGracePeriod">The value to set for the HealthCheckGracePeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithPlacementGroup(System.String)">
- <summary>
- Sets the PlacementGroup property
- </summary>
- <param name="placementGroup">The value to set for the PlacementGroup property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.WithVPCZoneIdentifier(System.String)">
- <summary>
- Sets the VPCZoneIdentifier property
- </summary>
- <param name="vPCZoneIdentifier">The value to set for the VPCZoneIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.LaunchConfigurationName">
- <summary>
- The name of the launch configuration to use with the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.MinSize">
- <summary>
- The minimum size of the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.MaxSize">
- <summary>
- The maximum size of the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.DesiredCapacity">
- <summary>
- The number of EC2 instances that should be running in the group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.DefaultCooldown">
- <summary>
- The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.AvailabilityZones">
- <summary>
- A list of availability zones for the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.LoadBalancerNames">
- <summary>
- A list of LoadBalancers to use.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.HealthCheckType">
- <summary>
- The service you want the health status from, Amazon EC2 or Elastic Load Balancer. Valid values are "EC2" or "ELB."
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.HealthCheckGracePeriod">
- <summary>
- Length of time in seconds after a new EC2 instance comes into service that Auto Scaling starts checking its health.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.PlacementGroup">
- <summary>
- Physical location of your cluster placement group created in Amazon EC2.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.CreateAutoScalingGroupRequest.VPCZoneIdentifier">
- <summary>
- The subnet identifier of the Virtual Private Cloud.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.AmazonAutoScalingConfig">
- <summary>
- Configuration for accessing Auto Scaling service
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.AmazonAutoScalingConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.AmazonAutoScalingConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers">
- <summary>
- The available AWS access control policy actions for Amazon S3.
- </summary>
- <see cref="P:Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.AllS3Actions">
- <summary>
- Represents any action being taken on Amazon S3.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetObject">
- <summary>
- Action for retrieving an object (GET), object metadata (HEAD) or an object torrent.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetObjectRequest"/>
- <see cref="T:Amazon.S3.Model.GetObjectMetadataRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetObjectVersion">
- <summary>
- Action for retrieving a object version (GET), object metadata for an
- object version (HEAD) or a torrent for an object version.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetObjectRequest"/>
- <see cref="T:Amazon.S3.Model.GetObjectMetadataRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.PutObject">
- <summary>
- Action for uploading an object (PUT or POST).
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.PutObjectRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetObjectAcl">
- <summary>
- Action for retrieving an object's ACL.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetACLRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetObjectVersionAcl">
- <summary>
- Action for retrieving an object version's ACL.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetACLRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.SetObjectAcl">
- <summary>
- Action for setting an object's ACL.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.S3AccessControlList"/>
- <see cref="T:Amazon.S3.Model.S3CannedACL"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.SetObjectVersionAcl">
- <summary>
- Action for setting an object version's ACL.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.S3AccessControlList"/>
- <see cref="T:Amazon.S3.Model.S3CannedACL"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.DeleteObject">
- <summary>
- Action for deleting an object.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.DeleteObjectRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.DeleteObjectVersion">
- <summary>
- Action for deleting an object version.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.DeleteObjectRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.CreateBucket">
- <summary>
- Action for creating a new Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.PutBucketRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.DeleteBucket">
- <summary>
- Action for deleting an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3ObjectResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.DeleteBucketRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.ListObjects">
- <summary>
- Action for listing the objects in an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.ListObjectsRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.ListObjectVersions">
- <summary>
- Action for listing the object versions in an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.ListVersionsRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.ListBuckets">
- <summary>
- Action for listing the Amazon S3 buckets in an account.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.ListBucketsRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetBucketAcl">
- <summary>
- Action for retrieving the ACL of an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetACLRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.SetBucketAcl">
- <summary>
- Action for setting the ACL of an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.S3AccessControlList"/>
- <see cref="T:Amazon.S3.Model.S3CannedACL"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetBucketVersioningConfiguration">
- <summary>
- Action for retrieving the versioning configuration of an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.S3BucketVersioningConfig"/>
- <see cref="T:Amazon.S3.Model.GetBucketVersioningRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.SetBucketVersioningConfiguration">
- <summary>
- Action for setting the versioning configuration of an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.S3BucketVersioningConfig"/>
- <see cref="T:Amazon.S3.Model.SetBucketVersioningRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetBucketRequesterPays">
- <summary>
- Action for retrieving the requester pays status of an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.SetBucketRequesterPays">
- <summary>
- Action for setting the requester pays status of an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetBucketLocation">
- <summary>
- Action for retrieving the bucket location of an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetBucketLocationRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetBucketPolicy">
- <summary>
- Action for retrieving the access control policy for an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetBucketPolicyRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.PutBucketPolicy">
- <summary>
- Action for setting the access control policy for an Amazon S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.PutBucketPolicyRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.GetBucketNotificationConfiguration">
- <summary>
- Action for retrieving the bucket notification configuration for an Amazon
- S3 bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.GetNotificationConfigurationRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.S3ActionIdentifiers.SetBucketNotificationConfiguration">
- <summary>
- Action for setting the bucket notification configuration for an Amazon S3
- bucket.
- <para>
- Valid for use with <see cref="M:Amazon.Auth.AccessControlPolicy.NewS3BucketResource"/> resources.
- </para>
- </summary>
- <see cref="T:Amazon.S3.Model.SetNotificationConfigurationRequest"/>
- </member>
- <member name="T:Amazon.SQS.Model.SendMessageResponse">
- <summary>
- Returns information about the message, including an MD5 of the message body, message ID, and request metadata.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResponse.IsSetSendMessageResult">
- <summary>
- Checks if SendMessageResult property is set
- </summary>
- <returns>true if SendMessageResult property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.SendMessageResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.SendMessageResponse.SendMessageResult">
- <summary>
- Gets and sets the SendMessageResult property.
- Information about the message sent to Amazon SQS.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.SendMessageResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.GetQueueAttributesRequest">
- <summary>
- Gets one or all attributes of a queue.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesRequest.WithAttributeName(System.String[])">
- <summary>
- Sets the AttributeName property
- </summary>
- <param name="list">The attribute you want to get. Values can be:
- All | ApproximateNumberOfMessages | ApproximateNumberOfMessagesNotVisible | VisibilityTimeout | CreatedTimestamp | LastModifiedTimestamp | Policy</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.GetQueueAttributesRequest.IsSetAttributeName">
- <summary>
- Checks if AttributeName property is set
- </summary>
- <returns>true if AttributeName property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.GetQueueAttributesRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.GetQueueAttributesRequest.AttributeName">
- <summary>
- Gets and sets the AttributeName property.
- The attribute you want to get. Values can be:
- All | ApproximateNumberOfMessages | ApproximateNumberOfMessagesNotVisible | VisibilityTimeout | CreatedTimestamp | LastModifiedTimestamp | Policy
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.DeleteQueueResponse">
- <summary>
- Returns metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteQueueResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteQueueResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.DeleteQueueResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.DeleteQueueResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.CreateQueueRequest">
- <summary>
- The CreateQueue action creates a new queue, or returns the URL of an existing one.
- When you request CreateQueue, you provide a name for the queue. To successfully
- create a new queue, you must provide a name that is unique within the scope of
- your own queues. If you provide the name of an existing queue, a new queue isn't
- created and an error isn't returned. Instead, the request succeeds and the queue
- URL for the existing queue is returned. Exception: if you provide a value for
- DefaultVisibilityTimeout that is different from the value for the existing queue,
- you receive an error.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueRequest.WithQueueName(System.String)">
- <summary>
- Sets the QueueName property
- </summary>
- <param name="queueName">The name to use for the queue created. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueRequest.IsSetQueueName">
- <summary>
- Checks if QueueName property is set
- </summary>
- <returns>true if QueueName property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueRequest.WithDefaultVisibilityTimeout(System.Decimal)">
- <summary>
- Sets the DefaultVisibilityTimeout property
- </summary>
- <param name="defaultVisibilityTimeout">The visibility timeout (in seconds) to use for this queue. Values can be 0 to 43200 (maximum 12 hours). Default is 30 seconds.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueRequest.IsSetDefaultVisibilityTimeout">
- <summary>
- Checks if DefaultVisibilityTimeout property is set
- </summary>
- <returns>true if DefaultVisibilityTimeout property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueRequest.WithAttribute(Amazon.SQS.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Name and value pair of an attribute associated with the queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.CreateQueueRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.CreateQueueRequest.QueueName">
- <summary>
- Gets and sets the QueueName property.
- The name to use for the queue created. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.CreateQueueRequest.DefaultVisibilityTimeout">
- <summary>
- Gets and sets the DefaultVisibilityTimeout property.
- The visibility timeout (in seconds) to use for this queue. Values can be 0 to 43200 (maximum 12 hours). Default is 30 seconds.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.CreateQueueRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.ChangeMessageVisibilityRequest">
- <summary>
- The ChangeMessageVisibility action extends the read lock timeout of the specified message
- from the specified queue to the specified value.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.WithQueueUrl(System.String)">
- <summary>
- Sets the QueueUrl property
- </summary>
- <param name="queueUrl">The URL associated with the Amazon SQS queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.IsSetQueueUrl">
- <summary>
- Checks if QueueUrl property is set
- </summary>
- <returns>true if QueueUrl property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.WithReceiptHandle(System.String)">
- <summary>
- Sets the ReceiptHandle property
- </summary>
- <param name="receiptHandle">The receipt handle associated with the message whose visibility timeout you want to change.
- This parameter is returned by the ReceiveMessage action.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.IsSetReceiptHandle">
- <summary>
- Checks if ReceiptHandle property is set
- </summary>
- <returns>true if ReceiptHandle property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.WithVisibilityTimeout(System.Decimal)">
- <summary>
- Sets the VisibilityTimeout property
- </summary>
- <param name="visibilityTimeout">The new value for the message's visibility timeout (in seconds).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.IsSetVisibilityTimeout">
- <summary>
- Checks if VisibilityTimeout property is set
- </summary>
- <returns>true if VisibilityTimeout property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.WithAttribute(Amazon.SQS.Model.Attribute[])">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="list">Name and value pair of an attribute associated with the queue.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SQS.Model.ChangeMessageVisibilityRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.SQS.Model.ChangeMessageVisibilityRequest.QueueUrl">
- <summary>
- Gets and sets the QueueUrl property.
- The URL associated with the Amazon SQS queue.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ChangeMessageVisibilityRequest.ReceiptHandle">
- <summary>
- Gets and sets the ReceiptHandle property.
- The receipt handle associated with the message whose visibility timeout you want to change.
- This parameter is returned by the ReceiveMessage action.
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ChangeMessageVisibilityRequest.VisibilityTimeout">
- <summary>
- Gets and sets the VisibilityTimeout property.
- The new value for the message's visibility timeout (in seconds).
- </summary>
- </member>
- <member name="P:Amazon.SQS.Model.ChangeMessageVisibilityRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Name and value pair of an attribute associated with the queue.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.PublishRequest">
- <summary>
- The Publish action sends a message to all of a topic's subscribed endpoints. When a
- messageId is returned, the message has been saved and Amazon SNS will attempt to deliver it
- to the topic's subscribers shortly. The format of the outgoing message to each
- subscribed endpoint depends on the notification protocol selected.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishRequest.WithTopicArn(System.String)">
- <summary>
- Sets the TopicArn property
- </summary>
- <param name="topicArn">The topic you want to publish to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishRequest.IsSetTopicArn">
- <summary>
- Checks if TopicArn property is set
- </summary>
- <returns>true if TopicArn property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishRequest.WithMessage(System.String)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The message you want to send to the topic.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishRequest.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishRequest.WithSubject(System.String)">
- <summary>
- Sets the Subject property
- </summary>
- <param name="subject">Optional parameter to be used as the "Subject" line of when the message is
- delivered to e-mail endpoints. This field will also be included, if present,
- in the standard JSON messages delivered to other endpoints.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.PublishRequest.IsSetSubject">
- <summary>
- Checks if Subject property is set
- </summary>
- <returns>true if Subject property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.PublishRequest.TopicArn">
- <summary>
- Gets and sets the TopicArn property.
- The topic you want to publish to.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.PublishRequest.Message">
- <summary>
- Gets and sets the Message property.
- The message you want to send to the topic.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.PublishRequest.Subject">
- <summary>
- Gets and sets the Subject property.
- Optional parameter to be used as the "Subject" line of when the message is
- delivered to e-mail endpoints. This field will also be included, if present,
- in the standard JSON messages delivered to other endpoints.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListTopicsRequest">
- <summary>
- The ListTopics action returns a list of the requester's topics. Each call returns a limited list of topics. If
- there are more topics, a NextToken is also returned. Use the NextToken parameter in a new ListTopics call to get
- further results.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">Token returned by the previous ListTopics request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListTopicsRequest.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListTopicsRequest.NextToken">
- <summary>
- Gets and sets the NextToken property.
- Token returned by the previous ListTopics request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListSubscriptionsResponse">
- <summary>
- Encapsulates the metadata and result of the ListSubscriptions action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResponse.IsSetListSubscriptionsResult">
- <summary>
- Checks if ListSubscriptionsResult property is set
- </summary>
- <returns>true if ListSubscriptionsResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsResponse.ListSubscriptionsResult">
- <summary>
- Gets and sets the ListSubscriptionsResult property.
- Encapsulates the result of the ListSubscriptions action.
- </summary>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.ListSubscriptionsRequest">
- <summary>
- The ListSubscriptions action returns a list of the requester's subscriptions. Each call returns a limited list
- of subscriptions. If there are more subscriptions, a NextToken is also returned. Use the NextToken parameter in a
- new ListSubscriptions call to get further results.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">Token returned by the previous ListSubscriptions request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.ListSubscriptionsRequest.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.ListSubscriptionsRequest.NextToken">
- <summary>
- Gets and sets the NextToken property.
- Token returned by the previous ListSubscriptions request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient">
- <summary>
- AmazonSimpleNotificationServiceClient is an implementation of AmazonSimpleNotificationService;
- the client allows you to manage your AmazonSimpleNotificationService resources.<br />
- If you want to use the AmazonSimpleNotificationServiceClient from a Medium Trust
- hosting environment, please create the client with an
- AmazonSimpleNotificationServiceConfig object whose UseSecureStringForAwsSecretKey
- property is false.
- </summary>
- <remarks>
- Amazon Simple Notification Service
- </remarks>
- <seealso cref="P:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig.UseSecureStringForAwsSecretKey"/>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.Dispose(System.Boolean)">
- <summary>
- Implements the Dispose pattern for the AmazonSimpleNotificationServiceClient
- </summary>
- <param name="fDisposing">Whether this object is being disposed via a call to Dispose
- or garbage collected.</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.Dispose">
- <summary>
- Disposes of all managed and unmanaged resources.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.Finalize">
- <summary>
- The destructor for the client class.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.#ctor(System.String,System.String)">
- <summary>
- Constructs AmazonSimpleNotificationServiceClient with AWS Access Key ID and AWS Secret Key
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.#ctor(System.String,System.String,Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig)">
- <summary>
- Constructs AmazonSimpleNotificationServiceClient with AWS Access Key ID, AWS Secret Key and an
- AmazonSimpleNotificationService Configuration object. If the config object's
- UseSecureStringForAwsSecretKey is false, the AWS Secret Key
- is stored as a clear-text string. Please use this option only
- if the application environment doesn't allow the use of SecureStrings.
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key</param>
- <param name="config">The AmazonSimpleNotificationService Configuration Object</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.#ctor(System.String,System.Security.SecureString,Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig)">
- <summary>
- Constructs an AmazonSimpleNotificationServiceClient with AWS Access Key ID, AWS Secret Key and an
- AmazonSimpleNotificationService Configuration object
- </summary>
- <param name="awsAccessKeyId">AWS Access Key ID</param>
- <param name="awsSecretAccessKey">AWS Secret Access Key as a SecureString</param>
- <param name="config">The AmazonSimpleNotificationService Configuration Object</param>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConfirmSubscription(Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest)">
- <summary>
- Confirm Subscription
- </summary>
- <param name="request">Confirm Subscription request</param>
- <returns>Confirm Subscription Response from the service</returns>
- <remarks>
- The ConfirmSubscription action verifies an endpoint owner's intent to receive messages by validating
- the token sent to the endpoint by an earlier Subscribe action. If the
- token is valid, the action creates a new subscription and returns its
- Amazon Resource Name (ARN). This call requires an AWS signature only when the AuthenticateOnUnsubscribe flag is set to "true".
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.GetTopicAttributes(Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest)">
- <summary>
- Get Topic Attributes
- </summary>
- <param name="request">Get Topic Attributes request</param>
- <returns>Get Topic Attributes Response from the service</returns>
- <remarks>
- The GetTopicAttribtues action returns all of the properties of a topic customers have created. Topic
- properties returned might differ based on the authorization of the user.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.Subscribe(Amazon.SimpleNotificationService.Model.SubscribeRequest)">
- <summary>
- Subscribe
- </summary>
- <param name="request">Subscribe request</param>
- <returns>Subscribe Response from the service</returns>
- <remarks>
- The Subscribe action prepares to subscribe an endpoint by sending the endpoint a confirmation message. To actually create a
- subscription, the endpoint owner must call the ConfirmSubscription
- action with the token from the confirmation message. Confirmation tokens are
- valid for twenty-four hours.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.SetTopicAttributes(Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest)">
- <summary>
- Set Topic Attributes
- </summary>
- <param name="request">Set Topic Attributes request</param>
- <returns>Set Topic Attributes Response from the service</returns>
- <remarks>
- The SetTopicAttributes action allows a topic owner to set an attribute of the topic to a new value.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.DeleteTopic(Amazon.SimpleNotificationService.Model.DeleteTopicRequest)">
- <summary>
- Delete Topic
- </summary>
- <param name="request">Delete Topic request</param>
- <returns>Delete Topic Response from the service</returns>
- <remarks>
- The DeleteTopic action deletes a topic and all its subscriptions. Deleting a topic might
- prevent some messages previously sent to the topic from being delivered to
- subscribers. This action is idempotent, so deleting a topic that does not
- exist will not result in an error.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.RemovePermission(Amazon.SimpleNotificationService.Model.RemovePermissionRequest)">
- <summary>
- Remove Permission
- </summary>
- <param name="request">Remove Permission request</param>
- <returns>Remove Permission Response from the service</returns>
- <remarks>
- The RemovePermission action removes a statement from a topic's access control policy.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ListSubscriptions(Amazon.SimpleNotificationService.Model.ListSubscriptionsRequest)">
- <summary>
- List Subscriptions
- </summary>
- <param name="request">List Subscriptions request</param>
- <returns>List Subscriptions Response from the service</returns>
- <remarks>
- The ListSubscriptions action returns a list of the requester's subscriptions. Each call returns a limited list
- of subscriptions. If there are more subscriptions, a NextToken is also returned. Use the NextToken parameter in a
- new ListSubscriptions call to get further results.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.AddPermission(Amazon.SimpleNotificationService.Model.AddPermissionRequest)">
- <summary>
- Add Permission
- </summary>
- <param name="request">Add Permission request</param>
- <returns>Add Permission Response from the service</returns>
- <remarks>
- The AddPermission action adds a statement to a topic's access control policy, granting access for the specified AWS accounts to the specified actions.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.CreateTopic(Amazon.SimpleNotificationService.Model.CreateTopicRequest)">
- <summary>
- Create Topic
- </summary>
- <param name="request">Create Topic request</param>
- <returns>Create Topic Response from the service</returns>
- <remarks>
- The CreateTopic action creates a topic to which notifications can be published. Users can create
- at most 25 topics. This action is idempotent, so if the requester
- already owns a topic with the specified name, that topic's ARN will be
- returned without creating a new topic.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ListTopics(Amazon.SimpleNotificationService.Model.ListTopicsRequest)">
- <summary>
- List Topics
- </summary>
- <param name="request">List Topics request</param>
- <returns>List Topics Response from the service</returns>
- <remarks>
- The ListTopics action returns a list of the requester's topics. Each call returns a limited list of topics. If
- there are more topics, a NextToken is also returned. Use the NextToken parameter in a new ListTopics call to get
- further results.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.Unsubscribe(Amazon.SimpleNotificationService.Model.UnsubscribeRequest)">
- <summary>
- Unsubscribe
- </summary>
- <param name="request">Unsubscribe request</param>
- <returns>Unsubscribe Response from the service</returns>
- <remarks>
- The Unsubscribe action deletes a subscription. If the subscription requires authentication for
- deletion, only the owner of the subscription or the its topic's owner
- can unsubscribe, and an AWS signature is required. If the
- Unsubscribe call does not require authentication and the requester is not
- the subscription owner, a final cancellation message is delivered to the
- endpoint, so that the endpoint owner can easily resubscribe to the topic if
- the Unsubscribe request was unintended.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ListSubscriptionsByTopic(Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest)">
- <summary>
- List Subscriptions By Topic
- </summary>
- <param name="request">List Subscriptions By Topic request</param>
- <returns>List Subscriptions By Topic Response from the service</returns>
- <remarks>
- The ListSubscriptionsByTopic action returns a list of the subscriptions to a specific topic. Each call returns
- a limited list of subscriptions. If there are more subscriptions, a NextToken is also returned. Use the NextToken
- parameter in a new ListSubscriptionsByTopic call to get further results.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.Publish(Amazon.SimpleNotificationService.Model.PublishRequest)">
- <summary>
- Publish
- </summary>
- <param name="request">Publish request</param>
- <returns>Publish Response from the service</returns>
- <remarks>
- The Publish action sends a message to all of a topic's subscribed endpoints. When a
- messageId is returned, the message has been saved and Amazon SNS will attempt to deliver it
- to the topic's subscribers shortly. The format of the outgoing message to each
- subscribed endpoint depends on the notification protocol selected.
- </remarks>
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConfigureWebRequest(System.Int32,Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceConfig)">
- Configure HttpClient with set of defaults as well as configuration
- from AmazonSimpleNotificationServiceConfig instance
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.Invoke``1(System.Collections.Generic.IDictionary{System.String,System.String})">
- Invoke request and return response
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ReportAnyErrors(System.String,System.Net.HttpStatusCode)">
- Look for additional error strings in the response and return formatted exception
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.PauseOnRetry(System.Int32,System.Int32,System.Net.HttpStatusCode)">
- Exponential sleep on failed request
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.AddRequiredParameters(System.Collections.Generic.IDictionary{System.String,System.String})">
- Add authentication related and version parameters
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertConfirmSubscription(Amazon.SimpleNotificationService.Model.ConfirmSubscriptionRequest)">
- Convert ConfirmSubscriptionRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertGetTopicAttributes(Amazon.SimpleNotificationService.Model.GetTopicAttributesRequest)">
- Convert GetTopicAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertSubscribe(Amazon.SimpleNotificationService.Model.SubscribeRequest)">
- Convert SubscribeRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertSetTopicAttributes(Amazon.SimpleNotificationService.Model.SetTopicAttributesRequest)">
- Convert SetTopicAttributesRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertDeleteTopic(Amazon.SimpleNotificationService.Model.DeleteTopicRequest)">
- Convert DeleteTopicRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertRemovePermission(Amazon.SimpleNotificationService.Model.RemovePermissionRequest)">
- Convert RemovePermissionRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertListSubscriptions(Amazon.SimpleNotificationService.Model.ListSubscriptionsRequest)">
- Convert ListSubscriptionsRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertAddPermission(Amazon.SimpleNotificationService.Model.AddPermissionRequest)">
- Convert AddPermissionRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertCreateTopic(Amazon.SimpleNotificationService.Model.CreateTopicRequest)">
- Convert CreateTopicRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertListTopics(Amazon.SimpleNotificationService.Model.ListTopicsRequest)">
- Convert ListTopicsRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertUnsubscribe(Amazon.SimpleNotificationService.Model.UnsubscribeRequest)">
- Convert UnsubscribeRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertListSubscriptionsByTopic(Amazon.SimpleNotificationService.Model.ListSubscriptionsByTopicRequest)">
- Convert ListSubscriptionsByTopicRequest to name value pairs
- </member>
- <member name="M:Amazon.SimpleNotificationService.AmazonSimpleNotificationServiceClient.ConvertPublish(Amazon.SimpleNotificationService.Model.PublishRequest)">
- Convert PublishRequest to name value pairs
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.VerifyEmailAddressResponseUnmarshaller">
- <summary>
- Response Unmarshaller for VerifyEmailAddress operation
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.GetSendStatisticsRequestMarshaller">
- <summary>
- Get Send Statistics Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.DeleteVerifiedEmailAddressResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteVerifiedEmailAddress operation
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.SendEmailRequest">
- <summary>
- Container for the parameters to the SendEmail operation.
- <para>Composes an email message, based on input data, and then
- immediately queues the message for sending.</para>
- </summary>
- <seealso cref="M:Amazon.SimpleEmail.AmazonSimpleEmailService.SendEmail(Amazon.SimpleEmail.Model.SendEmailRequest)"/>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.#ctor">
- <summary>
- Default constructor for a new SendEmailRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.#ctor(System.String,Amazon.SimpleEmail.Model.Destination,Amazon.SimpleEmail.Model.Message)">
- <summary>
- Constructs a new SendEmailRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="source"> The sender's email address. </param>
- <param name="destination"> The destination for this email, composed of To:, From:, and CC: fields. </param>
- <param name="message"> The message to be sent. </param>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.WithSource(System.String)">
- <summary>
- Sets the Source property
- </summary>
- <param name="source">The value to set for the Source property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.WithDestination(Amazon.SimpleEmail.Model.Destination)">
- <summary>
- Sets the Destination property
- </summary>
- <param name="destination">The value to set for the Destination property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.WithMessage(Amazon.SimpleEmail.Model.Message)">
- <summary>
- Sets the Message property
- </summary>
- <param name="message">The value to set for the Message property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.WithReplyToAddresses(System.String[])">
- <summary>
- Adds elements to the ReplyToAddresses collection
- </summary>
- <param name="replyToAddresses">The values to add to the ReplyToAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.WithReplyToAddresses(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ReplyToAddresses collection
- </summary>
- <param name="replyToAddresses">The values to add to the ReplyToAddresses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendEmailRequest.WithReturnPath(System.String)">
- <summary>
- Sets the ReturnPath property
- </summary>
- <param name="returnPath">The value to set for the ReturnPath property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendEmailRequest.Source">
- <summary>
- The sender's email address.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendEmailRequest.Destination">
- <summary>
- The destination for this email, composed of To:, From:, and CC: fields.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendEmailRequest.Message">
- <summary>
- The message to be sent.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendEmailRequest.ReplyToAddresses">
- <summary>
- The reply-to email address(es) for the message. If the recipient replies to the message, each reply-to address will receive the reply.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendEmailRequest.ReturnPath">
- <summary>
- The email address to which bounce notifications are to be forwarded. If the message cannot be delivered to the recipient, then an error
- message will be returned from the recipient's ISP; this message will then be forwarded to the email address specified by the
- <c>ReturnPath</c> parameter.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.BatchPutAttributesRequest">
- <summary>
- Perform multiple PutAttribute operations in a single call. This helps you yield savings in round trips and
- latencies, and enables Amazon SimpleDB to optimize requests, which generally yields better throughput.
-
- Amazon SimpleDB uniquely identifies attributes in an item by their name/value combinations. For example, a
- single item can have the attributes { "first_name", "first_value" } and { "first_name", second_value" }. However,
- it cannot have two attribute instances where both the attribute name and attribute value are the same.
-
- Optionally, you can supply the Replace parameter for each individual attribute. Setting this value to true
- causes the new attribute value to replace the existing attribute value(s) if any exist. Otherwise, it simply
- inserts the attribute values. For example, if an item has the attributes { 'a', '1' }, { 'b', '2'}, and { 'b', '3' }
- and the requestor calls BatchPutAttributes using the attributes { 'b', '4' } with the Replace parameter set to true,
- the final attributes of the item are changed to { 'a', '1' } and { 'b', '4' }. This occurs because the new 'b'
- attribute replaces the old value.
-
- Note: You cannot specify an empty string as an item or attribute name.
-
- The operation succeeds or fails in its entirety. There are no partial puts.
-
- You can execute multiple BatchPutAttributes operations and other operations in parallel. However, large numbers of
- concurrent BatchPutAttributes calls can result in Service Unavailable (503) responses.
-
- This operation is vulnerable to exceeding the maximum URL size.
-
- The following limitations are enforced for this operation:
-
- * 256 attribute name-value pairs per item
- * 1 MB request size
- * 1 billion attributes per domain
- * 10 GB of total user data storage per domain
- * 25 item limit per BatchPutAttributes operation
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchPutAttributesRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain in which to perform the operation.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchPutAttributesRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchPutAttributesRequest.WithItem(Amazon.SimpleDB.Model.ReplaceableItem[])">
- <summary>
- Sets the Item property
- </summary>
- <param name="list">Items represent individual objects that contain one or more attribute name-value pairs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.BatchPutAttributesRequest.IsSetItem">
- <summary>
- Checks if Item property is set
- </summary>
- <returns>true if Item property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.BatchPutAttributesRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain in which to perform the operation.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.BatchPutAttributesRequest.Item">
- <summary>
- Gets and sets the Item property.
- Items represent individual objects that contain one or more attribute name-value pairs.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.AmazonSimpleDBException">
- <summary>
- Amazon Simple DB Exception provides details of errors
- returned by Amazon Simple DB service
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.#ctor">
- <summary>
- Initializes a new AmazonSimpleDBException with default values.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.#ctor(System.String)">
- <summary>
- Initializes a new AmazonSimpleDBException with a specified
- error message
- </summary>
- <param name="message">A message that describes the error</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.#ctor(System.String,System.Net.HttpStatusCode)">
- <summary>
- Constructs AmazonSimpleDBException with message and status code
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.#ctor(System.Exception)">
- <summary>
- Initializes a new AmazonSimpleDBException from the inner exception that is
- the cause of this exception.
- </summary>
- <param name="innerException">The nested exception that caused the AmazonS3Exception</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Initializes a new AmazonSimpleDBException with serialized data.
- </summary>
- <param name="info">The object that holds the serialized object data.
- </param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
- <summary>
- Serializes this instance of AmazonSimpleDBException.
- </summary>
- <param name="info">The object that holds the serialized object data.</param>
- <param name="context">The contextual information about the source or destination.
- </param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.#ctor(System.String,System.Exception)">
- <summary>
- Constructs AmazonSimpleDBException with message and wrapped exception
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="innerException">The nested exception that caused the AmazonS3Exception</param>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBException.#ctor(System.String,System.Net.HttpStatusCode,System.String,System.String,System.String,System.String,System.String)">
- <summary>
- Constructs AmazonSimpleDBException with information available from service
- </summary>
- <param name="message">A message that describes the error</param>
- <param name="statusCode">HTTP status code for error response</param>
- <param name="errorCode">Error Code returned by the service</param>
- <param name="errorType">Error type. Possible types: Sender, Receiver or Unknown</param>
- <param name="boxUsage">Measure of machine utilization for this request</param>
- <param name="requestId">Request ID returned by the service</param>
- <param name="xml">Compete xml found in response</param>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBException.ErrorCode">
- <summary>
- Gets and sets of the ErrorCode property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBException.ErrorType">
- <summary>
- Gets and sets of the ErrorType property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBException.Message">
- <summary>
- Gets error message
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBException.StatusCode">
- <summary>
- Gets status code returned by the service if available. If status
- code is set to -1, it means that status code was unavailable at the
- time exception was thrown
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBException.BoxUsage">
- <summary>
- Gets measure of machine utilization for this request
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBException.XML">
- <summary>
- Gets XML returned by the service if available.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBException.RequestId">
- <summary>
- Gets Request ID returned by the service if available.
- </summary>
- </member>
- <member name="T:Amazon.S3.Util.AmazonS3Util">
- <summary>
- Provides utilities used by the Amazon S3 client implementation.
- These utilities might be useful to consumers of the Amazon S3
- library.
- </summary>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.UrlEncode(System.String,System.Boolean)">
- <summary>
- URL encodes a string. If the path property is specified,
- the accepted path characters {/+:} are not encoded.
- </summary>
- <param name="data">The string to encode</param>
- <param name="path">Whether the string is a URL path or not</param>
- <returns></returns>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.MakeStreamSeekable(System.IO.Stream)">
- <summary>
- Converts a non-seekable stream into a System.IO.MemoryStream.
- A MemoryStream's position can be moved arbitrarily
- </summary>
- <param name="input">The stream to be converted</param>
- <returns>A seekable MemoryStream</returns>
- <remarks>MemoryStreams use byte arrays as their backing store.
- Please use this judicially as it is likely that a very large
- stream will cause system resources to be used up.
- </remarks>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.Sign(System.String,System.Security.SecureString,System.Security.Cryptography.KeyedHashAlgorithm)">
- <summary>
- Computes RFC 2104-compliant HMAC signature
- </summary>
- <param name="data">The data to be signed</param>
- <param name="key">The secret signing key</param>
- <param name="algorithm">The algorithm to sign the data with</param>
- <returns>A string representing the HMAC signature</returns>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.GenerateChecksumForStream(System.IO.Stream,System.Boolean)">
- <summary>
- Generates an md5Digest for the file-stream specified
- </summary>
- <param name="input">The Stream for which the MD5 Digest needs
- to be computed.</param>
- <param name="fbase64Encode">Whether the hash should be base64 encoded
- </param>
- <returns>A string representation of the hash with or w/o base64 encoding
- </returns>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.GenerateChecksumForContent(System.String,System.Boolean)">
- <summary>
- Generates an MD5 Digest for the string-based content
- </summary>
- <param name="content">The content for which the MD5 Digest needs
- to be computed.
- </param>
- <param name="fBase64Encode">Whether the returned checksum should be
- base64 encoded.
- </param>
- <returns>A string representation of the hash with or w/o base64 encoding
- </returns>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.CreateHeaderEntry(System.String,System.String)">
- <summary>
- Builds and returns the name value collection
- that can be added to the HTTP headers for the request
- </summary>
- <param name="key">The key to be added to the headers (eg. Content-Body)</param>
- <param name="value">The value of the key being added</param>
- <returns>A NameValueCollection with just one key-value pair</returns>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.ValidateV2Bucket(System.String)">
- <summary>
- Version2 S3 buckets adhere to RFC 1035:
- <list type="number">
- <item>Less than 255 characters, with each label less than 63 characters.</item>
- <item>Label must start with a letter</item>
- <item>Label must end with a letter or digit</item>
- <item>Label can have a string of letter, digits and hyphens in the middle.</item>
- <item>Although names can be case-sensitive, no significance is attached to the case.</item>
- <item>RFC 1123: Allow label to start with letter or digit (e.g. 3ware.com works)</item>
- <item>RFC 2181: No restrictions apart from the length restrictions.</item>
- </list>
- S3 V2 will start with RFCs 1035 and 1123 and impose the following additional restrictions:
- <list type="number">
- <item>Length between 3 and 63 characters (to allow headroom for upper-level domains,
- as well as to avoid separate length restrictions for bucket-name and its labels</item>
- <item>Only lower-case to avoid user confusion.</item>
- <item>No dotted-decimal IPv4-like strings</item>
- </list>
- </summary>
- <param name="bucketName">The BucketName to validate if V2 addressing should be used</param>
- <returns>True if the BucketName should use V2 bucket addressing, false otherwise</returns>
- <seealso href="http://docs.amazonwebservices.com/AmazonS3/2006-03-01/dev/index.html?BucketRestrictions.html">
- S3 v2 Bucket restrictions</seealso>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.DoesS3BucketExist(System.String,Amazon.S3.AmazonS3)">
- <summary>
- Determines whether an S3 bucket exists or not.
- This is done by:
- 1. Creating a PreSigned Url for the bucket (with an expiry date at the end of this decade)
- 2. Making a HEAD request to the Url
- </summary>
- <param name="bucketName">The name of the bucket to check.</param>
- <param name="s3Client">The Amazon S3 Client to use for S3 specific operations.</param>
- <returns></returns>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.MimeTypeFromExtension(System.String)">
- <summary>
- Determines MIME type from a file extension
- </summary>
- <param name="ext">The extension of the file</param>
- <returns>The MIME type for the extension, or text/plain</returns>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.SetObjectStorageClass(Amazon.S3.Model.S3Object,Amazon.S3.Model.S3StorageClass,Amazon.S3.AmazonS3)">
- <summary>
- Sets the storage class for the S3 Object to the value
- specified.
- </summary>
- <param name="s3Object">The S3 Object whose storage class needs changing</param>
- <param name="sClass">The new Storage Class for the object</param>
- <param name="s3Client">The Amazon S3 Client to use for S3 specific operations.</param>
- <seealso cref="T:Amazon.S3.Model.S3StorageClass"/>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.SetObjectStorageClass(System.String,System.String,Amazon.S3.Model.S3StorageClass,Amazon.S3.AmazonS3)">
- <summary>
- Sets the storage class for the S3 Object to the value
- specified.
- </summary>
- <param name="bucketName">The name of the bucket in which the key is stored</param>
- <param name="key">The key of the S3 Object whose storage class needs changing</param>
- <param name="sClass">The new Storage Class for the object</param>
- <param name="s3Client">The Amazon S3 Client to use for S3 specific operations.</param>
- <seealso cref="T:Amazon.S3.Model.S3StorageClass"/>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.SetObjectStorageClass(Amazon.S3.Model.S3ObjectVersion,Amazon.S3.Model.S3StorageClass,Amazon.S3.AmazonS3)">
- <summary>
- Sets the storage class for the S3 Object Version to the value
- specified.
- </summary>
- <param name="s3ObjectVer">The S3 Object Version whose storage class needs changing</param>
- <param name="sClass">The new Storage Class for the object</param>
- <param name="s3Client">The Amazon S3 Client to use for S3 specific operations.</param>
- <seealso cref="T:Amazon.S3.Model.S3StorageClass"/>
- </member>
- <member name="M:Amazon.S3.Util.AmazonS3Util.SetObjectStorageClass(System.String,System.String,System.String,Amazon.S3.Model.S3StorageClass,Amazon.S3.AmazonS3)">
- <summary>
- Sets the storage class for the S3 Object's Version to the value
- specified.
- </summary>
- <param name="bucketName">The name of the bucket in which the key is stored</param>
- <param name="key">The key of the S3 Object whose storage class needs changing</param>
- <param name="version">The version of the S3 Object whose storage class needs changing</param>
- <param name="sClass">The new Storage Class for the object</param>
- <param name="s3Client">The Amazon S3 Client to use for S3 specific operations.</param>
- <seealso cref="T:Amazon.S3.Model.S3StorageClass"/>
- </member>
- <member name="P:Amazon.S3.Util.AmazonS3Util.FormattedCurrentTimestamp">
- <summary>
- Formats the current date as a GMT timestamp
- </summary>
- <returns>A GMT formatted string representation
- of the current date and time
- </returns>
- </member>
- <member name="T:Amazon.S3.Transfer.TransferUtilityOpenStreamRequest">
- <summary>
- Contains all the parameters
- that can be set when making a this request with the
- <c>TransferUtility</c> method.
- </summary>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityOpenStreamRequest.WithBucketName(System.String)">
- <summary>
- Sets the name of the bucket
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="bucketName">
- The name of the bucket.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityOpenStreamRequest.WithKey(System.String)">
- <summary>
- Sets the key under which the Amazon S3 object is stored
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityOpenStreamRequest.WithVersionId(System.String)">
- <summary>
- Sets the version ID of the Amazon S3 object
- and returns this object instance,
- enabling additional method calls to be chained together.
- </summary>
- <param name="versionId">
- The version ID of the Amazon S3 object.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityOpenStreamRequest.WithModifiedSinceDate(System.DateTime)">
- <summary>
- Sets the <c>ModifiedSinceDate</c> property for this request
- and returns this object instance,
- enabling additional method calls to be chained together.
- When this is set, the Amazon S3 object is downloaded only if it
- has been modified since the specified time.
- Otherwise, Amazon S3 returns a 304 error code.
- </summary>
- <param name="modifiedSinceDate">
- The value to set the <c>ModifiedSinceDate</c> property.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityOpenStreamRequest.WithUnmodifiedSinceDate(System.DateTime)">
- <summary>
- Sets the <c>UnmodifiedSinceDate</c> property for this request
- and returns this object instance,
- enabling additional method calls to be chained together.
- When this is set, the Amazon S3 object is downloaded only if it
- has been modified since the specified time.
- Otherwise, Amazon S3 returns a 412 error code.
- </summary>
- <param name="unmodifiedSinceDate">
- The value to set the <c>UnmodifiedSinceDate</c> property.
- </param>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- </member>
- <member name="M:Amazon.S3.Transfer.TransferUtilityOpenStreamRequest.WithTimeout(System.Int32)">
- <summary>
- Sets the timeout property in milliseconds
- and returns this object instance,
- enabling additional method calls to be chained together.
- The value of this property is assigned to the
- <c>ReadWriteTimeout</c> and <c>Timeout</c> properties of the
- <c>HTTPWebRequest</c> object used for Amazon S3 GET Object requests.
- Set the timeout only if certain that
- the file will not be transferred within the default intervals
- for an HttpWebRequest.
- </summary>
- <param name="timeout">
- The value of the timeout property in milliseconds.
- </param>
- <remarks>
- A value less than or equal to 0 will be silently ignored.
- </remarks>
- <returns>
- This object instance, enabling additional method calls to be chained together.
- </returns>
- <seealso cref="P:System.Net.HttpWebRequest.ReadWriteTimeout"/>
- <seealso cref="P:System.Net.HttpWebRequest.Timeout"/>
- </member>
- <member name="T:Amazon.S3.Model.PutBucketResponse">
- <summary>
- The PutBucketResponse contains any headers returned by S3.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetObjectMetadataRequest">
- <summary>
- The GetObjectMetadataRequest contains the parameters used for the GetObjectMetadata operation.
- For more information about the optional parameters,
- refer: <see href="http://docs.amazonwebservices.com/AmazonS3/latest/RESTObjectGET.html"/>
- <br />Required Parameters: BucketName, Key
- <br />Optional Parameters: ModifiedSinceDate, UnmodifiedSinceDate, ETagToMatch, ETagToNotMatch
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket that contains the S3 Object with
- the metadata you want.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object's metadata you want.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.WithModifiedSinceDate(System.DateTime)">
- <summary>
- Sets the ModifiedSinceDate property for this request.
- When this is set the S3 object metadata is returned
- only if it has been modified since the specified time,
- otherwise returns a 304 (not modified).
- </summary>
- <param name="modifiedSinceDate">The value that ModifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.IsSetModifiedSinceDate">
- <summary>
- Checks if ModifiedSinceDate property is set.
- </summary>
- <returns>true if ModifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.WithUnmodifiedSinceDate(System.DateTime)">
- <summary>
- Sets the UnmodifiedSinceDate property for this request.
- When this is set the S3 object metadata is returned only
- if it has not been modified since the specified time,
- otherwise return a 412 (precondition failed).
- </summary>
- <param name="unmodifiedSinceDate">The value that UnmodifiedSinceDate is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.IsSetUnmodifiedSinceDate">
- <summary>
- Checks if UnmodifiedSinceDate property is set.
- </summary>
- <returns>true if UnmodifiedSinceDate property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.WithETagToMatch(System.String)">
- <summary>
- Sets the ETagToMatch property for this request.
- When this is set the S3 object metadatais returned
- only if its entity tag (ETag) is the same as the one
- specified, otherwise return a 412 (precondition failed).
- </summary>
- <param name="etagToMatch">The value that ETagToMatch is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.IsSetETagToMatch">
- <summary>
- Checks if ETagToMatch property is set.
- </summary>
- <returns>true if ETagToMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.WithETagToNotMatch(System.String)">
- <summary>
- Sets the ETagToNotMatch property for this request.
- When this is set the S3 object metadata is returned
- only if its entity tag (ETag) is different from the one
- specified, otherwise return a 304 (not modified).
- </summary>
- <param name="etagToNotMatch">The value that ETagToNotMatch is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.IsSetETagToNotMatch">
- <summary>
- Checks if ETagToNotMatch property is set.
- </summary>
- <returns>true if ETagToNotMatch property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.WithVersionId(System.String)">
- <summary>
- Sets the VersionId property for this request.
- This is the VersionId for the S3 Object you want to Get Metatdata for.
- </summary>
- <param name="versionId">The value that VersionId is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetObjectMetadataRequest.IsSetVersionId">
- <summary>
- Checks if VersionId property is set.
- </summary>
- <returns>true if VersionId property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataRequest.ModifiedSinceDate">
- <summary>
- Gets and sets the ModifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataRequest.UnmodifiedSinceDate">
- <summary>
- Gets and sets the UnmodifiedSinceDate property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataRequest.ETagToMatch">
- <summary>
- Gets and sets the ETagToMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataRequest.ETagToNotMatch">
- <summary>
- Gets and sets the ETagToNotMatch property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetObjectMetadataRequest.VersionId">
- <summary>
- Gets and sets the VersionId property.
- This is the VersionId for the S3 Object you want to Get Metatdata for.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.S3AccessControlList">
- <summary>
- AccessControlList represents an ACL for S3.
- An AccessControlList is represented by an Owner,
- and a List of Grants, where each Grant is a Grantee
- and a Permission.
- <para>
- Each bucket and object in Amazon S3 has an ACL that defines its access control policy.
- When a request is made, Amazon S3 authenticates the request using its standard
- authentication procedure and then checks the ACL to verify the sender was granted access
- to the bucket or object. If the sender is approved, the request proceeds.
- Otherwise, Amazon S3 returns an error.
- </para><para>
- An ACL is a list of grants. A grant consists of one grantee and one permission.
- ACLs only grant permissions; they do not deny them.
- </para><para>
- For convenience, some commonly used Access Control Lists are defined in
- S3CannedACL.
- </para><para>
- Note: Bucket and object ACLs are completely independent; an object does not inherit the ACL
- from its bucket. For example, if you create a bucket and grant write access to another user,
- you will not be able to access the user's objects unless the user explicitly grants access.
- This also applies if you grant anonymous write access to a bucket. Only the user "anonymous"
- will be able to access objects the user created unless permission is explicitly granted to
- the bucket owner.
- </para><para>
- Important: We highly recommend that you do not grant the anonymous group write access to your
- buckets as you will have no control over the objects others can store and their associated charges.
- For more information, see Grantees and Permissions</para>
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.AddGrant(Amazon.S3.Model.S3Grantee,Amazon.S3.Model.S3Permission)">
- <summary>
- Creates a S3Grant and adds it to the list of grants.
- </summary>
- <param name="grantee">The grantee for the grant.</param>
- <param name="permission">The permission for the grantee.</param>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.RemoveGrant(Amazon.S3.Model.S3Grantee,Amazon.S3.Model.S3Permission)">
- <summary>
- Removes a specific permission for the given grantee.
- </summary>
- <param name="grantee">The grantee</param>
- <param name="permission">The permission for the grantee to remove</param>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.RemoveGrant(Amazon.S3.Model.S3Grantee)">
- <summary>
- Removes all permissions for the given grantee.
- </summary>
- <param name="grantee"></param>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.ToString">
- <summary>
- Returns a System.String that represents the AccessControlList Object
- </summary>
- <returns>A System.String representation of the AccessControlList Object.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.WithOwner(Amazon.S3.Model.Owner)">
- <summary>
- Sets the Owner property.
- </summary>
- <param name="owner">Owner property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.IsSetOwner">
- <summary>
- Checks if Owner property is set.
- </summary>
- <returns>true if Owner property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.WithGrants(Amazon.S3.Model.S3Grant[])">
- <summary>
- Sets the Grants property.
- </summary>
- <param name="args">Grants property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.S3AccessControlList.IsSetGrants">
- <summary>
- Checks if Grants property is set.
- </summary>
- <returns>true if Grants property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.S3AccessControlList.Owner">
- <summary>
- Gets and sets the Owner property.
- </summary>
- <remarks>
- Every bucket and object in Amazon S3 has an owner, the user that
- created the bucket or object. The owner of a bucket or object cannot
- be changed. However, if the object is overwritten by another user
- (deleted and rewritten), the new object will have a new owner.
-
- Note: Even the owner is subject to the ACL. For example, if an owner
- does not have Permission.READ access to an object, the owner cannot read
- that object. However, the owner of an object always has write access to the
- access control policy (Permission.WriteAcp) and can change the ACL to
- read the object.
- </remarks>
- </member>
- <member name="P:Amazon.S3.Model.S3AccessControlList.Grants">
- <summary>
- Gets and sets the Grants property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.NotificationConfigurationList">
- <summary>
- NotificationConfigurationList represents a notification configuration for a bucket
- in S3. A configuration is a collection of topic configurations which contain the event
- and topic arn. Currently only one event type is being supported with the possiblity of
- more event types in the future.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.NotificationConfigurationList.WithTopicConfigurations(Amazon.S3.Model.TopicConfiguration[])">
- <summary>
- Adds the arguments to the TopicConfigurations property.
- </summary>
- <param name="args">TopicConfigurations added to the TopicConfigurations property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.NotificationConfigurationList.ToString">
- <summary>
- Creates a string representation of a NotificationConfigurationlist.
- </summary>
- <returns>The string representation of the NotificationConfigurationlist.</returns>
- </member>
- <member name="M:Amazon.S3.Model.NotificationConfigurationList.ToXML">
- <summary>
- Creates a xml representation of a NotificationConfigurationlist.
- </summary>
- <returns>The xml representation of the NotificationConfigurationlist.</returns>
- </member>
- <member name="P:Amazon.S3.Model.NotificationConfigurationList.TopicConfigurations">
- <summary>
- Gets and sets the TopicConfigurations property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketPolicyResponse">
- <summary>
- The GetBucketPolicyResponse contains the JSON string representation of the policy
- any headers returned by S3.
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketPolicyResponse.ProcessResponseBody(System.String)">
- <summary>
- The request to get the policy is return as the content
- body of the response.
- </summary>
- <param name="responseBody">The policy</param>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketPolicyResponse.Policy">
- <summary>
- Gets and sets the Policy property.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.IRequest`1">
- <summary>
- Represents a request being sent to an Amazon Web Service, including the
- parameters being sent as part of the request, the endpoint to which the
- request should be sent, etc.
- <para>
- This class is only intended for internal use inside the AWS client libraries.
- Callers shouldn't ever interact directly with objects of this class.
- </para>
- </summary>
- <typeparam name="T">The type of original, user facing request represented by this request.</typeparam>
- </member>
- <member name="P:Amazon.Runtime.Internal.IRequest`1.Headers">
- <summary>
- Returns a dictionary of the headers included in this request.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.IRequest`1.Parameters">
- <summary>
- Returns a dictionary of the parameters included in this request.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.IRequest`1.Endpoint">
- <summary>
- Gets and Sets the endpoint for this request.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.IRequest`1.ServiceName">
- <summary>
- The name of the service to which this request is being sent.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.IRequest`1.OriginalRequest">
- <summary>
- Returns the original, user facing request object which this internal
- request object is representing.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.DefaultRequest`1">
- <summary>
- Default implementation of the IRequest interface.
- <para>
- This class is only intended for internal use inside the AWS client libraries.
- Callers shouldn't ever interact directly with objects of this class.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.DefaultRequest`1.#ctor(Amazon.Runtime.AmazonWebServiceRequest,System.String)">
- <summary>
- Constructs a new DefaultRequest with the specified service name and the
- original, user facing request object.
- </summary>
- <param name="originalRequest">The orignal request that is being wrapped</param>
- <param name="serviceName">The service name</param>
- </member>
- <member name="P:Amazon.Runtime.Internal.DefaultRequest`1.OriginalRequest">
- <summary>
- Returns the original, user facing request object which this internal
- request object is representing.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.DefaultRequest`1.Headers">
- <summary>
- Returns a dictionary of the headers included in this request.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.DefaultRequest`1.Parameters">
- <summary>
- Returns a dictionary of the parameters included in this request.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.DefaultRequest`1.Endpoint">
- <summary>
- Gets and Sets the endpoint for this request.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.DefaultRequest`1.ServiceName">
- <summary>
- The name of the service to which this request is being sent.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ResetDBParameterGroupResultUnmarshaller">
- <summary>
- ResetDBParameterGroupResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ReservedDBInstancesOfferingUnmarshaller">
- <summary>
- ReservedDBInstancesOffering Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeReservedDBInstancesOfferingsResultUnmarshaller">
- <summary>
- DescribeReservedDBInstancesOfferingsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBParametersResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeDBParameters operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBParameterGroupsRequestMarshaller">
- <summary>
- Describe D B Parameter Groups Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBInstancesRequestMarshaller">
- <summary>
- Describe D B Instances Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBSnapshotResultUnmarshaller">
- <summary>
- Result Unmarshaller for DeleteDBSnapshot operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.IPRange">
- <summary>
- <para> This data type is used as a response element in the DescribeDBSecurityGroups action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.IPRange.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.IPRange.WithCIDRIP(System.String)">
- <summary>
- Sets the CIDRIP property
- </summary>
- <param name="cIDRIP">The value to set for the CIDRIP property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.IPRange.Status">
- <summary>
- Specifies the status of the IP range.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.IPRange.CIDRIP">
- <summary>
- Specifies the IP range.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Endpoint">
- <summary>
- <para> This data type is used as a response element in the following actions: </para>
- <ul>
- <li> CreateDBInstance </li>
- <li> DescribeDBInstances </li>
- <li> DeleteDBInstance </li>
-
- </ul>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.Endpoint.WithAddress(System.String)">
- <summary>
- Sets the Address property
- </summary>
- <param name="address">The value to set for the Address property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.Endpoint.WithPort(System.Int32)">
- <summary>
- Sets the Port property
- </summary>
- <param name="port">The value to set for the Port property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.Endpoint.Address">
- <summary>
- Specifies the DNS address of the DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.Endpoint.Port">
- <summary>
- Specifies the port that the database engine is listening on.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBParameterGroupsRequest">
- <summary>
- Container for the parameters to the DescribeDBParameterGroups operation.
- <para> Returns a list of DBParameterGroup descriptions. If a DBParameterGroupName is specified, the list will contain only the descriptions
- of the specified DBParameterGroup. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeDBParameterGroups(Amazon.RDS.Model.DescribeDBParameterGroupsRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParameterGroupsRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParameterGroupsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBParameterGroupsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParameterGroupsRequest.DBParameterGroupName">
- <summary>
- The name of a specific database parameter group to return details for. Constraints: <ul> <li>Must be 1 to 255 alphanumeric characters</li>
- <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParameterGroupsRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBParameterGroupsRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeDBInstances request. If this parameter is specified, the response includes only records
- beyond the marker, up to the value specified by <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBInstancesRequest">
- <summary>
- Container for the parameters to the DescribeDBInstances operation.
- <para> Returns information about provisioned RDS instances. This API supports pagination. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeDBInstances(Amazon.RDS.Model.DescribeDBInstancesRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBInstancesRequest.WithDBInstanceIdentifier(System.String)">
- <summary>
- Sets the DBInstanceIdentifier property
- </summary>
- <param name="dBInstanceIdentifier">The value to set for the DBInstanceIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBInstancesRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeDBInstancesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBInstancesRequest.DBInstanceIdentifier">
- <summary>
- The user-supplied instance identifier. If this parameter is specified, information from only the specific DB Instance is returned. This
- parameter isn't case sensitive. Constraints: <ul> <li>Must contain from 1 to 63 alphanumeric characters or hyphens</li> <li>First character
- must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBInstancesRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBInstancesRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeDBInstances request. If this parameter is specified, the response includes only records
- beyond the marker, up to the value specified by <c>MaxRecords</c> .
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBSecurityGroupResult">
- <summary>
- The results from the CreateDBSecurityGroup action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBSecurityGroupResult.DBSecurityGroup">
-
- Gets and sets the CreateDBSecurityGroupResult property.
- Contains the result of a successful invocation of the CreateDBSecurityGroup
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressResult">
- <summary>
- The results from the AuthorizeDBSecurityGroupIngress action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.AuthorizeDBSecurityGroupIngressResult.DBSecurityGroup">
-
- Gets and sets the AuthorizeDBSecurityGroupIngressResult property.
- Contains the result of a successful invocation of the AuthorizeDBSecurityGroupIngress
- action.
-
- </member>
- <member name="T:Amazon.ImportExport.Model.UpdateJobResponse">
- <summary>
- Returns information about the UpdateJobResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.UpdateJobResponse.UpdateJobResult">
- <summary>
- Gets and sets the UpdateJobResult property.
- Output structure for the UpateJob operation.
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.UpdateJobResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateJob operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateServerCertificateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateServerCertificate operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateLoginProfileResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateLoginProfile operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateGroup operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.LoginProfileUnmarshaller">
- <summary>
- LoginProfile Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteUserPolicyRequestMarshaller">
- <summary>
- Delete User Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateUserResultUnmarshaller">
- <summary>
- CreateUserResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ResyncMFADeviceResponse">
- <summary>
- Returns information about the ResyncMFADevice response metadata.
- The ResyncMFADevice operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListUsersRequest">
- <summary>
- Container for the parameters to the ListUsers operation.
- <para>Lists the Users that have the specified path prefix. If there
- are none, the action returns an empty list.</para> <para>You can
- paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListUsers(Amazon.IdentityManagement.Model.ListUsersRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUsersRequest.WithPathPrefix(System.String)">
- <summary>
- Sets the PathPrefix property
- </summary>
- <param name="pathPrefix">The value to set for the PathPrefix property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUsersRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUsersRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUsersRequest.PathPrefix">
- <summary>
- The path prefix for filtering the results. For example: <c>/division_abc/subdivision_xyz/</c>, which would get all User names whose path
- starts with <c>/division_abc/subdivision_xyz/</c>. This parameter is optional. If it is not included, it defaults to a slash (/), listing
- all User names.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 512</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>\u002F[\u0021-\u007F]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUsersRequest.Marker">
- <summary>
- Use this parameter only when paginating results, and only in a subsequent request after you've received a response where the results are
- truncated. Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUsersRequest.MaxItems">
- <summary>
- Use this parameter only when paginating results to indicate the maximum number of User names you want in the response. If there are
- additional User names beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupsForUserRequest">
- <summary>
- Container for the parameters to the ListGroupsForUser operation.
- <para>Lists the groups the specified User belongs to.</para> <para>You
- can paginate the results using the <c>MaxItems</c> and <c>Marker</c>
- parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListGroupsForUser(Amazon.IdentityManagement.Model.ListGroupsForUserRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsForUserRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsForUserRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsForUserRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsForUserRequest.UserName">
- <summary>
- The name of the User to list groups for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsForUserRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsForUserRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of groups you want in the response. If there are additional groups
- beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.LimitExceededException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.LimitExceededException.#ctor(System.String)">
- <summary>
- Constructs a new LimitExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DuplicateCertificateException">
- <summary>
- AmazonIdentityManagementService exception
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DuplicateCertificateException.#ctor(System.String)">
- <summary>
- Constructs a new DuplicateCertificateException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.RunJobFlowRequestMarshaller">
- <summary>
- Run Job Flow Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.AddInstanceGroupsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for AddInstanceGroups operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.RunJobFlowResult">
- <summary>
- <para> The result of the RunJobFlow operation. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.RunJobFlowResult.WithJobFlowId(System.String)">
- <summary>
- Sets the JobFlowId property
- </summary>
- <param name="jobFlowId">The value to set for the JobFlowId property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.RunJobFlowResult.JobFlowId">
- <summary>
- An unique identifier for the job flow.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.ListenerDescriptionUnmarshaller">
- <summary>
- ListenerDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLoadBalancerListenersResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateLoadBalancerListeners operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLBCookieStickinessPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateLBCookieStickinessPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateAppCookieStickinessPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateAppCookieStickinessPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.SetLoadBalancerPoliciesOfListenerResult">
- <summary>
- <para> The output for the SetLoadBalancerPoliciesOfListener action. </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.HealthCheck">
- <summary>
- <para> The HealthCheck data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.HealthCheck.#ctor">
- <summary>
- Default constructor for a new HealthCheck object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.HealthCheck.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32)">
- <summary>
- Constructs a new HealthCheck object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="target"> Specifies the instance being checked. The protocol is either TCP or HTTP. The range of valid ports is one (1) through
- 65535. <note> TCP is the default, specified as a TCP: port pair, for example "TCP:5000". In this case a healthcheck simply attempts to open
- a TCP connection to the instance on the specified port. Failure to connect within the configured timeout is considered unhealthy. For HTTP,
- the situation is different. HTTP is specified as a HTTP:port;/;PathToPing; grouping, for example "HTTP:80/weather/us/wa/seattle". In this
- case, a HTTP GET request is issued to the instance on the given port and path. Any answer other than "200 OK" within the timeout period is
- considered unhealthy. The total length of the HTTP ping target needs to be 1024 16-bit Unicode characters or less. </note> </param>
- <param name="interval"> Specifies the approximate interval, in seconds, between health checks of an individual instance. </param>
- <param name="timeout"> Specifies the amount of time, in seconds, during which no response means a failed health probe. <note> This value
- must be less than the <i>Interval</i> value. </note> </param>
- <param name="unhealthyThreshold"> Specifies the number of consecutive health probe failures required before moving the instance to the
- <i>Unhealthy</i> state. </param>
- <param name="healthyThreshold"> Specifies the number of consecutive health probe successes required before moving the instance to the
- <i>Healthy</i> state. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.HealthCheck.WithTarget(System.String)">
- <summary>
- Sets the Target property
- </summary>
- <param name="target">The value to set for the Target property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.HealthCheck.WithInterval(System.Int32)">
- <summary>
- Sets the Interval property
- </summary>
- <param name="interval">The value to set for the Interval property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.HealthCheck.WithTimeout(System.Int32)">
- <summary>
- Sets the Timeout property
- </summary>
- <param name="timeout">The value to set for the Timeout property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.HealthCheck.WithUnhealthyThreshold(System.Int32)">
- <summary>
- Sets the UnhealthyThreshold property
- </summary>
- <param name="unhealthyThreshold">The value to set for the UnhealthyThreshold property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.HealthCheck.WithHealthyThreshold(System.Int32)">
- <summary>
- Sets the HealthyThreshold property
- </summary>
- <param name="healthyThreshold">The value to set for the HealthyThreshold property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.HealthCheck.Target">
- <summary>
- Specifies the instance being checked. The protocol is either TCP or HTTP. The range of valid ports is one (1) through 65535. <note> TCP is
- the default, specified as a TCP: port pair, for example "TCP:5000". In this case a healthcheck simply attempts to open a TCP connection to
- the instance on the specified port. Failure to connect within the configured timeout is considered unhealthy. For HTTP, the situation is
- different. HTTP is specified as a HTTP:port;/;PathToPing; grouping, for example "HTTP:80/weather/us/wa/seattle". In this case, a HTTP GET
- request is issued to the instance on the given port and path. Any answer other than "200 OK" within the timeout period is considered
- unhealthy. The total length of the HTTP ping target needs to be 1024 16-bit Unicode characters or less. </note>
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.HealthCheck.Interval">
- <summary>
- Specifies the approximate interval, in seconds, between health checks of an individual instance.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 300</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.HealthCheck.Timeout">
- <summary>
- Specifies the amount of time, in seconds, during which no response means a failed health probe. <note> This value must be less than the
- <i>Interval</i> value. </note>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 300</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.HealthCheck.UnhealthyThreshold">
- <summary>
- Specifies the number of consecutive health probe failures required before moving the instance to the <i>Unhealthy</i> state.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>2 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.HealthCheck.HealthyThreshold">
- <summary>
- Specifies the number of consecutive health probe successes required before moving the instance to the <i>Healthy</i> state.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>2 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest">
- <summary>
- Container for the parameters to the EnableAvailabilityZonesForLoadBalancer operation.
- <para> Adds one or more EC2 Availability Zones to the LoadBalancer. </para> <para> The LoadBalancer evenly distributes requests across all
- its registered Availability Zones that contain instances. As a result, the client must ensure that its LoadBalancer is appropriately scaled
- for each registered Availability Zone. </para> <para><b>NOTE:</b> The new EC2 Availability Zones to be added must be in the same EC2 Region
- as the Availability Zones for which the LoadBalancer was created. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.EnableAvailabilityZonesForLoadBalancer(Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest.#ctor">
- <summary>
- Default constructor for a new EnableAvailabilityZonesForLoadBalancerRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest.#ctor(System.String,System.Collections.Generic.List{System.String})">
- <summary>
- Constructs a new EnableAvailabilityZonesForLoadBalancerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- <param name="availabilityZones"> A list of new Availability Zones for the LoadBalancer. Each Availability Zone must be in the same Region as
- the LoadBalancer. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.EnableAvailabilityZonesForLoadBalancerRequest.AvailabilityZones">
- <summary>
- A list of new Availability Zones for the LoadBalancer. Each Availability Zone must be in the same Region as the LoadBalancer.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersResponse">
- <summary>
- Returns information about the DeleteLoadBalancerListenersResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeleteLoadBalancerListenersResponse.DeleteLoadBalancerListenersResult">
- <summary>
- Gets and sets the DeleteLoadBalancerListenersResult property.
- The output for the DeleteLoadBalancerListeners action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyResponse">
- <summary>
- Returns information about the CreateAppCookieStickinessPolicyResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.CreateAppCookieStickinessPolicyResponse.CreateAppCookieStickinessPolicyResult">
- <summary>
- Gets and sets the CreateAppCookieStickinessPolicyResult property.
- The output for the CreateAppCookieStickinessPolicy action.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest">
- <summary>
- Container for the parameters to the UpdateApplication operation.
- <para>Updates the specified application to have the specified properties. </para> <para><b>NOTE:</b> If a property (for example,
- description) is not provided, the value remains unchanged. To clear these properties, specify an empty string. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.UpdateApplication(Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest.ApplicationName">
- <summary>
- The name of the application to update. If no such application is found, <c>UpdateApplication</c> returns an <c>InvalidParameterValue</c>
- error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationRequest.Description">
- <summary>
- A new description for the application. Default: If not specified, AWS Elastic Beanstalk does not update the description.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateConfigurationTemplateResultUnmarshaller">
- <summary>
- UpdateConfigurationTemplateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateApplicationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateApplication operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEventsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeEvents operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TooManyApplicationsException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TooManyApplicationsException.#ctor(System.String)">
- <summary>
- Constructs a new TooManyApplicationsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest">
- <summary>
- Container for the parameters to the RequestEnvironmentInfo operation.
- <para> Initiates a request to compile the specified type of information of the deployed environment. </para> <para> Setting the
- <c>InfoType</c> to <c>tail</c> compiles the last lines from the application server log files of every Amazon EC2 instance in your
- environment. Use RetrieveEnvironmentInfo to access the compiled information. </para> <para>Related Topics</para>
- <ul>
- <li> RetrieveEnvironmentInfo </li>
-
- </ul>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.RequestEnvironmentInfo(Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest.WithInfoType(System.String)">
- <summary>
- Sets the InfoType property
- </summary>
- <param name="infoType">The value to set for the InfoType property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest.EnvironmentId">
- <summary>
- The ID of the environment of the requested data. If no such environment is found, <c>RequestEnvironmentInfo</c> returns an
- <c>InvalidParameterValue</c> error.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest.EnvironmentName">
- <summary>
- The name of the environment of the requested data. If no such environment is found, <c>RequestEnvironmentInfo</c> returns an
- <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.RequestEnvironmentInfoRequest.InfoType">
- <summary>
- The type of information to request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>tail</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription">
- <summary>
- <para>Describes the AWS resources in use by this environment. This data is live.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithAutoScalingGroups(Amazon.ElasticBeanstalk.Model.AutoScalingGroup[])">
- <summary>
- Adds elements to the AutoScalingGroups collection
- </summary>
- <param name="autoScalingGroups">The values to add to the AutoScalingGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithAutoScalingGroups(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.AutoScalingGroup})">
- <summary>
- Adds elements to the AutoScalingGroups collection
- </summary>
- <param name="autoScalingGroups">The values to add to the AutoScalingGroups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithInstances(Amazon.ElasticBeanstalk.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithInstances(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithLaunchConfigurations(Amazon.ElasticBeanstalk.Model.LaunchConfiguration[])">
- <summary>
- Adds elements to the LaunchConfigurations collection
- </summary>
- <param name="launchConfigurations">The values to add to the LaunchConfigurations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithLaunchConfigurations(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.LaunchConfiguration})">
- <summary>
- Adds elements to the LaunchConfigurations collection
- </summary>
- <param name="launchConfigurations">The values to add to the LaunchConfigurations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithLoadBalancers(Amazon.ElasticBeanstalk.Model.LoadBalancer[])">
- <summary>
- Adds elements to the LoadBalancers collection
- </summary>
- <param name="loadBalancers">The values to add to the LoadBalancers collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithLoadBalancers(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.LoadBalancer})">
- <summary>
- Adds elements to the LoadBalancers collection
- </summary>
- <param name="loadBalancers">The values to add to the LoadBalancers collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithTriggers(Amazon.ElasticBeanstalk.Model.Trigger[])">
- <summary>
- Adds elements to the Triggers collection
- </summary>
- <param name="triggers">The values to add to the Triggers collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.WithTriggers(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.Trigger})">
- <summary>
- Adds elements to the Triggers collection
- </summary>
- <param name="triggers">The values to add to the Triggers collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.EnvironmentName">
- <summary>
- The name of the environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.AutoScalingGroups">
- <summary>
- The <c>AutoScalingGroups</c> used by this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.Instances">
- <summary>
- The Amazon EC2 instances used by this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.LaunchConfigurations">
- <summary>
- The Auto Scaling launch configurations in use by this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.LoadBalancers">
- <summary>
- The LoadBalancers in use by this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription.Triggers">
- <summary>
- The <c>AutoScaling</c> triggers in use by this environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEventsResult">
- <summary>
- <para>Result message wrapping a list of event descriptions.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsResult.WithEvents(Amazon.ElasticBeanstalk.Model.EventDescription[])">
- <summary>
- Adds elements to the Events collection
- </summary>
- <param name="events">The values to add to the Events collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsResult.WithEvents(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.EventDescription})">
- <summary>
- Adds elements to the Events collection
- </summary>
- <param name="events">The values to add to the Events collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsResult.Events">
- <summary>
- A list of <a>EventDescription</a>.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsResult.NextToken">
- <summary>
- If returned, this indicates that there are more results to obtain. Use this token in the next <a>DescribeEvents</a> call to get the next
- batch of events.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesResult">
- <summary>
- <para>Result message containing a list of environment resource descriptions. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesResult.WithEnvironmentResources(Amazon.ElasticBeanstalk.Model.EnvironmentResourceDescription)">
- <summary>
- Sets the EnvironmentResources property
- </summary>
- <param name="environmentResources">The value to set for the EnvironmentResources property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEnvironmentResourcesResult.EnvironmentResources">
- <summary>
- A list of <a>EnvironmentResourceDescription</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest">
- <summary>
- Container for the parameters to the DescribeConfigurationSettings operation.
- <para> Returns a description of the settings for the specified configuration set, that is, either a configuration template or the
- configuration set associated with a running environment. </para> <para> When describing the settings for the configuration set associated
- with a running environment, it is possible to receive two sets of setting descriptions. One is the deployed configuration set, and the other
- is a draft configuration of an environment that is either in the process of deployment or that failed to deploy. </para> <para>Related
- Topics</para>
- <ul>
- <li> DeleteEnvironmentConfiguration </li>
-
- </ul>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeConfigurationSettings(Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest.ApplicationName">
- <summary>
- The application for the environment or configuration template.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest.TemplateName">
- <summary>
- The name of the configuration template to describe.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsRequest.EnvironmentName">
- <summary>
- The name of the environment to describe.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationResponse">
- <summary>
- Returns information about the DeleteEnvironmentConfiguration response metadata.
- The DeleteEnvironmentConfiguration operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest">
- <summary>
- Container for the parameters to the DeleteEnvironmentConfiguration operation.
- <para> Deletes the draft configuration associated with the running environment. </para> <para> Updating a running environment with any
- configuration changes creates a draft configuration set. You can get the draft configuration using DescribeConfigurationSettings while the
- update is in progress or if the update fails. The <c>DeploymentStatus</c> for the draft configuration indicates whether the deployment is in
- process or has failed. The draft configuration remains in existence until it is deleted with this action. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DeleteEnvironmentConfiguration(Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest.ApplicationName">
- <summary>
- The name of the application the environment is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DeleteEnvironmentConfigurationRequest.EnvironmentName">
- <summary>
- The name of the environment to delete the draft configuration from.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Vpc">
- <summary>
- VPC
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The VPC's ID</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.WithVpcState(System.String)">
- <summary>
- Sets the VpcState property
- </summary>
- <param name="vpcState">The current state of the VPC (pending or available).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.IsSetVpcState">
- <summary>
- Checks if VpcState property is set
- </summary>
- <returns>true if VpcState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.WithCidrBlock(System.String)">
- <summary>
- Sets the CidrBlock property
- </summary>
- <param name="cidrBlock">The CIDR block the VPC covers</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.IsSetCidrBlock">
- <summary>
- Checks if CidrBlock property is set
- </summary>
- <returns>true if CidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.WithDhcpOptionsId(System.String)">
- <summary>
- Sets the DhcpOptionsId property
- </summary>
- <param name="dhcpOptionsId">The ID of the set of DHCP options you've
- associated with the VPC
- (or "default" if
- the default options are
- associated with the VPC).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.IsSetDhcpOptionsId">
- <summary>
- Checks if DhcpOptionsId property is set
- </summary>
- <returns>true if DhcpOptionsId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the Vpc.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.IsSetInstanceTenancy">
- <summary>
- Checks if InstanceTenancy property is set
- </summary>
- <returns>true if InstanceTenancy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Vpc.WithInstanceTenancy(System.String)">
- <summary>
- Sets the InstanceTenancy property
- </summary>
- <param name="instanceTenancy">The allowed tenancy of instances launched into the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Vpc.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The VPC's ID
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Vpc.VpcState">
- <summary>
- Gets and sets the VpcState property.
- The current state of the VPC (pending or available).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Vpc.CidrBlock">
- <summary>
- Gets and sets the CidrBlock property.
- The CIDR block the VPC covers
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Vpc.DhcpOptionsId">
- <summary>
- Gets and sets the DhcpOptionsId property.
- The ID of the set of DHCP options you've
- associated with the VPC
- (or "default" if
- the default options are
- associated with the VPC).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Vpc.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the Vpc.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Vpc.InstanceTenancy">
- <summary>
- Gets and sets the InstanceTenancy property.
- The allowed tenancy of instances launched into the VPC.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Tag">
- <summary>
- Represents metadata to associate with Amazon EC2 resources.
- Each tag consists of a user-defined key and value.
- Use tags to categorize EC2 resources, such as by purpose,
- owner, or environment.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Tag.WithKey(System.String)">
- <summary>
- Sets the Key property
- </summary>
- <param name="key">The tag's key.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Tag.IsSetKey">
- <summary>
- Checks if Key property is set
- </summary>
- <returns>true if Key property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Tag.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">The tag's value.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Tag.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Tag.Key">
- <summary>
- Gets and sets the Key property.
- The tag's key.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Tag.Value">
- <summary>
- Gets and sets the Value property.
- The tag's value.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RequestSpotInstancesResult">
- <summary>
- Result of the Request Spot Instances operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesResult.IsSetSpotInstanceRequest">
- <summary>
- Checks if SpotInstanceRequest property is set
- </summary>
- <returns>true if SpotInstanceRequest property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesResult.SpotInstanceRequest">
- <summary>
- Gets and sets the SpotInstanceRequest property.
- A list of the SpotInstanceRequest objects returned by the service.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceRouteTableAssociationResponse">
- <summary>
- The Response for the
- ReplaceRouteTableAssociation operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationResponse.IsSetReplaceRouteTableAssociationResult">
- <summary>
- Checks if ReplaceRouteTableAssociationResult property is set
- </summary>
- <returns>true if ReplaceRouteTableAssociationResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceRouteTableAssociationResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteTableAssociationResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceRouteTableAssociationResponse.ReplaceRouteTableAssociationResult">
- <summary>
- Gets and sets the ReplaceRouteTableAssociationResult property.
- ReplaceRouteTableAssociation Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceLicense">
- <summary>
- Represents an active license in use and attached to an Amazon EC2 instance.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceLicense.WithPool(System.String)">
- <summary>
- Sets the Pool property
- </summary>
- <param name="pool">The license pool from which to take a license when starting
- Amazon EC2 instances in the associated RunInstances request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceLicense.IsSetPool">
- <summary>
- Checks if Pool property is set
- </summary>
- <returns>true if Pool property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceLicense.Pool">
- <summary>
- Gets and sets the Pool property.
- The license pool from which to take a license when starting
- Amazon EC2 instances in the associated RunInstances request.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DhcpOptions">
- <summary>
- DHCP Options
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpOptions.WithDhcpOptionsId(System.String)">
- <summary>
- Sets the DhcpOptionsId property
- </summary>
- <param name="dhcpOptionsId">The ID of the set of DHCP options</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpOptions.IsSetDhcpOptionsId">
- <summary>
- Checks if DhcpOptionsId property is set
- </summary>
- <returns>true if DhcpOptionsId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpOptions.WithConfiguration(Amazon.EC2.Model.DhcpConfiguration[])">
- <summary>
- Sets the Configuration property
- </summary>
- <param name="list">Information about the set of DHCP options</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpOptions.IsSetConfiguration">
- <summary>
- Checks if Configuration property is set
- </summary>
- <returns>true if Configuration property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpOptions.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the DhcpOptions.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DhcpOptions.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DhcpOptions.DhcpOptionsId">
- <summary>
- Gets and sets the DhcpOptionsId property.
- The ID of the set of DHCP options
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DhcpOptions.Configuration">
- <summary>
- Gets and sets the Configuration property.
- Information about the set of DHCP options
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DhcpOptions.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the DhcpOptions.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DetachVpnGatewayResponse">
- <summary>
- Detach Vpn Gateway Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVpnGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVpnGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVpnGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVpnGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesResult.IsSetLicense">
- <summary>
- Checks if License property is set
- </summary>
- <returns>true if License property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeLicensesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeLicensesResult.License">
- <summary>
- Gets and sets the License property.
- Specifies active licenses in use and attached
- to an Amazon EC2 instance.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInstancesRequest">
- <summary>
- Returns information about instances that you own.
-
- If you specify one or more instance IDs, Amazon EC2 returns
- information for those instances.
-
- If you do not specify instance IDs, Amazon EC2 returns information
- for all relevant instances. If you
- specify an invalid instance ID, a fault is returned.
-
- If you specify an instance that you do not own, it will not be
- included in the returned results.
-
- Recently terminated instances might appear in the returned results.This
- interval is usually less than one hour.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesRequest.WithInstanceId(System.String[])">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="list">Instance IDs to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with
- the specified Instances.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstancesRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstancesRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance IDs to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstancesRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with
- the specified Instances.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeInstanceAttributeResult">
- <summary>
- Information about the instance attribute.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeResult.IsSetInstanceAttribute">
- <summary>
- Checks if InstanceAttribute property is set
- </summary>
- <returns>true if InstanceAttribute property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeInstanceAttributeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeInstanceAttributeResult.InstanceAttribute">
- <summary>
- Gets and sets the InstanceAttribute property.
- List of instance attributes.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeImagesResult">
- <summary>
- Describe Images Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesResult.IsSetImage">
- <summary>
- Checks if Image property is set
- </summary>
- <returns>true if Image property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImagesResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImagesResult.Image">
- <summary>
- Gets and sets the Image property.
- List of AMIs
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeDhcpOptionsResult">
- <summary>
- Describe Dhcp Options Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsResult.IsSetDhcpOptions">
- <summary>
- Checks if DhcpOptions property is set
- </summary>
- <returns>true if DhcpOptions property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeDhcpOptionsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeDhcpOptionsResult.DhcpOptions">
- <summary>
- Gets and sets the DhcpOptions property.
- List of DHCP options
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVpcResponse">
- <summary>
- Delete Vpc Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpcResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpcResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpcResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVpcResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSubnetResponse">
- <summary>
- Delete Subnet Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSubnetResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSubnetResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSubnetResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSubnetResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateVolumeResponse">
- <summary>
- Create Volume Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeResponse.IsSetCreateVolumeResult">
- <summary>
- Checks if CreateVolumeResult property is set
- </summary>
- <returns>true if CreateVolumeResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateVolumeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumeResponse.CreateVolumeResult">
- <summary>
- Gets and sets the CreateVolumeResult property.
- Create Volume Result
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateVolumeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSubnetRequest">
- <summary>
- Creates a subnet in an existing VPC. You can create up to 20 subnets in a VPC. If
- you add more than one subnet to a VPC, they're set up in a star topology with a
- logical router in the middle. If you feel you need more than 20 subnets, you can
- request more by going to http://aws.amazon.com/contact-us/vpc-request/.
-
- When you create each subnet, you provide the VPC ID and the CIDR block you
- want for the subnet. Once you create a subnet, you can't change its CIDR block.
- The subnet's CIDR block can be the same as the VPC's CIDR block (assuming you
- want only a single subnet in the VPC), or a subset of the VPC's CIDR block. If you
- create more than one subnet in a VPC, the subnets' CIDR blocks must not overlap.
- The smallest subnet (and VPC) you can create uses a /28 netmask (16 IP
- addresses), and the largest uses a /18 netmask (16,384 IP addresses).
-
- *Important*
-
- AWS reserves both the first four and the last IP address in each subnet's CIDR block.
- They're not available for use.
-
- AWS might delete any subnet you create with this operation if you leave it inactive
- for an extended period of time (inactive means that there are no running Amazon
- EC2 instances in the subnet).
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC where you want to create the
- subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetRequest.WithCidrBlock(System.String)">
- <summary>
- Sets the CidrBlock property
- </summary>
- <param name="cidrBlock">The CIDR block you want the subnet to cover.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetRequest.IsSetCidrBlock">
- <summary>
- Checks if CidrBlock property is set
- </summary>
- <returns>true if CidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone you want the subnet in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSubnetRequest.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSubnetRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC where you want to create the
- subnet.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSubnetRequest.CidrBlock">
- <summary>
- Gets and sets the CidrBlock property.
- The CIDR block you want the subnet to cover.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSubnetRequest.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone you want the subnet in.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSecurityGroupResult">
- <summary>
- CreateSecurityGroup Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupResult.IsSetGroupId">
- <summary>
- Checks if GroupId property is set
- </summary>
- <returns>true if GroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSecurityGroupResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSecurityGroupResult.GroupId">
- <summary>
- Gets and sets the GroupId property.
- ID that AWS assigns to the security group.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateNetworkAclEntryRequest">
- <summary>
- Creates an entry (i.e., rule) in a network ACL with a rule number you specify. Each network ACL has a
- set of numbered ingress rules and a separate set of numbered egress rules. When determining whether
- a packet should be allowed in or out of a subnet associated with the ACL, Amazon VPC processes the
- entries in the ACL according to the rule numbers, in ascending order.
-
- We recommend that you leave room between the rules (e.g., 100, 110, 120, etc.), and not number
- them sequentially (101, 102, 103, etc.). This allows you to easily add a new rule between existing
- ones without having to renumber the rules.
-
- After you add an entry, you can't modify it; you must either replace it, or create a new entry and delete
- the old one.
-
- For more information about network ACLs, go to Network ACLs in the Amazon Virtual Private Cloud User
- Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithNetworkAclId(System.String)">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="networkAclId">ID of the ACL where the entry will be created.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithRuleNumber(System.Decimal)">
- <summary>
- Sets the RuleNumber property
- </summary>
- <param name="ruleNumber">Rule number to assign to the entry (e.g., 100). ACL
- entries are processed in ascending order by rule
- number.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetRuleNumber">
- <summary>
- Checks if RuleNumber property is set
- </summary>
- <returns>true if RuleNumber property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithProtocol(System.String)">
- <summary>
- Sets the Protocol property
- </summary>
- <param name="protocol">IP protocol the rule applies to.
-
- Valid Values: 6 for tcp | 17 for udp | 1 for icmp or an IP protocol number.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetProtocol">
- <summary>
- Checks if Protocol property is set
- </summary>
- <returns>true if Protocol property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithRuleAction(System.String)">
- <summary>
- Sets the RuleAction property
- </summary>
- <param name="ruleAction">Whether to allow or deny traffic that matches the rule.
-
- Valid Values: allow | deny</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetRuleAction">
- <summary>
- Checks if RuleAction property is set
- </summary>
- <returns>true if RuleAction property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithEgress(System.Boolean)">
- <summary>
- Sets the Egress property
- </summary>
- <param name="egress">Whether this rule applies to egress traffic from the
- subnet (true) or ingress traffic to the subnet (false).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetEgress">
- <summary>
- Checks if Egress property is set
- </summary>
- <returns>true if Egress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithCidrBlock(System.String)">
- <summary>
- Sets the CidrBlock property
- </summary>
- <param name="cidrBlock">The CIDR range to allow or deny, in CIDR notation
- (e.g., 172.16.0.0/24).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetCidrBlock">
- <summary>
- Checks if CidrBlock property is set
- </summary>
- <returns>true if CidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithIcmp(Amazon.EC2.Model.Icmp)">
- <summary>
- Sets the Icmp property
- </summary>
- <param name="icmp">For the ICMP protocol, this is the ICMP type and code.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetIcmp">
- <summary>
- Checks if Icmp property is set
- </summary>
- <returns>true if Icmp property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.WithPortRange(Amazon.EC2.Model.PortRange)">
- <summary>
- Sets the PortRange property
- </summary>
- <param name="portRange">For the TCP or UDP protocols, the range of ports the rule applies to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateNetworkAclEntryRequest.IsSetPortRange">
- <summary>
- Checks if PortRange property is set
- </summary>
- <returns>true if PortRange property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- ID of the ACL where the entry will be created.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.RuleNumber">
- <summary>
- Gets and sets the RuleNumber property.
- Rule number to assign to the entry (e.g., 100). ACL
- entries are processed in ascending order by rule
- number.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.Protocol">
- <summary>
- Gets and sets the Protocol property.
- IP protocol the rule applies to.
-
- Valid Values: 6 for tcp | 17 for udp | 1 for icmp or an IP protocol number.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.RuleAction">
- <summary>
- Gets and sets the RuleAction property.
- Whether to allow or deny traffic that matches the rule.
-
- Valid Values: allow | deny
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.Egress">
- <summary>
- Gets and sets the Egress property.
- Whether this rule applies to egress traffic from the
- subnet (true) or ingress traffic to the subnet (false).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.CidrBlock">
- <summary>
- Gets and sets the CidrBlock property.
- The CIDR range to allow or deny, in CIDR notation
- (e.g., 172.16.0.0/24).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.Icmp">
- <summary>
- Gets and sets the Icmp property.
- For the ICMP protocol, this is the ICMP type and code.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateNetworkAclEntryRequest.PortRange">
- <summary>
- Gets and sets the PortRange property.
- For the TCP or UDP protocols, the range of ports the rule applies to.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateImageResult">
- <summary>
- Information about the created image.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageResult.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateImageResult.ImageId">
- <summary>
- Gets and sets the ImageId property.
- The ID of the AMI.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.BundleInstanceResult">
- <summary>
- Bundle Instance Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceResult.IsSetBundleTask">
- <summary>
- Checks if BundleTask property is set
- </summary>
- <returns>true if BundleTask property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BundleInstanceResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.BundleInstanceResult.BundleTask">
- <summary>
- Gets and sets the BundleTask property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AttachVolumeResult">
- <summary>
- Attach Volume Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeResult.IsSetAttachment">
- <summary>
- Checks if Attachment property is set
- </summary>
- <returns>true if Attachment property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AttachVolumeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AttachVolumeResult.Attachment">
- <summary>
- Gets and sets the Attachment property.
- Volume Attachment
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateDhcpOptionsRequest">
- <summary>
- Associates a set of DHCP options (that you've previously created) with the
- specified VPC. Or, associates the default DHCP options with the
- VPC. The default set consists of the standard EC2 host name, no domain name, no
- DNS server, no NTP server, and no NetBIOS server or node type.
-
- After you associate the options with the VPC, any existing instances
- and all new instances that you launch in that VPC use the options. For more
- information about the supported DHCP options and using them with
- Amazon VPC, go to Using DHCP Options in the Amazon Virtual Private Cloud
- Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateDhcpOptionsRequest.WithDhcpOptionsId(System.String)">
- <summary>
- Sets the DhcpOptionsId property
- </summary>
- <param name="dhcpOptionsId">The ID of the DHCP options you want to associate with the VPC, or
- "default" if you want to associate the default DHCP options with the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateDhcpOptionsRequest.IsSetDhcpOptionsId">
- <summary>
- Checks if DhcpOptionsId property is set
- </summary>
- <returns>true if DhcpOptionsId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateDhcpOptionsRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC you want to associate the DHCP options with.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateDhcpOptionsRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateDhcpOptionsRequest.DhcpOptionsId">
- <summary>
- Gets and sets the DhcpOptionsId property.
- The ID of the DHCP options you want to associate with the VPC, or
- "default" if you want to associate the default DHCP options with the VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateDhcpOptionsRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC you want to associate the DHCP options with.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AllocateAddressResponse">
- <summary>
- Allocate Address Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResponse.IsSetAllocateAddressResult">
- <summary>
- Checks if AllocateAddressResult property is set
- </summary>
- <returns>true if AllocateAddressResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AllocateAddressResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AllocateAddressResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AllocateAddressResponse.AllocateAddressResult">
- <summary>
- Gets and sets the AllocateAddressResult property.
- Allocate Address Result
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.SetAlarmStateResponse">
- <summary>
- Returns information about the SetAlarmState response metadata.
- The SetAlarmState operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.InvalidParameterValueException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.InvalidParameterValueException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidParameterValueException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudWatch.Model.EnableAlarmActionsResponse">
- <summary>
- Returns information about the EnableAlarmActions response metadata.
- The EnableAlarmActions operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmsRequest">
- <summary>
- Container for the parameters to the DescribeAlarms operation.
- <para> Retrieves alarms with the specified names. If no name is
- specified, all alarms for the user are returned. Alarms can be
- retrieved by using only a prefix for the alarm name, the alarm state,
- or a prefix for any action. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.DescribeAlarms(Amazon.CloudWatch.Model.DescribeAlarmsRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsRequest.WithAlarmNames(System.String[])">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsRequest.WithAlarmNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AlarmNames collection
- </summary>
- <param name="alarmNames">The values to add to the AlarmNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsRequest.WithAlarmNamePrefix(System.String)">
- <summary>
- Sets the AlarmNamePrefix property
- </summary>
- <param name="alarmNamePrefix">The value to set for the AlarmNamePrefix property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsRequest.WithStateValue(System.String)">
- <summary>
- Sets the StateValue property
- </summary>
- <param name="stateValue">The value to set for the StateValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsRequest.WithActionPrefix(System.String)">
- <summary>
- Sets the ActionPrefix property
- </summary>
- <param name="actionPrefix">The value to set for the ActionPrefix property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsRequest.AlarmNames">
- <summary>
- A list of alarm names to retrieve information for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsRequest.AlarmNamePrefix">
- <summary>
- The alarm name prefix. <c>AlarmNames</c> cannot be specified if this parameter is specified.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsRequest.StateValue">
- <summary>
- The state value to be used in matching alarms.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>OK, ALARM, INSUFFICIENT_DATA</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsRequest.ActionPrefix">
- <summary>
- The action name prefix.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsRequest.MaxRecords">
- <summary>
- The maximum number of alarm descriptions to retrieve.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsRequest.NextToken">
- <summary>
- The token returned by a previous call to indicate that there is more data available.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmsForMetricResult">
- <summary>
- <para> The output for the DescribeAlarmsForMetric action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricResult.WithMetricAlarms(Amazon.CloudWatch.Model.MetricAlarm[])">
- <summary>
- Adds elements to the MetricAlarms collection
- </summary>
- <param name="metricAlarms">The values to add to the MetricAlarms collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmsForMetricResult.WithMetricAlarms(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.MetricAlarm})">
- <summary>
- Adds elements to the MetricAlarms collection
- </summary>
- <param name="metricAlarms">The values to add to the MetricAlarms collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmsForMetricResult.MetricAlarms">
- <summary>
- A list of information for each alarm with the specified metric.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest">
- <summary>
- Container for the parameters to the DescribeAlarmHistory operation.
- <para> Retrieves history for the specified alarm. Filter alarms by
- date range or item type. If an alarm name is not specified, Amazon
- CloudWatch returns histories for all of the owner's alarms. </para>
- <para><b>NOTE:</b> Amazon CloudWatch retains the history of an alarm
- for two weeks, whether or not you delete the alarm. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.DescribeAlarmHistory(Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.WithAlarmName(System.String)">
- <summary>
- Sets the AlarmName property
- </summary>
- <param name="alarmName">The value to set for the AlarmName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.WithHistoryItemType(System.String)">
- <summary>
- Sets the HistoryItemType property
- </summary>
- <param name="historyItemType">The value to set for the HistoryItemType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.WithStartDate(System.DateTime)">
- <summary>
- Sets the StartDate property
- </summary>
- <param name="startDate">The value to set for the StartDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.WithEndDate(System.DateTime)">
- <summary>
- Sets the EndDate property
- </summary>
- <param name="endDate">The value to set for the EndDate property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.AlarmName">
- <summary>
- The name of the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.HistoryItemType">
- <summary>
- The type of alarm histories to retrieve.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>ConfigurationUpdate, StateUpdate, Action</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.StartDate">
- <summary>
- The starting date to retrieve alarm history.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.EndDate">
- <summary>
- The ending date to retrieve alarm history.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.MaxRecords">
- <summary>
- The maximum number of alarm history records to retrieve.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.DescribeAlarmHistoryRequest.NextToken">
- <summary>
- The token returned by a previous call to indicate that there is more data available.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.SetStreamingDistributionConfigResponse">
- <summary>
- The SetStreamingDistributionConfigResponse contains the distribution's modified
- information structure along with any other headers returned by
- CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetStreamingDistributionConfigResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Distribution's ETag is also set if
- possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.ListOriginAccessIdentitiesResponse">
- <summary>
- The ListOriginAccessIdentitiesResponse contains the ListOriginAccessIdentitiesResult and
- any headers or metadata returned by CloudFront.
- </summary>
- <seealso href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/ListOAIs.html">
- Amazon CloudFront Get Origin Access Identity List</seealso>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListOriginAccessIdentitiesResponse.OriginAccessIdentities">
- <summary>
- Gets the List of Origin Access Identities returned by CloudFront
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListOriginAccessIdentitiesResponse.Marker">
- <summary>
- Gets and sets the Marker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListOriginAccessIdentitiesResponse.MaxItems">
- <summary>
- Gets and sets the MaxItems property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListOriginAccessIdentitiesResponse.NextMarker">
- <summary>
- Gets and sets the NextMarker property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.ListOriginAccessIdentitiesResponse.IsTruncated">
- <summary>
- Gets and sets the IsTruncated property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetStreamingDistributionConfigResponse">
- <summary>
- The GetStreamingDistributionConfigResponse contains the StreamingDistribution's configuration
- and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetStreamingDistributionConfigResponse.StreamingDistributionConfig">
- <summary>
- Gets and Sets the StreamingDistributionConfig property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetStreamingDistributionConfigResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Streaming Distribution's Configuration ETag is also
- set if possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.DeleteStreamingDistributionRequest">
- <summary>
- The DeleteStreamingDistributionRequest contains the parameters used for the DeleteStreamingDistribution operation.
- <br />Required Parameters: Id
- <br />Required Parameters: ETag
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.DeleteStreamingDistributionRequest.WithId(System.String)">
- <summary>
- Sets the Id property of this request to the value passed in.
- </summary>
- <param name="id">The StreamingDistribution's id</param>
- <returns>The request with the Id property set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.DeleteStreamingDistributionRequest.WithETag(System.String)">
- <summary>
- Sets the ETag property of this request to the value passed in.
- </summary>
- <param name="etag">The StreamingDistribution's etag</param>
- <returns>The request with the ETag property set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.DeleteStreamingDistributionRequest.Id">
- <summary>
- Gets and sets the Id property for the StreamingDistribution
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.DeleteStreamingDistributionRequest.ETag">
- <summary>
- Gets and sets the ETag property for the StreamingDistribution
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ValidationErrorException">
- <summary>
- AmazonCloudFormation exception
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ValidationErrorException.#ctor(System.String)">
- <summary>
- Constructs a new ValidationErrorException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ValidateTemplateRequest">
- <summary>
- Container for the parameters to the ValidateTemplate operation.
- <para> Validates a specified template. </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.ValidateTemplate(Amazon.CloudFormation.Model.ValidateTemplateRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ValidateTemplateRequest.WithTemplateBody(System.String)">
- <summary>
- Sets the TemplateBody property
- </summary>
- <param name="templateBody">The value to set for the TemplateBody property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ValidateTemplateRequest.WithTemplateURL(System.String)">
- <summary>
- Sets the TemplateURL property
- </summary>
- <param name="templateURL">The value to set for the TemplateURL property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ValidateTemplateRequest.TemplateBody">
- <summary>
- String containing the template body. (For more information, go to the <a
- href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS CloudFormation User Guide</a>.) Conditional: You must pass
- <c>TemplateURL</c> or <c>TemplateBody</c>. If both are passed, only <c>TemplateBody</c> is used.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.ValidateTemplateRequest.TemplateURL">
- <summary>
- Location of file containing the template body. The URL must point to a template located in an S3 bucket in the same region as the stack. For
- more information, go to the <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS CloudFormation User
- Guide</a>. Conditional: You must pass <c>TemplateURL</c> or <c>TemplateBody</c>. If both are passed, only <c>TemplateBody</c> is used.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackResourceRequestMarshaller">
- <summary>
- Describe Stack Resource Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackEventsRequestMarshaller">
- <summary>
- Describe Stack Events Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.CreateStackRequest">
- <summary>
- Container for the parameters to the CreateStack operation.
- <para> Creates a stack as specified in the template. After the call completes successfully, the stack creation starts. You can check the
- status of the stack via the DescribeStacks API. </para> <para><b>NOTE:</b> Currently, the limit for stacks is 20 stacks per account per
- region. </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.CreateStack(Amazon.CloudFormation.Model.CreateStackRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithStackName(System.String)">
- <summary>
- Sets the StackName property
- </summary>
- <param name="stackName">The value to set for the StackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithTemplateBody(System.String)">
- <summary>
- Sets the TemplateBody property
- </summary>
- <param name="templateBody">The value to set for the TemplateBody property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithTemplateURL(System.String)">
- <summary>
- Sets the TemplateURL property
- </summary>
- <param name="templateURL">The value to set for the TemplateURL property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithParameters(Amazon.CloudFormation.Model.Parameter[])">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithParameters(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.Parameter})">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithDisableRollback(System.Boolean)">
- <summary>
- Sets the DisableRollback property
- </summary>
- <param name="disableRollback">The value to set for the DisableRollback property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithTimeoutInMinutes(System.Int32)">
- <summary>
- Sets the TimeoutInMinutes property
- </summary>
- <param name="timeoutInMinutes">The value to set for the TimeoutInMinutes property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithNotificationARNs(System.String[])">
- <summary>
- Adds elements to the NotificationARNs collection
- </summary>
- <param name="notificationARNs">The values to add to the NotificationARNs collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.CreateStackRequest.WithNotificationARNs(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the NotificationARNs collection
- </summary>
- <param name="notificationARNs">The values to add to the NotificationARNs collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.StackName">
- <summary>
- The name associated with the stack. The name must be unique within your AWS account. <note> Must contain only alphanumeric characters (case
- sensitive) and start with an alpha character. Maximum length of the name is 255 characters. </note>
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.TemplateBody">
- <summary>
- Structure containing the template body. (For more information, go to the <a
- href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS CloudFormation User Guide</a>.) Condition: You must pass
- <c>TemplateBody</c> or <c>TemplateURL</c>. If both are passed, only <c>TemplateBody</c> is used.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.TemplateURL">
- <summary>
- Location of file containing the template body. The URL must point to a template located in an S3 bucket in the same region as the stack. For
- more information, go to the <a href="http://docs.amazonwebservices.com/AWSCloudFormation/latest/UserGuide">AWS CloudFormation User
- Guide</a>. Conditional: You must pass <c>TemplateURL</c> or <c>TemplateBody</c>. If both are passed, only <c>TemplateBody</c> is used.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.Parameters">
- <summary>
- A list of <c>Parameter</c> structures.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.DisableRollback">
- <summary>
- Boolean to enable or disable rollback on stack creation failures.<br></br> Default: <c>false</c>
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.TimeoutInMinutes">
- <summary>
- The amount of time that can pass before the stack status becomes CREATE_FAILED; if <c>DisableRollback</c> is not set or is set to
- <c>false</c>, the stack will be rolled back.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.CreateStackRequest.NotificationARNs">
- <summary>
- The Simple Notification Service (SNS) topic ARNs to publish stack related events. You can find your SNS topic ARNs using the <a
- href="http://console.aws.amazon.com/sns">SNS console</a> or your Command Line Interface (CLI).
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScheduledActionsResultUnmarshaller">
- <summary>
- DescribeScheduledActionsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScalingProcessTypesResultUnmarshaller">
- <summary>
- DescribeScalingProcessTypesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribePoliciesResultUnmarshaller">
- <summary>
- DescribePoliciesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeMetricCollectionTypesResultUnmarshaller">
- <summary>
- DescribeMetricCollectionTypesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeletePolicyRequestMarshaller">
- <summary>
- Delete Policy Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DeleteNotificationConfigurationResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteNotificationConfiguration operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.CreateAutoScalingGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateAutoScalingGroup operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.PutNotificationConfigurationResponse">
- <summary>
- Returns information about the PutNotificationConfiguration response metadata.
- The PutNotificationConfiguration operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest">
- <summary>
- Container for the parameters to the DeleteNotificationConfiguration operation.
- <para>Deletes notifications created by PutNotificationConfiguration.</para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteNotificationConfiguration(Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest.WithTopicARN(System.String)">
- <summary>
- Sets the TopicARN property
- </summary>
- <param name="topicARN">The value to set for the TopicARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DeleteNotificationConfigurationRequest.TopicARN">
- <summary>
- The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.CreateLaunchConfigurationResponse">
- <summary>
- Returns information about the CreateLaunchConfiguration response metadata.
- The CreateLaunchConfiguration operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers">
- <summary>
- The available AWS access control policy actions for AWS CloudFormation.
- </summary>
- <see cref="P:Amazon.Auth.AccessControlPolicy.Statement.Actions"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.AllCloudFormationActions">
- <summary>
- Represents any action being taken on AWS CloudFormation.
- </summary>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.CreateStack">
- <summary>
- Action for creating a stack as specified in the template.
- </summary>
- <see cref="T:Amazon.CloudFormation.Model.CreateStackRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.DeleteStack">
- <summary>
- Action for deleting a stack.
- </summary>
- <see cref="T:Amazon.CloudFormation.Model.DeleteStackRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.DescribeStacks">
- <summary>
- Action for describing stacks.
- </summary>
- <see cref="T:Amazon.CloudFormation.Model.DescribeStacksRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.DescribeStackEvents">
- <summary>
- Action for describing stack events.
- </summary>
- <see cref="T:Amazon.CloudFormation.Model.DescribeStackEventsRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.DescribeStackResources">
- <summary>
- Action for describing stack resources.
- </summary>
- <see cref="T:Amazon.CloudFormation.Model.DescribeStackResourcesRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.GetTemplate">
- <summary>
- Action for getting the template body for a specified stack name.
- </summary>
- <see cref="T:Amazon.CloudFormation.Model.GetTemplateRequest"/>
- </member>
- <member name="F:Amazon.Auth.AccessControlPolicy.ActionIdentifiers.CloudFormationActionIdentifers.ValidateTemplate">
- <summary>
- Action for validating a specified template.
- </summary>
- <see cref="T:Amazon.CloudFormation.Model.ValidateTemplateRequest"/>
- </member>
- <member name="T:Amazon.SimpleNotificationService.Model.RemovePermissionResponse">
- <summary>
- Encapsulates the metadata and result of the RemovePermission action.
- </summary>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.RemovePermissionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.RemovePermissionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SimpleNotificationService.Model.RemovePermissionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SimpleNotificationService.Model.RemovePermissionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- The Metadata used to identify the service request uniquely.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.SendRawEmailResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SendRawEmail operation
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.SendRawEmailRequestMarshaller">
- <summary>
- Send Raw Email Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.SendEmailResultUnmarshaller">
- <summary>
- SendEmailResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.SendRawEmailRequest">
- <summary>
- Container for the parameters to the SendRawEmail operation.
- <para>Sends an email message, with header and content specified by the
- client. The <c>SendRawEmail</c> action is useful for sending multipart
- MIME emails, with attachments or inline content.</para> <para>The raw
- text of the message must comply with Internet email standards;
- otherwise, the message cannot be sent. For more information, go to
- the Amazon SES Developer Guide.</para>
- </summary>
- <seealso cref="M:Amazon.SimpleEmail.AmazonSimpleEmailService.SendRawEmail(Amazon.SimpleEmail.Model.SendRawEmailRequest)"/>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendRawEmailRequest.#ctor">
- <summary>
- Default constructor for a new SendRawEmailRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendRawEmailRequest.#ctor(Amazon.SimpleEmail.Model.RawMessage)">
- <summary>
- Constructs a new SendRawEmailRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="rawMessage"> The raw text of the message. The client is responsible for ensuring the following: <ul> <li>Message must contain a
- header and a body, separated by a blank line.</li> <li>All required header fields must be present.</li> <li>Each part of a multipart MIME
- message must be formatted properly.</li> <li>MIME content types must be among those supported by Amazon SES. Refer to the <a
- href="http://docs.amazonwebservices.com/ses/latest/DeveloperGuide">Amazon SES Developer Guide</a> for more details.</li> <li>Content must be
- base64-encoded, if MIME requires it.</li> </ul> </param>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendRawEmailRequest.WithSource(System.String)">
- <summary>
- Sets the Source property
- </summary>
- <param name="source">The value to set for the Source property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendRawEmailRequest.WithDestinations(System.String[])">
- <summary>
- Adds elements to the Destinations collection
- </summary>
- <param name="destinations">The values to add to the Destinations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendRawEmailRequest.WithDestinations(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the Destinations collection
- </summary>
- <param name="destinations">The values to add to the Destinations collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendRawEmailRequest.WithRawMessage(Amazon.SimpleEmail.Model.RawMessage)">
- <summary>
- Sets the RawMessage property
- </summary>
- <param name="rawMessage">The value to set for the RawMessage property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendRawEmailRequest.Source">
- <summary>
- The sender's email address.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendRawEmailRequest.Destinations">
- <summary>
- A list of destinations for the message.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendRawEmailRequest.RawMessage">
- <summary>
- The raw text of the message. The client is responsible for ensuring the following: <ul> <li>Message must contain a header and a body,
- separated by a blank line.</li> <li>All required header fields must be present.</li> <li>Each part of a multipart MIME message must be
- formatted properly.</li> <li>MIME content types must be among those supported by Amazon SES. Refer to the <a
- href="http://docs.amazonwebservices.com/ses/latest/DeveloperGuide">Amazon SES Developer Guide</a> for more details.</li> <li>Content must be
- base64-encoded, if MIME requires it.</li> </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.SendDataPoint">
- <summary>
- <para>Represents sending statistics data. Each <c>SendDataPoint</c>
- contains statistics for a 15-minute period of sending activity.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendDataPoint.WithTimestamp(System.DateTime)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The value to set for the Timestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendDataPoint.WithDeliveryAttempts(System.Int64)">
- <summary>
- Sets the DeliveryAttempts property
- </summary>
- <param name="deliveryAttempts">The value to set for the DeliveryAttempts property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendDataPoint.WithBounces(System.Int64)">
- <summary>
- Sets the Bounces property
- </summary>
- <param name="bounces">The value to set for the Bounces property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendDataPoint.WithComplaints(System.Int64)">
- <summary>
- Sets the Complaints property
- </summary>
- <param name="complaints">The value to set for the Complaints property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.SendDataPoint.WithRejects(System.Int64)">
- <summary>
- Sets the Rejects property
- </summary>
- <param name="rejects">The value to set for the Rejects property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendDataPoint.Timestamp">
- <summary>
- Time of the data point.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendDataPoint.DeliveryAttempts">
- <summary>
- Number of emails that have been enqueued for sending.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendDataPoint.Bounces">
- <summary>
- Number of emails that have bounced.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendDataPoint.Complaints">
- <summary>
- Number of unwanted emails that were rejected by recipients.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendDataPoint.Rejects">
- <summary>
- Number of emails rejected by Amazon SES.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.MessageRejectedException">
- <summary>
- AmazonSimpleEmailService exception
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.MessageRejectedException.#ctor(System.String)">
- <summary>
- Constructs a new MessageRejectedException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.SimpleDB.Model.ReplaceableAttribute">
- <summary>
- An attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableAttribute.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">Name of attribute associated with an item. Allowed characters are all UTF-8 characters valid
- in XML documents. Control characters and any sequences that are not valid in XML are not allowed. These
- strings can be up to 1024 bytes long.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableAttribute.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableAttribute.WithValue(System.String)">
- <summary>
- Sets the Value property
- </summary>
- <param name="value">Value of the attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items. Allowed characters are all UTF-8 characters valid in
- XML documents. Control characters and any sequences that are not valid in XML are not allowed. These strings
- can be up to 1024 bytes long.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableAttribute.IsSetValue">
- <summary>
- Checks if Value property is set
- </summary>
- <returns>true if Value property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableAttribute.WithReplace(System.Boolean)">
- <summary>
- Sets the Replace property
- </summary>
- <param name="replace">Replace property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ReplaceableAttribute.IsSetReplace">
- <summary>
- Checks if Replace property is set
- </summary>
- <returns>true if Replace property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ReplaceableAttribute.Name">
- <summary>
- Gets and sets the Name property.
- Name of attribute associated with an item. Allowed characters are all UTF-8 characters valid
- in XML documents. Control characters and any sequences that are not valid in XML are not allowed. These
- strings can be up to 1024 bytes long.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ReplaceableAttribute.Value">
- <summary>
- Gets and sets the Value property.
- Value of the attribute associated with an item. Similar to columns on a spreadsheet, attributes represent
- categories of data that can be assigned to items. Allowed characters are all UTF-8 characters valid in
- XML documents. Control characters and any sequences that are not valid in XML are not allowed. These strings
- can be up to 1024 bytes long.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ReplaceableAttribute.Replace">
- <summary>
- Gets and sets the Replace property.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.GetAttributesResponse">
- <summary>
- Returns all of the attributes associated with the item. Optionally, the attributes returned can
- be limited to one or more specified attribute name parameters. If the item does not exist on the
- replica that was accessed for this operation, an empty set is returned. The system does not return
- an error as it cannot guarantee the item does not exist on other replicas.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesResponse.WithGetAttributesResult(Amazon.SimpleDB.Model.GetAttributesResult)">
- <summary>
- Sets the GetAttributesResult property
- </summary>
- <param name="getAttributesResult">Returns all of the attributes associated with the item. Optionally, the attributes returned can
- be limited to one or more specified attribute name parameters. If the item does not exist on the
- replica that was accessed for this operation, an empty set is returned. The system does not return
- an error as it cannot guarantee the item does not exist on other replicas.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesResponse.IsSetGetAttributesResult">
- <summary>
- Checks if GetAttributesResult property is set
- </summary>
- <returns>true if GetAttributesResult property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesResponse.WithResponseMetadata(Amazon.SimpleDB.Model.ResponseMetadata)">
- <summary>
- Sets the ResponseMetadata property
- </summary>
- <param name="responseMetadata">Information about the request provided by Amazon SimpleDB.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.GetAttributesResponse.ToXML">
- <summary>
- XML Representation for this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.GetAttributesResponse.GetAttributesResult">
- <summary>
- Gets and sets the GetAttributesResult property.
- Returns all of the attributes associated with the item. Optionally, the attributes returned can
- be limited to one or more specified attribute name parameters. If the item does not exist on the
- replica that was accessed for this operation, an empty set is returned. The system does not return
- an error as it cannot guarantee the item does not exist on other replicas.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.GetAttributesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.DomainMetadataRequest">
- <summary>
- Returns information about the domain, including when the domain was created, the number of items and
- attributes, and the size of attribute names and values.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain for which to display metadata.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.DomainMetadataRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.DomainMetadataRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain for which to display metadata.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.CreateDomainRequest">
- <summary>
- Creates a new domain. The domain name must be unique among the domains associated with the account used in the request.
- The operation might take 10 or more seconds to complete. Creating a domain is an idempotent operation; running it
- multiple times using the same domain name will not result in an error response. You can create up to 100 domains
- per account. If you require additional domains, go to http://aws.amazon.com/contact-us/simpledb-limit-request/.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.CreateDomainRequest.WithDomainName(System.String)">
- <summary>
- Sets the DomainName property
- </summary>
- <param name="domainName">The name of the domain to create. The name can range between 3 and 255 characters
- and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.CreateDomainRequest.IsSetDomainName">
- <summary>
- Checks if DomainName property is set
- </summary>
- <returns>true if DomainName property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.CreateDomainRequest.DomainName">
- <summary>
- Gets and sets the DomainName property.
- The name of the domain to create. The name can range between 3 and 255 characters
- and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.AmazonSimpleDBConfig">
- <summary>
- Configuration for accessing Amazon Simple DB service
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithSignatureMethod(System.String)">
- <summary>
- Sets the SignatureMethod property
- </summary>
- <param name="signatureMethod">SignatureMethod property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetSignatureMethod">
- <summary>
- Checks if SignatureMethod property is set
- </summary>
- <returns>true if SignatureMethod property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithSignatureVersion(System.String)">
- <summary>
- Sets the SignatureVersion property
- </summary>
- <param name="signatureVersion">SignatureVersion property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetSignatureVersion">
- <summary>
- Checks if SignatureVersion property is set
- </summary>
- <returns>true if SignatureVersion property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithUserAgent(System.String)">
- <summary>
- Sets the UserAgent property
- </summary>
- <param name="userAgent">UserAgent property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetUserAgent">
- <summary>
- Checks if UserAgent property is set
- </summary>
- <returns>true if UserAgent property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithServiceURL(System.String)">
- <summary>
- Sets the ServiceURL property
- </summary>
- <param name="serviceURL">ServiceURL property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetServiceURL">
- <summary>
- Checks if ServiceURL property is set
- </summary>
- <returns>true if ServiceURL property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithProxyHost(System.String)">
- <summary>
- Sets the ProxyHost property
- </summary>
- <param name="proxyHost">ProxyHost property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetProxyHost">
- <summary>
- Checks if ProxyHost property is set
- </summary>
- <returns>true if ProxyHost property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithProxyPort(System.Int32)">
- <summary>
- Sets the ProxyPort property
- </summary>
- <param name="proxyPort">ProxyPort property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetProxyPort">
- <summary>
- Checks if ProxyPort property is set
- </summary>
- <returns>true if ProxyPort property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithMaxErrorRetry(System.Int32)">
- <summary>
- Sets the MaxErrorRetry property
- </summary>
- <param name="maxErrorRetry">MaxErrorRetry property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetMaxErrorRetry">
- <summary>
- Checks if MaxErrorRetry property is set
- </summary>
- <returns>true if MaxErrorRetry property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithUseSecureStringForAwsSecretKey(System.Boolean)">
- <summary>
- Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <param name="fSecure">
- Whether a secure string should be used or not.
- </param>
- <returns>The Config object with the property set</returns>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithProxyUsername(System.String)">
- <summary>
- Sets the ProxyUsername property
- </summary>
- <param name="userName">Value for the ProxyUsername property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetProxyUsername">
- <summary>
- Checks if ProxyUsername property is set
- </summary>
- <returns>true if ProxyUsername property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.WithProxyPassword(System.String)">
- <summary>
- Sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- <param name="password">ProxyPassword property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.AmazonSimpleDBConfig.IsSetProxyPassword">
- <summary>
- Checks if ProxyPassword property is set
- </summary>
- <returns>true if ProxyPassword property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.ServiceVersion">
- <summary>
- Gets Service Version
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.SignatureMethod">
- <summary>
- Gets and sets of the signatureMethod property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.SignatureVersion">
- <summary>
- Gets and sets of the SignatureVersion property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.UserAgent">
- <summary>
- Gets and sets of the UserAgent property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.ServiceURL">
- <summary>
- Gets and sets of the ServiceURL property.
- This is an optional property; change it
- only if you want to try a different service
- endpoint or want to switch between https and http.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.ProxyHost">
- <summary>
- Gets and sets of the ProxyHost property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.ProxyPort">
- <summary>
- Gets and sets of the ProxyPort property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.MaxErrorRetry">
- <summary>
- Gets and sets of the MaxErrorRetry property.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.UseSecureStringForAwsSecretKey">
- <summary>
- Gets and Sets the UseSecureStringForAwsSecretKey property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.ProxyUsername">
- <summary>
- Gets and sets the ProxyUsername property.
- Used in conjunction with the ProxyPassword
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.AmazonSimpleDBConfig.ProxyPassword">
- <summary>
- Gets and sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- </member>
- <member name="T:Amazon.S3.Transfer.Internal.SimpleUploadCommand">
- <summary>
- This command is for doing regular PutObject requests.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.UploadPartResponse">
- <summary>
- The UploadPartResponse contains all the information about the
- UploadPart method.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartResponse.PartNumber">
- <summary>
- Gets and sets the part number specified for the part upload. This is needed when
- completing the multipart upload.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartResponse.ETag">
- <summary>
- Gets and sets the Entity tag returned when the part was uploaded. This is needed
- when completing the multipart upload.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.UploadPartResponse.Headers">
- <summary>
- Gets and sets the Headers property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.ListObjectsRequest">
- <summary>
- The ListObjectsRequest contains the parameters used for the ListObjects operation.
- <br />Required Parameters: BucketName
- <br />Optional Parameters: Prefix, Marker, MaxKeys, Delimiter
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the name of the S3 Bucket to list keys from.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set
- </summary>
- <returns>true if BucketName property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.WithPrefix(System.String)">
- <summary>
- Sets the Prefix property for this request.
- All keys matched will have this prefix.
- </summary>
- <param name="prefix">The value that Prefix is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.IsSetPrefix">
- <summary>
- Checks if Prefix property is set
- </summary>
- <returns>true if Prefix property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property for this request.
- All keys returned will be lexiographically after the marker.
- </summary>
- <param name="marker">the value that Marker is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.IsSetMarker">
- <summary>
- Checks if Marker property is set
- </summary>
- <returns>true if Marker property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.WithMaxKeys(System.Int32)">
- <summary>
- Sets the MaxKeys property for this request.
- Limits the result set of keys to MaxKeys.
- </summary>
- <param name="maxKeys">the value that MaxKeys is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.IsSetMaxKeys">
- <summary>
- Checks if MaxKeys property is set
- </summary>
- <returns>true if MaxKeys property is set</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.WithDelimiter(System.String)">
- <summary>
- Sets the Delimiter property for this request.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- These rolled-up keys are not returned elsewhere in the response.
- </summary>
- <param name="delimiter">the value that Delimiter is set to.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.ListObjectsRequest.IsSetDelimiter">
- <summary>
- Checks if Delimiter property is set
- </summary>
- <returns>true if Delimiter property is set</returns>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- This is the name of the S3 Bucket to list keys from.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsRequest.Prefix">
- <summary>
- Gets and sets the Prefix property.
- All keys matched will have this prefix.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsRequest.Marker">
- <summary>
- Gets and sets the Marker property.
- All keys returned will be lexiographically after the marker.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsRequest.MaxKeys">
- <summary>
- Gets and sets the MaxKeys property.
- Limits the result set of keys to MaxKeys.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.ListObjectsRequest.Delimiter">
- <summary>
- Gets and sets the Delimiter property.
- Causes keys that contain the same string between the prefix and the
- first occurrence of the delimiter to be rolled up into a single result
- element in the CommonPrefixes collection.
- </summary>
- <remarks>
- These rolled-up keys are not returned elsewhere in the response.
- </remarks>
- </member>
- <member name="T:Amazon.S3.Model.PartDetail">
- <summary>
- PartDetails is a container for elements related to a particular part. A response can contain
- zero or more Part elements.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PartDetail.PartNumber">
- <summary>
- Gets and sets the part number identifying the part.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PartDetail.LastModified">
- <summary>
- Gets and sets the date and time at which the part was uploaded.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PartDetail.ETag">
- <summary>
- Gets and sets the entity tag returned when the part was uploaded.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.PartDetail.Size">
- <summary>
- Gets and sets the size of the uploaded part data.
- </summary>
- </member>
- <member name="T:Amazon.Runtime.Internal.Transform.UnmarshallerContext">
- <summary>
- Wrap an <c>XmltextReader</c> for simulating an event stream.
-
- Each <c>Read()</c> operation goes either to the next element or next attribute within
- the current element. <c>TestExpression()</c> is used to match the current event
- to an xpath expression. The general pattern looks like this:
- <code>
- UnmarshallerContext context = new UnmarshallerContext(xmlReader);
- while (context.Read())
- {
- if (context.TestExpresion("path/to/element"))
- {
- myObject.stringMember = stringUnmarshaller.GetInstance().Unmarshall(context);
- continue;
- }
- if (context.TestExpression("path/to/@attribute"))
- myObject.MyComplexTypeMember = MyComplexTypeUnmarshaller.GetInstance().Unmarshall(context);
- }
- </code>
- </summary>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.UnmarshallerContext.#ctor(System.Xml.XmlTextReader)">
- <summary>
- Wrap an XmlTextReader with state for event-based parsing of an XML stream.
- </summary>
- <param name="xmlReader"><c>XmlTextReader</c> with the XML from a service response.</param>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.UnmarshallerContext.Read">
- <summary>
- Reads to the next node in the XML document, and updates the context
- accordingly.
- </summary>
- <returns>
- True if a node was read, false if there are no more elements to read./
- </returns>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.UnmarshallerContext.ReadText">
- <summary>
- Returns the text contents of the current element being parsed.
- </summary>
- <returns>
- The text contents of the current element being parsed.
- </returns>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.UnmarshallerContext.TestExpression(System.String)">
- <summary>
- Tests the specified expression against the current position in the XML
- document </summary>
- <param name="expression">
- The pseudo-XPath expression to test.</param>
- <returns>
- True if the expression matches the current position in the document,
- false otherwise.</returns>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.UnmarshallerContext.TestExpression(System.String,System.Int32)">
- <summary>
- Tests the specified expression against the current position in the XML
- document being parsed, and restricts the expression to matching at the
- specified stack depth. </summary>
- <param name="expression">
- The pseudo-XPath expression to test.</param>
- <param name="startingStackDepth">
- The depth in the stack representing where the expression must
- start matching in order for this method to return true. </param>
- <returns>
- True if the specified expression matches the current position in
- the XML document, starting from the specified depth. </returns>
- </member>
- <member name="M:Amazon.Runtime.Internal.Transform.UnmarshallerContext.Reset">
- <summary>
- Rewinds the context to the start of the XML document being parsed.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.Transform.UnmarshallerContext.CurrentDepth">
- <summary>
- Returns the element depth of the parser's current position in the XML
- document being parsed.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.Transform.UnmarshallerContext.NodeType">
- <summary>
- The <c>XmlNodeType</c> of the current event. Will be one of
- <c>Element</c>, <c>EndElement</c>, or <c>Attribute</c> during parsing,
- and <c>None</c> at the start and end.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.Transform.UnmarshallerContext.IsAttribute">
- <summary>
- True if <c>NodeType</c> is <c>Attribute</c>.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.Transform.UnmarshallerContext.IsStartElement">
- <summary>
- True if <c>NodeType</c> is <c>Element</c>.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.Transform.UnmarshallerContext.IsEndElement">
- <summary>
- True if <c>NodeType</c> is <c>EndElement</c>.
- </summary>
- </member>
- <member name="P:Amazon.Runtime.Internal.Transform.UnmarshallerContext.IsStartOfDocument">
- <summary>
- True if the context is at the start of the document.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.ReservedDBInstanceUnmarshaller">
- <summary>
- ReservedDBInstance Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBSnapshotsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeDBSnapshots operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBSecurityGroupResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteDBSecurityGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBInstanceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.ReservedDBInstance">
- <summary>
- <para> This data type is used as a response element in the DescribeReservedDBInstances and PurchaseReservedDBInstancesOffering actions.
- </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithReservedDBInstanceId(System.String)">
- <summary>
- Sets the ReservedDBInstanceId property
- </summary>
- <param name="reservedDBInstanceId">The value to set for the ReservedDBInstanceId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithReservedDBInstancesOfferingId(System.String)">
- <summary>
- Sets the ReservedDBInstancesOfferingId property
- </summary>
- <param name="reservedDBInstancesOfferingId">The value to set for the ReservedDBInstancesOfferingId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithStartTime(System.DateTime)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The value to set for the StartTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithDuration(System.Int32)">
- <summary>
- Sets the Duration property
- </summary>
- <param name="duration">The value to set for the Duration property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithFixedPrice(System.Double)">
- <summary>
- Sets the FixedPrice property
- </summary>
- <param name="fixedPrice">The value to set for the FixedPrice property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithUsagePrice(System.Double)">
- <summary>
- Sets the UsagePrice property
- </summary>
- <param name="usagePrice">The value to set for the UsagePrice property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithCurrencyCode(System.String)">
- <summary>
- Sets the CurrencyCode property
- </summary>
- <param name="currencyCode">The value to set for the CurrencyCode property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithDBInstanceCount(System.Int32)">
- <summary>
- Sets the DBInstanceCount property
- </summary>
- <param name="dBInstanceCount">The value to set for the DBInstanceCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The value to set for the ProductDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithMultiAZ(System.Boolean)">
- <summary>
- Sets the MultiAZ property
- </summary>
- <param name="multiAZ">The value to set for the MultiAZ property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.ReservedDBInstance.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The value to set for the State property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.ReservedDBInstanceId">
- <summary>
- The unique identifier for the reservation.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.ReservedDBInstancesOfferingId">
- <summary>
- The offering identifier.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.DBInstanceClass">
- <summary>
- The DB instance class for the reserved DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.StartTime">
- <summary>
- The time the reservation started.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.Duration">
- <summary>
- The duration of the reservation in seconds.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.FixedPrice">
- <summary>
- The fixed price charged for this reserved DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.UsagePrice">
- <summary>
- The hourly price charged for this reserved DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.CurrencyCode">
- <summary>
- The currency code for the reserved DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.DBInstanceCount">
- <summary>
- The number of reserved DB Instances.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.ProductDescription">
- <summary>
- The description of the reserved DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.MultiAZ">
- <summary>
- Indicates if the reservation applies to Multi-AZ deployments.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ReservedDBInstance.State">
- <summary>
- The state of the reserved DB Instance.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RebootDBInstanceResponse">
- <summary>
- Returns information about the RebootDBInstance response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RebootDBInstanceResponse.RebootDBInstanceResult">
-
- Gets and sets the RebootDBInstanceResult property.
- Contains the result of a successful invocation of the RebootDBInstance
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.OrderableDBInstanceOption">
- <summary>
- <para> Contains a list of available options for a DB Instance </para> <para> This data type is used as a response element in the
- DescribeOrderableDBInstanceOptions action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithEngine(System.String)">
- <summary>
- Sets the Engine property
- </summary>
- <param name="engine">The value to set for the Engine property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithEngineVersion(System.String)">
- <summary>
- Sets the EngineVersion property
- </summary>
- <param name="engineVersion">The value to set for the EngineVersion property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithDBInstanceClass(System.String)">
- <summary>
- Sets the DBInstanceClass property
- </summary>
- <param name="dBInstanceClass">The value to set for the DBInstanceClass property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithLicenseModel(System.String)">
- <summary>
- Sets the LicenseModel property
- </summary>
- <param name="licenseModel">The value to set for the LicenseModel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithAvailabilityZones(Amazon.RDS.Model.AvailabilityZone[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithAvailabilityZones(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.AvailabilityZone})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithMultiAZCapable(System.Boolean)">
- <summary>
- Sets the MultiAZCapable property
- </summary>
- <param name="multiAZCapable">The value to set for the MultiAZCapable property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.OrderableDBInstanceOption.WithReadReplicaCapable(System.Boolean)">
- <summary>
- Sets the ReadReplicaCapable property
- </summary>
- <param name="readReplicaCapable">The value to set for the ReadReplicaCapable property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.OrderableDBInstanceOption.Engine">
- <summary>
- The engine type of the orderable DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.OrderableDBInstanceOption.EngineVersion">
- <summary>
- The engine version of the orderable DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.OrderableDBInstanceOption.DBInstanceClass">
- <summary>
- The DB Instance Class for the orderable DB Instance
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.OrderableDBInstanceOption.LicenseModel">
- <summary>
- The license model for the orderable DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.OrderableDBInstanceOption.AvailabilityZones">
- <summary>
- A list of availability zones for the orderable DB Instance.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.OrderableDBInstanceOption.MultiAZCapable">
- <summary>
- Indicates whether this orderable DB Instance is multi-AZ capable.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.OrderableDBInstanceOption.ReadReplicaCapable">
- <summary>
- Indicates whether this orderable DB Instance can have a read replica.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.EngineDefaults">
- <summary>
- <para> Contains the result of a successful invocation of the DescribeEngineDefaultParameters action. </para>
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.EngineDefaults.WithDBParameterGroupFamily(System.String)">
- <summary>
- Sets the DBParameterGroupFamily property
- </summary>
- <param name="dBParameterGroupFamily">The value to set for the DBParameterGroupFamily property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.EngineDefaults.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.EngineDefaults.WithParameters(Amazon.RDS.Model.Parameter[])">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.EngineDefaults.WithParameters(System.Collections.Generic.IEnumerable{Amazon.RDS.Model.Parameter})">
- <summary>
- Adds elements to the Parameters collection
- </summary>
- <param name="parameters">The values to add to the Parameters collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.EngineDefaults.DBParameterGroupFamily">
- <summary>
- Specifies the name of the DB Parameter Group Family which the engine default parameters apply to.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.EngineDefaults.Marker">
- <summary>
- Provides an identifier to allow retrieval of paginated results.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.EngineDefaults.Parameters">
- <summary>
- Contains a list of engine default parameters.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DescribeEngineDefaultParametersRequest">
- <summary>
- Container for the parameters to the DescribeEngineDefaultParameters operation.
- <para> Returns the default engine and system parameter information for the specified database engine. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DescribeEngineDefaultParameters(Amazon.RDS.Model.DescribeEngineDefaultParametersRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEngineDefaultParametersRequest.WithDBParameterGroupFamily(System.String)">
- <summary>
- Sets the DBParameterGroupFamily property
- </summary>
- <param name="dBParameterGroupFamily">The value to set for the DBParameterGroupFamily property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEngineDefaultParametersRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.DescribeEngineDefaultParametersRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEngineDefaultParametersRequest.DBParameterGroupFamily">
- <summary>
- The name of the DB Parameter Group Family.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEngineDefaultParametersRequest.MaxRecords">
- <summary>
- The maximum number of records to include in the response. If more records exist than the specified <c>MaxRecords</c> value, a marker is
- included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeEngineDefaultParametersRequest.Marker">
- <summary>
- An optional marker provided in the previous DescribeDBInstances request. If this parameter is specified, the response includes only records
- beyond the marker, up to the value specified by <c>MaxRecords</c>.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBSnapshotResult">
- <summary>
- The results from the DeleteDBSnapshot action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBSnapshotResult.DBSnapshot">
-
- Gets and sets the DeleteDBSnapshotResult property.
- Contains the result of a successful invocation of the DeleteDBSnapshot
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBParameterGroupRequest">
- <summary>
- Container for the parameters to the DeleteDBParameterGroup operation.
- <para> Deletes a specified DBParameterGroup. The DBParameterGroup cannot be associated with any RDS instances to be deleted. </para>
- <para><b>NOTE:</b> The specified database parameter group cannot be associated with any DB Instances. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DeleteDBParameterGroup(Amazon.RDS.Model.DeleteDBParameterGroupRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DeleteDBParameterGroupRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBParameterGroupRequest.DBParameterGroupName">
- <summary>
- The name of the DB Parameter Group. Constraints: <ul> <li>Must be the name of an existing DB Parameter Group</li> <li>You cannot delete a
- default DB Parameter Group</li> </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DBSnapshotAlreadyExistsException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBSnapshotAlreadyExistsException.#ctor(System.String)">
- <summary>
- Constructs a new DBSnapshotAlreadyExistsException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.RDS.Model.DBInstanceNotFoundException">
- <summary>
- AmazonRDS exception
- </summary>
- </member>
- <member name="M:Amazon.RDS.Model.DBInstanceNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new DBInstanceNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.CancelJobResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CancelJob operation
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.CancelJobRequestMarshaller">
- <summary>
- Cancel Job Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UpdateUserResponse">
- <summary>
- Returns information about the UpdateUser response metadata.
- The UpdateUser operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListUsersResultUnmarshaller">
- <summary>
- ListUsersResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupsForUserResultUnmarshaller">
- <summary>
- ListGroupsForUserResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListGroupPoliciesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListGroupPolicies operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListAccessKeysResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListAccessKeys operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListAccessKeysRequestMarshaller">
- <summary>
- List Access Keys Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetGroupPolicyResultUnmarshaller">
- <summary>
- GetGroupPolicyResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetAccountSummaryResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetAccountSummary operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteLoginProfileRequestMarshaller">
- <summary>
- Delete Login Profile Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListSigningCertificatesRequest">
- <summary>
- Container for the parameters to the ListSigningCertificates operation.
- <para>Returns information about the signing certificates associated
- with the specified User. If there are none, the action returns an
- empty list.</para> <para>Although each User is limited to a small
- number of signing certificates, you can still paginate the results
- using the <c>MaxItems</c> and <c>Marker</c> parameters.</para>
- <para>If the <c>UserName</c> field is not specified, the UserName is
- determined implicitly based on the AWS Access Key ID used to sign the
- request. Because this action works for access keys under the AWS
- Account, this API can be used to manage root credentials even if the
- AWS Account has no associated Users.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListSigningCertificates(Amazon.IdentityManagement.Model.ListSigningCertificatesRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListSigningCertificatesRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListSigningCertificatesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListSigningCertificatesRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListSigningCertificatesRequest.UserName">
- <summary>
- The name of the User.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListSigningCertificatesRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListSigningCertificatesRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of certificate IDs you want in the response. If there are additional
- certificate IDs beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetUserResponse">
- <summary>
- Returns information about the GetUserResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetUserResponse.GetUserResult">
- <summary>
- Gets and sets the GetUserResult property.
- Contains the result of a successful invocation of the GetUser action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetServerCertificateRequest">
- <summary>
- Container for the parameters to the GetServerCertificate operation.
- <para>Retrieves information about the specified server
- certificate.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetServerCertificate(Amazon.IdentityManagement.Model.GetServerCertificateRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetServerCertificateRequest.WithServerCertificateName(System.String)">
- <summary>
- Sets the ServerCertificateName property
- </summary>
- <param name="serverCertificateName">The value to set for the ServerCertificateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetServerCertificateRequest.ServerCertificateName">
- <summary>
- The name of the server certificate you want to retrieve information about.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetLoginProfileRequest">
- <summary>
- Container for the parameters to the GetLoginProfile operation.
- <para>Retrieves the login profile for the specified User.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetLoginProfile(Amazon.IdentityManagement.Model.GetLoginProfileRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.GetLoginProfileRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetLoginProfileRequest.UserName">
- <summary>
- Name of the User whose login profile you want to retrieve.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteSigningCertificateResponse">
- <summary>
- Returns information about the DeleteSigningCertificate response metadata.
- The DeleteSigningCertificate operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteServerCertificateResponse">
- <summary>
- Returns information about the DeleteServerCertificate response metadata.
- The DeleteServerCertificate operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest">
- <summary>
- Container for the parameters to the DeleteGroupPolicy operation.
- <para>Deletes the specified policy that is associated with the
- specified group.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.DeleteGroupPolicy(Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest.GroupName">
- <summary>
- Name of the group the policy is associated with.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.DeleteGroupPolicyRequest.PolicyName">
- <summary>
- Name of the policy document to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.JobFlowInstancesDetailUnmarshaller">
- <summary>
- JobFlowInstancesDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.AddInstanceGroupsResultUnmarshaller">
- <summary>
- AddInstanceGroupsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.InstanceGroupModifyConfig">
- <summary>
- <para>Modify an instance group size.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupModifyConfig.WithInstanceGroupId(System.String)">
- <summary>
- Sets the InstanceGroupId property
- </summary>
- <param name="instanceGroupId">The value to set for the InstanceGroupId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.InstanceGroupModifyConfig.WithInstanceCount(System.Int32)">
- <summary>
- Sets the InstanceCount property
- </summary>
- <param name="instanceCount">The value to set for the InstanceCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupModifyConfig.InstanceGroupId">
- <summary>
- Unique ID of the instance group to expand or shrink.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 256</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.InstanceGroupModifyConfig.InstanceCount">
- <summary>
- Target size for the instance group.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.SetLoadBalancerPoliciesOfListenerResultUnmarshaller">
- <summary>
- SetLoadBalancerPoliciesOfListenerResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.SetLoadBalancerListenerSSLCertificateResultUnmarshaller">
- <summary>
- SetLoadBalancerListenerSSLCertificateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.DescribeInstanceHealthResultUnmarshaller">
- <summary>
- DescribeInstanceHealthResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.ListenerNotFoundException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.ListenerNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new ListenerNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest">
- <summary>
- Container for the parameters to the DeregisterInstancesFromLoadBalancer operation.
- <para> Deregisters instances from the LoadBalancer. Once the instance is deregistered, it will stop receiving traffic from the LoadBalancer.
- </para> <para> In order to successfully call this API, the same account credentials as those used to create the LoadBalancer must be
- provided. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticLoadBalancing.AmazonElasticLoadBalancing.DeregisterInstancesFromLoadBalancer(Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest)"/>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest.#ctor">
- <summary>
- Default constructor for a new DeregisterInstancesFromLoadBalancerRequest object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest.#ctor(System.String,System.Collections.Generic.List{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Constructs a new DeregisterInstancesFromLoadBalancerRequest object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="loadBalancerName"> The name associated with the LoadBalancer. The name must be unique within the client AWS account. </param>
- <param name="instances"> A list of EC2 instance IDs consisting of all instances to be deregistered. </param>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest.WithLoadBalancerName(System.String)">
- <summary>
- Sets the LoadBalancerName property
- </summary>
- <param name="loadBalancerName">The value to set for the LoadBalancerName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest.WithInstances(Amazon.ElasticLoadBalancing.Model.Instance[])">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest.WithInstances(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.Instance})">
- <summary>
- Adds elements to the Instances collection
- </summary>
- <param name="instances">The values to add to the Instances collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest.LoadBalancerName">
- <summary>
- The name associated with the LoadBalancer. The name must be unique within the client AWS account.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DeregisterInstancesFromLoadBalancerRequest.Instances">
- <summary>
- A list of EC2 instance IDs consisting of all instances to be deregistered.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest">
- <summary>
- Container for the parameters to the ValidateConfigurationSettings operation.
- <para> Takes a set of configuration settings and either a configuration template or environment, and determines whether those values are
- valid. </para> <para> This action returns a list of messages indicating any errors or warnings associated with the selection of option
- values. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.ValidateConfigurationSettings(Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.WithOptionSettings(Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting[])">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.WithOptionSettings(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ConfigurationOptionSetting})">
- <summary>
- Adds elements to the OptionSettings collection
- </summary>
- <param name="optionSettings">The values to add to the OptionSettings collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.ApplicationName">
- <summary>
- The name of the application that the configuration template or environment belongs to.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.TemplateName">
- <summary>
- The name of the configuration template to validate the settings against. Condition: You cannot specify both this and an environment name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.EnvironmentName">
- <summary>
- The name of the environment to validate the settings against. Condition: You cannot specify both this and a configuration template name.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.ValidateConfigurationSettingsRequest.OptionSettings">
- <summary>
- A list of the options and desired values to evaluate.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.UpdateConfigurationTemplateRequestMarshaller">
- <summary>
- Update Configuration Template Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.TerminateEnvironmentRequestMarshaller">
- <summary>
- Terminate Environment Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.OptionRestrictionRegexUnmarshaller">
- <summary>
- OptionRestrictionRegex Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.EventDescriptionUnmarshaller">
- <summary>
- EventDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.EnvironmentDescriptionUnmarshaller">
- <summary>
- EnvironmentDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeApplicationsRequestMarshaller">
- <summary>
- Describe Applications Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.CreateEnvironmentResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateEnvironment operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ConfigurationSettingsDescriptionUnmarshaller">
- <summary>
- ConfigurationSettingsDescription Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TooManyConfigurationTemplatesException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TooManyConfigurationTemplatesException.#ctor(System.String)">
- <summary>
- Constructs a new TooManyConfigurationTemplatesException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest">
- <summary>
- Container for the parameters to the TerminateEnvironment operation.
- <para> Terminates the specified environment. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.TerminateEnvironment(Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest.WithTerminateResources(System.Boolean)">
- <summary>
- Sets the TerminateResources property
- </summary>
- <param name="terminateResources">The value to set for the TerminateResources property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest.EnvironmentId">
- <summary>
- The ID of the environment to terminate.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest.EnvironmentName">
- <summary>
- The name of the environment to terminate.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.TerminateEnvironmentRequest.TerminateResources">
- <summary>
- Indicates whether the associated AWS resources should shut down when the environment is terminated: <enumValues> <value name="true">
- <c>true</c>: (default) The user AWS resources (for example, the Auto Scaling group, LoadBalancer, etc.) are terminated along with the
- environment. </value> <value name="false"> <c>false</c>: The environment is removed from the AWS Elastic Beanstalk but the AWS resources
- continue to operate. </value> </enumValues> <ul> <li> <c>true</c>: The specified environment as well as the associated AWS resources, such
- as Auto Scaling group and LoadBalancer, are terminated. </li> <li> <c>false</c>: AWS Elastic Beanstalk resource management is removed from
- the environment, but the AWS resources continue to operate. </li> </ul> For more information, see the <a
- href="http://docs.amazonwebservices.com/elasticbeanstalk/latest/ug/"> AWS Elastic Beanstalk User Guide. </a> Default: <c>true</c> Valid
- Values: <c>true</c> | <c>false</c>
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.InvalidParameterValueException">
- <summary>
- AmazonElasticBeanstalk exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.InvalidParameterValueException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidParameterValueException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.EnvironmentDescription">
- <summary>
- <para>Describes the properties of an environment.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithSolutionStackName(System.String)">
- <summary>
- Sets the SolutionStackName property
- </summary>
- <param name="solutionStackName">The value to set for the SolutionStackName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithEndpointURL(System.String)">
- <summary>
- Sets the EndpointURL property
- </summary>
- <param name="endpointURL">The value to set for the EndpointURL property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithCNAME(System.String)">
- <summary>
- Sets the CNAME property
- </summary>
- <param name="cNAME">The value to set for the CNAME property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithDateCreated(System.DateTime)">
- <summary>
- Sets the DateCreated property
- </summary>
- <param name="dateCreated">The value to set for the DateCreated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithDateUpdated(System.DateTime)">
- <summary>
- Sets the DateUpdated property
- </summary>
- <param name="dateUpdated">The value to set for the DateUpdated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithStatus(System.String)">
- <summary>
- Sets the Status property
- </summary>
- <param name="status">The value to set for the Status property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithHealth(System.String)">
- <summary>
- Sets the Health property
- </summary>
- <param name="health">The value to set for the Health property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.WithResources(Amazon.ElasticBeanstalk.Model.EnvironmentResourcesDescription)">
- <summary>
- Sets the Resources property
- </summary>
- <param name="resources">The value to set for the Resources property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.EnvironmentName">
- <summary>
- The name of this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.EnvironmentId">
- <summary>
- The ID of this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.ApplicationName">
- <summary>
- The name of the application associated with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.VersionLabel">
- <summary>
- The application version deployed in this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.SolutionStackName">
- <summary>
- The name of the <c>SolutionStack</c> deployed with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.TemplateName">
- <summary>
- The name of the configuration template used to originally launch this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.Description">
- <summary>
- Describes this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.EndpointURL">
- <summary>
- The URL to the LoadBalancer for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.CNAME">
- <summary>
- The URL to the CNAME for this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.DateCreated">
- <summary>
- The creation date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.DateUpdated">
- <summary>
- The last modified date for this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.Status">
- <summary>
- The current operational status of the environment: <ul> <li> <c>Launching</c>: Environment is in the process of initial deployment. </li>
- <li> <c>Updating</c>: Environment is in the process of updating its configuration settings or application version. </li> <li> <c>Ready</c>:
- Environment is available to have an action performed on it, such as update or terminate. </li> <li> <c>Terminating</c>: Environment is in
- the shut-down process. </li> <li> <c>Terminated</c>: Environment is not running. </li> </ul>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Launching, Updating, Ready, Terminating, Terminated</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.Health">
- <summary>
- Describes the health status of the environment. AWS Elastic Beanstalk indicates the failure levels for a running environment: <enumValues>
- <value name="Red"> <c>Red</c> : Indicates the environment is not working. </value> <value name="Yellow"> <c>Yellow</c>: Indicates that
- something is wrong, the application might not be available, but the instances appear running. </value> <value name="Green"> <c>Green</c>:
- Indicates the environment is healthy and fully functional. </value> </enumValues> <ul> <li> <c>Red</c>: Indicates the environment is not
- responsive. Occurs when three or more consecutive failures occur for an environment. </li> <li> <c>Yellow</c>: Indicates that something is
- wrong. Occurs when two consecutive failures occur for an environment. </li> <li> <c>Green</c>: Indicates the environment is healthy and
- fully functional. </li> <li> <c>Grey</c>: Default health for a new environment. The environment is not fully launched and health checks have
- not started or health checks are suspended during an <c>UpdateEnvironment</c> or <c>RestartEnvironement</c> request. </li> </ul> Default:
- <c>Grey</c>
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Green, Yellow, Red, Grey</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.EnvironmentDescription.Resources">
- <summary>
- The description of the AWS resources used by this environment.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest">
- <summary>
- Container for the parameters to the DescribeEvents operation.
- <para>Returns list of event descriptions matching criteria up to the last 6 weeks.</para> <para><b>NOTE:</b> This action returns the most
- recent 1,000 events from the specified NextToken. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeEvents(Amazon.ElasticBeanstalk.Model.DescribeEventsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithTemplateName(System.String)">
- <summary>
- Sets the TemplateName property
- </summary>
- <param name="templateName">The value to set for the TemplateName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithEnvironmentId(System.String)">
- <summary>
- Sets the EnvironmentId property
- </summary>
- <param name="environmentId">The value to set for the EnvironmentId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithEnvironmentName(System.String)">
- <summary>
- Sets the EnvironmentName property
- </summary>
- <param name="environmentName">The value to set for the EnvironmentName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">The value to set for the RequestId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithSeverity(System.String)">
- <summary>
- Sets the Severity property
- </summary>
- <param name="severity">The value to set for the Severity property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithStartTime(System.DateTime)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The value to set for the StartTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithEndTime(System.DateTime)">
- <summary>
- Sets the EndTime property
- </summary>
- <param name="endTime">The value to set for the EndTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.ApplicationName">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to include only those associated with this application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.VersionLabel">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this application version.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.TemplateName">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that are associated with this environment configuration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.EnvironmentId">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.EnvironmentName">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to those associated with this environment.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>4 - 23</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.RequestId">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the described events to include only those associated with this request ID.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.Severity">
- <summary>
- If specified, limits the events returned from this call to include only those with the specified severity or higher.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>TRACE, DEBUG, INFO, WARN, ERROR, FATAL</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.StartTime">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur on or after this time.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.EndTime">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to those that occur up to, but not including, the <c>EndTime</c>.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeEventsRequest.NextToken">
- <summary>
- Pagination token. If specified, the events return the next batch of results.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsResponse">
- <summary>
- Returns information about the DescribeConfigurationSettingsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeConfigurationSettingsResponse.DescribeConfigurationSettingsResult">
- <summary>
- Gets and sets the DescribeConfigurationSettingsResult property.
- The results from a request to change the configuration settings of an environment.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest">
- <summary>
- Container for the parameters to the CreateApplicationVersion operation.
- <para>Creates an application version for the specified application.</para> <para><b>NOTE:</b>Once you create an application version with a
- specified Amazon S3 bucket and key location, you cannot change that Amazon S3 location. If you change the Amazon S3 location, you receive an
- exception when you attempt to launch an environment from the application version. </para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.CreateApplicationVersion(Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.WithVersionLabel(System.String)">
- <summary>
- Sets the VersionLabel property
- </summary>
- <param name="versionLabel">The value to set for the VersionLabel property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.WithSourceBundle(Amazon.ElasticBeanstalk.Model.S3Location)">
- <summary>
- Sets the SourceBundle property
- </summary>
- <param name="sourceBundle">The value to set for the SourceBundle property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.WithAutoCreateApplication(System.Boolean)">
- <summary>
- Sets the AutoCreateApplication property
- </summary>
- <param name="autoCreateApplication">The value to set for the AutoCreateApplication property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.ApplicationName">
- <summary>
- The name of the application. If no application is found with this name, and <c>AutoCreateApplication</c> is <c>false</c>, returns an
- <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.VersionLabel">
- <summary>
- A label identifying this version. Constraint: Must be unique per application. If an application version already exists with this label for
- the specified application, AWS Elastic Beanstalk returns an <c>InvalidParameterValue</c> error.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.Description">
- <summary>
- Describes this version.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 200</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.SourceBundle">
- <summary>
- The Amazon S3 bucket and key that identify the location of the source bundle for this version. If data found at the Amazon S3 location
- exceeds the maximum allowed source bundle size, AWS Elastic Beanstalk returns an <c>InvalidParameterValue</c> error. Default: If not
- specified, AWS Elastic Beanstalk uses a sample application. If only partially specified (for example, a bucket is provided but not the key)
- or if no data is found at the Amazon S3 location, AWS Elastic Beanstalk returns an <c>InvalidParameterCombination</c> error.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationVersionRequest.AutoCreateApplication">
- <summary>
- Determines how the system behaves if the specified application for this version does not already exist: <enumValues> <value name="true">
- <c>true</c>: Automatically creates the specified application for this version if it does not already exist. </value> <value name="false">
- <c>false</c>: Returns an <c>InvalidParameterValue</c> if the specified application for this version does not already exist. </value>
- </enumValues> <ul> <li> <c>true</c> : Automatically creates the specified application for this release if it does not already exist. </li>
- <li> <c>false</c> : Throws an <c>InvalidParameterValue</c> if the specified application for this release does not already exist. </li> </ul>
- Default: <c>false</c> Valid Values: <c>true</c> | <c>false</c>
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.CreateApplicationResponse">
- <summary>
- Returns information about the CreateApplicationResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.CreateApplicationResponse.CreateApplicationResult">
- <summary>
- Gets and sets the CreateApplicationResult property.
- Result message containing a single description of an application.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.StopInstancesRequest">
- <summary>
- Stops an instance that uses an Amazon EBS volume as its root device.
- Instances that use Amazon EBS volumes as their root devices can be
- quickly stopped and started. When an instance is
- stopped, the compute resources are released and
- you are not billed for hourly instance usage. However,
- your root partition Amazon EBS volume remains,
- continues to persist your data, and you are charged
- for Amazon EBS volume usage. You can restart
- your instance at any time.
-
- Before stopping an instance, make sure it is in a state from
- which it can be restarted. Stopping an instance does not preserve
- data stored in RAM.
-
- Performing this operation on an instance that
- uses an instance store as its
- root device returns
- an error.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesRequest.WithInstanceId(System.String[])">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="list">The instance ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesRequest.WithForce(System.Boolean)">
- <summary>
- Sets the Force property
- </summary>
- <param name="force">Forces the instance to stop. The instance will
- not have an opportunity to flush file system caches nor file
- system meta data. If you use this option, you must perform file
- system check and repair procedures. This option is not
- recommended for Windows instances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StopInstancesRequest.IsSetForce">
- <summary>
- Checks if Force property is set
- </summary>
- <returns>true if Force property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.StopInstancesRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The instance ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.StopInstancesRequest.Force">
- <summary>
- Gets and sets the Force property.
- Forces the instance to stop. The instance will
- not have an opportunity to flush file system caches nor file
- system meta data. If you use this option, you must perform file
- system check and repair procedures. This option is not
- recommended for Windows instances.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.StartInstancesRequest">
- <summary>
- Starts an instance that uses an Amazon EBS volume
- as its root device.
- Instances that use Amazon EBS volumes as their
- root devices can be quickly stopped and started.
- When an instance is
- stopped, the compute resources are released and
- you are not billed for hourly
- instance usage. However, your root partition Amazon EBS
- volume remains, continues to persist your
- data, and you are charged
- for Amazon EBS volume usage. You can restart
- your instance at any
- time.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesRequest.WithInstanceId(System.String[])">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="list">The instance ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.StartInstancesRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.StartInstancesRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The instance ID.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RunInstancesRequest">
- <summary>
- Launches a specified number of instances of an
- AMI for which you have
- permissions.
-
- If Amazon EC2 cannot launch the
- minimum number AMIs you request, no
- instances will be launched. If
- there is insufficient capacity to
- launch the
- maximum number of AMIs
- you request, Amazon EC2 launches the minimum
- number specified for
- each AMI and allocate the remaining available
- instances using round robin.
-
- In the following example, Libby generates a request to
- launch two images (database and web_server):
-
- Libby runs the RunInstances operation to launch database instances
- (min. 10, max. 15) and web_server instances (min. 30, max. 40).
-
- Because there are currently 30 instances available and Libby needs a
- minimum of 40, no instances are launched.
-
- Libby adjusts the number of instances she needs and runs the
- RunInstances operation to launch database
- instances (min. 5, max. 10) and web_server
- instances (min. 20, max. 40).
-
- Amazon EC2 launches the minimum number of instances for each
- AMI (5 database, 20 web_server).
-
- The remaining 5 instances are
- allocated using round robin.
-
- Libby adjusts the number of instances
- she needs and runs the RunInstances
- operation again to launch
- database instances (min. 5, max. 10) and
- web_server instances (min.
- 20, max. 40).
-
- Note - every instance is launched in a security group
- (created using the CreateSecurityGroup operation.)
-
- You can provide
- an optional key pair ID for each image in the launch request
- (created using the CreateKeyPair operation). All instances that
- are created from images that use this key pair will have access to
- the associated public key at boot. You can use this key to provide
- secure access to an instance of
- an image on a per-instance basis.
- Amazon EC2 public images use this
- feature to provide secure access
- without passwords.
-
- Important - launching public images without a
- key pair ID will leave them
- inaccessible.
-
- The public key material is
- made available to the instance at boot
- time by placing it in the
- openssh_id.pub file on a logical device that is exposed
- to the instance as /dev/sda2 (the instance store). The format of this
- file is suitable
- for use as an entry within ~/.ssh/authorized_keys
- (the OpenSSH format).
- This can be done at boot (e.g., as part of
- rc.local) allowing for secure access
- without passwords.
-
- Optional user data can be provided in the launch request. All instances that
- collectively comprise the launch request have access to this data.
- For more information, go the Amazon Elastic Compute Cloud Developer
- Guide.
-
- Note - if any of the AMIs have a product code attached for
- which the user has not subscribed, the RunInstances call will fail.
-
- Important - we strongly recommend using the 2.6.18 Xen stock
- kernel with High-CPU and High-Memory instances. Although the
- default Amazon EC2
- kernels will work, the new kernels provide
- greater stability and performance
- for these instance types. For more
- information about kernels, go the Amazon
- Elastic Compute Cloud
- Developer Guide
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithImageId(System.String)">
- <summary>
- Sets the ImageId property
- </summary>
- <param name="imageId">Unique ID of a machine image,</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetImageId">
- <summary>
- Checks if ImageId property is set
- </summary>
- <returns>true if ImageId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithMinCount(System.Decimal)">
- <summary>
- Sets the MinCount property
- </summary>
- <param name="minCount">Minimum number of instances to launch. If the
- value is more than Amazon
- EC2 can launch, no instances are launched at all.
-
- Constraints: Between 1 and the maximum number
- allowed for your account (default: 20).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetMinCount">
- <summary>
- Checks if MinCount property is set
- </summary>
- <returns>true if MinCount property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithMaxCount(System.Decimal)">
- <summary>
- Sets the MaxCount property
- </summary>
- <param name="maxCount">Maximum number of instances to launch. If the
- value is more than Amazon
- EC2 can launch, the largest possible
- number above minCount will be launched instead.
-
- Constraints:
- Between 1 and the maximum number allowed for your account
- (default: 20).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetMaxCount">
- <summary>
- Checks if MaxCount property is set
- </summary>
- <returns>true if MaxCount property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithKeyName(System.String)">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="keyName">The name of the key pair.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithSecurityGroup(System.String[])">
- <summary>
- Sets the SecurityGroup property
- </summary>
- <param name="list">Names of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetSecurityGroup">
- <summary>
- Checks if SecurityGroup property is set
- </summary>
- <returns>true if SecurityGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithSecurityGroupId(System.String[])">
- <summary>
- Sets the SecurityGroupId property
- </summary>
- <param name="list">IDs of the security group.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetSecurityGroupId">
- <summary>
- Checks if SecurityGroupId property is set
- </summary>
- <returns>true if SecurityGroupId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithUserData(System.String)">
- <summary>
- Sets the UserData property
- </summary>
- <param name="userData">MIME, Base64-encoded user data.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetUserData">
- <summary>
- Checks if UserData property is set
- </summary>
- <returns>true if UserData property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">Specifies the instance type.
-
- Valid Values:
- m1.small | m1.large | m1.xlarge | c1.medium |
- c1.xlarge |
- m2.2xlarge | m2.4xlarge
-
- Default: m1.small</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithPlacement(Amazon.EC2.Model.Placement)">
- <summary>
- Sets the Placement property
- </summary>
- <param name="placement">Specifies the placement constraints.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetPlacement">
- <summary>
- Checks if Placement property is set
- </summary>
- <returns>true if Placement property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithKernelId(System.String)">
- <summary>
- Sets the KernelId property
- </summary>
- <param name="kernelId">The ID of the kernel with which to launch the
- instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetKernelId">
- <summary>
- Checks if KernelId property is set
- </summary>
- <returns>true if KernelId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithRamdiskId(System.String)">
- <summary>
- Sets the RamdiskId property
- </summary>
- <param name="ramdiskId">The ID of the RAM disk with which to launch
- the instance. Some kernels
- require additional drivers at launch.
- Check the kernel requirements for
- information on whether you need
- to specify a RAM disk. To find kernel
- requirements, go to the
- Resource Center and search for the
- kernel ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetRamdiskId">
- <summary>
- Checks if RamdiskId property is set
- </summary>
- <returns>true if RamdiskId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithBlockDeviceMapping(Amazon.EC2.Model.BlockDeviceMapping[])">
- <summary>
- Sets the BlockDeviceMapping property
- </summary>
- <param name="list">Block device mapping.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetBlockDeviceMapping">
- <summary>
- Checks if BlockDeviceMapping property is set
- </summary>
- <returns>true if BlockDeviceMapping property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithMonitoring(Amazon.EC2.Model.MonitoringSpecification)">
- <summary>
- Sets the Monitoring property
- </summary>
- <param name="monitoring">Enables monitoring for the instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetMonitoring">
- <summary>
- Checks if Monitoring property is set
- </summary>
- <returns>true if Monitoring property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">Specifies the subnet ID within which to launch
- the instance(s) for
- Amazon Virtual Private Cloud.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithAdditionalInfo(System.String)">
- <summary>
- Sets the AdditionalInfo property
- </summary>
- <param name="additionalInfo">Specifies additional information to make
- available to the instance(s)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetAdditionalInfo">
- <summary>
- Checks if AdditionalInfo property is set
- </summary>
- <returns>true if AdditionalInfo property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithDisableApiTermination(System.Boolean)">
- <summary>
- Sets the DisableApiTermination property
- </summary>
- <param name="disableApiTermination">Specifies whether the instance can be
- terminated using the APIs. You must modify this attribute before
- you can terminate any "locked" instances from the APIs.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetDisableApiTermination">
- <summary>
- Checks if DisableApiTermination property is set
- </summary>
- <returns>true if DisableApiTermination property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithInstanceInitiatedShutdownBehavior(System.String)">
- <summary>
- Sets the InstanceInitiatedShutdownBehavior property
- </summary>
- <param name="instanceInitiatedShutdownBehavior">Specifies whether the instance's Amazon EBS
- volumes are stopped or terminated when the instance is shut
- down.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetInstanceInitiatedShutdownBehavior">
- <summary>
- Checks if InstanceInitiatedShutdownBehavior property is set
- </summary>
- <returns>true if InstanceInitiatedShutdownBehavior property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithLicense(Amazon.EC2.Model.InstanceLicenseSpecification)">
- <summary>
- Sets the License property
- </summary>
- <param name="license">Specifies active licenses in use and attached
- to an Amazon EC2 instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetLicense">
- <summary>
- Checks if License property is set
- </summary>
- <returns>true if License property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithPrivateIpAddress(System.String)">
- <summary>
- Sets the PrivateIpAddress property
- </summary>
- <param name="privateIpAddress">If you're using Amazon Virtual Private Cloud,
- you can optionally use this
- parameter to assign the instance a
- specific available IP address from the
- subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetPrivateIpAddress">
- <summary>
- Checks if PrivateIpAddress property is set
- </summary>
- <returns>true if PrivateIpAddress property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithClientToken(System.String)">
- <summary>
- Sets the ClientToken property
- </summary>
- <param name="clientToken">ClientToken property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetClientToken">
- <summary>
- Checks if ClientToken property is set
- </summary>
- <returns>true if ClientToken property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.WithHypervisor(System.String)">
- <summary>
- Sets the Hypervisor property
- </summary>
- <param name="hypervisor">Hypervisor property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RunInstancesRequest.IsSetHypervisor">
- <summary>
- Checks if Hypervisor property is set
- </summary>
- <returns>true if Hypervisor property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.ImageId">
- <summary>
- Gets and sets the ImageId property.
- Unique ID of a machine image,
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.MinCount">
- <summary>
- Gets and sets the MinCount property.
- Minimum number of instances to launch. If the
- value is more than Amazon
- EC2 can launch, no instances are launched at all.
-
- Constraints: Between 1 and the maximum number
- allowed for your account (default: 20).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.MaxCount">
- <summary>
- Gets and sets the MaxCount property.
- Maximum number of instances to launch. If the
- value is more than Amazon
- EC2 can launch, the largest possible
- number above minCount will be launched instead.
-
- Constraints:
- Between 1 and the maximum number allowed for your account
- (default: 20).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.KeyName">
- <summary>
- Gets and sets the KeyName property.
- The name of the key pair.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.SecurityGroup">
- <summary>
- Gets and sets the SecurityGroup property.
- Names of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.SecurityGroupId">
- <summary>
- Gets and sets the SecurityGroupId property.
- IDs of the security group.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.UserData">
- <summary>
- Gets and sets the UserData property.
- MIME, Base64-encoded user data.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- Specifies the instance type.
-
- Valid Values:
- m1.small | m1.large | m1.xlarge | c1.medium |
- c1.xlarge |
- m2.2xlarge | m2.4xlarge
-
- Default: m1.small
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.Placement">
- <summary>
- Gets and sets the Placement property.
- Specifies the placement constraints.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.KernelId">
- <summary>
- Gets and sets the KernelId property.
- The ID of the kernel with which to launch the
- instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.RamdiskId">
- <summary>
- Gets and sets the RamdiskId property.
- The ID of the RAM disk with which to launch
- the instance. Some kernels
- require additional drivers at launch.
- Check the kernel requirements for
- information on whether you need
- to specify a RAM disk. To find kernel
- requirements, go to the
- Resource Center and search for the
- kernel ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.BlockDeviceMapping">
- <summary>
- Gets and sets the BlockDeviceMapping property.
- Block device mapping.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.Monitoring">
- <summary>
- Gets and sets the Monitoring property.
- Enables monitoring for the instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- Specifies the subnet ID within which to launch
- the instance(s) for
- Amazon Virtual Private Cloud.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.AdditionalInfo">
- <summary>
- Gets and sets the AdditionalInfo property.
- Specifies additional information to make
- available to the instance(s)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.DisableApiTermination">
- <summary>
- Gets and sets the DisableApiTermination property.
- Specifies whether the instance can be
- terminated using the APIs. You must modify this attribute before
- you can terminate any "locked" instances from the APIs.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.InstanceInitiatedShutdownBehavior">
- <summary>
- Gets and sets the InstanceInitiatedShutdownBehavior property.
- Specifies whether the instance's Amazon EBS
- volumes are stopped or terminated when the instance is shut
- down.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.License">
- <summary>
- Gets and sets the License property.
- Specifies active licenses in use and attached
- to an Amazon EC2 instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.PrivateIpAddress">
- <summary>
- Gets and sets the PrivateIpAddress property.
- If you're using Amazon Virtual Private Cloud,
- you can optionally use this
- parameter to assign the instance a
- specific available IP address from the
- subnet.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.ClientToken">
- <summary>
- Gets and sets the ClientToken property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RunInstancesRequest.Hypervisor">
- <summary>
- Gets and sets the Hypervisor property.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ResponseMetadata">
- <summary>
- Response Metadata
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResponseMetadata.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">Request Id</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResponseMetadata.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResponseMetadata.RequestId">
- <summary>
- Gets and sets the RequestId property.
- Request Id
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ResetSnapshotAttributeRequest">
- <summary>
- Resets permission settings for the specified
- snapshot
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ResetSnapshotAttributeRequest.WithSnapshotId(System.String)">
- <summary>
- Sets the SnapshotId property
- </summary>
- <param name="snapshotId">The ID of the snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetSnapshotAttributeRequest.IsSetSnapshotId">
- <summary>
- Checks if SnapshotId property is set
- </summary>
- <returns>true if SnapshotId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetSnapshotAttributeRequest.WithAttribute(System.String)">
- <summary>
- Sets the Attribute property
- </summary>
- <param name="attribute">Resets the create volume permissions of the
- snapshot.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ResetSnapshotAttributeRequest.IsSetAttribute">
- <summary>
- Checks if Attribute property is set
- </summary>
- <returns>true if Attribute property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ResetSnapshotAttributeRequest.SnapshotId">
- <summary>
- Gets and sets the SnapshotId property.
- The ID of the snapshot.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ResetSnapshotAttributeRequest.Attribute">
- <summary>
- Gets and sets the Attribute property.
- Resets the create volume permissions of the
- snapshot.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.RequestSpotInstancesRequest">
- <summary>
- Request to create a Spot Instance request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithSpotPrice(System.String)">
- <summary>
- Sets the SpotPrice property
- </summary>
- <param name="spotPrice">Specifies the maximum price you will pay to
- launch one or more Spot Instances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetSpotPrice">
- <summary>
- Checks if SpotPrice property is set
- </summary>
- <returns>true if SpotPrice property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithInstanceCount(System.Decimal)">
- <summary>
- Sets the InstanceCount property
- </summary>
- <param name="instanceCount">The maximum number of Spot Instances to launch. Default - 1.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetInstanceCount">
- <summary>
- Checks if InstanceCount property is set
- </summary>
- <returns>true if InstanceCount property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The instance type. Valid values:
- m1.small|m1.large|m1.xlarge|c1.medium|c1.xlarge|m2.2xlarge|m4.4xlarge.
- Default - m1.small.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithValidFrom(System.String)">
- <summary>
- Sets the ValidFrom property
- </summary>
- <param name="validFrom">Start date of the request. If this is a one-time request,
- the request remains active until all instances
- launch, the request expires, or the request is canceled. If the
- request is persistent, it remains active until it expires or
- is canceled.
- Default: Request is effective immediately</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetValidFrom">
- <summary>
- Checks if ValidFrom property is set
- </summary>
- <returns>true if ValidFrom property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithValidUntil(System.String)">
- <summary>
- Sets the ValidUntil property
- </summary>
- <param name="validUntil">End date of the request. If this is a one-time request,
- the request remains active until all instances launch,
- the request expires, or the request is canceled. If the
- request is persistent, it remains active until it expires or
- is canceled.
- Default: Request remains open until criteria for closing are met</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetValidUntil">
- <summary>
- Checks if ValidUntil property is set
- </summary>
- <returns>true if ValidUntil property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithLaunchGroup(System.String)">
- <summary>
- Sets the LaunchGroup property
- </summary>
- <param name="launchGroup">Specifies the instance launch group. Launch
- groups are Spot Instances that launch together and terminate
- together.
- Default: Instances are launched and terminated individually</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetLaunchGroup">
- <summary>
- Checks if LaunchGroup property is set
- </summary>
- <returns>true if LaunchGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithAvailabilityZoneGroup(System.String)">
- <summary>
- Sets the AvailabilityZoneGroup property
- </summary>
- <param name="availabilityZoneGroup">Specifies the Availability Zone group. If you specify
- the same Availability Zone group for all Spot Instance
- requests, all Spot Instances are launched in the same
- Availability Zone.
- Default: Instances are launched in any available Availability Zone.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetAvailabilityZoneGroup">
- <summary>
- Checks if AvailabilityZoneGroup property is set
- </summary>
- <returns>true if AvailabilityZoneGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.WithLaunchSpecification(Amazon.EC2.Model.LaunchSpecification)">
- <summary>
- Sets the LaunchSpecification property
- </summary>
- <param name="launchSpecification">Specifies additional launch instance information.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.RequestSpotInstancesRequest.IsSetLaunchSpecification">
- <summary>
- Checks if LaunchSpecification property is set
- </summary>
- <returns>true if LaunchSpecification property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.SpotPrice">
- <summary>
- Gets and sets the SpotPrice property.
- Specifies the maximum price you will pay to
- launch one or more Spot Instances.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.InstanceCount">
- <summary>
- Gets and sets the InstanceCount property.
- The maximum number of Spot Instances to launch. Default - 1.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.Type">
- <summary>
- Gets and sets the Type property.
- The instance type. Valid values:
- m1.small|m1.large|m1.xlarge|c1.medium|c1.xlarge|m2.2xlarge|m4.4xlarge.
- Default - m1.small.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.ValidFrom">
- <summary>
- Gets and sets the ValidFrom property.
- Start date of the request. If this is a one-time request,
- the request remains active until all instances
- launch, the request expires, or the request is canceled. If the
- request is persistent, it remains active until it expires or
- is canceled.
- Default: Request is effective immediately
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.ValidUntil">
- <summary>
- Gets and sets the ValidUntil property.
- End date of the request. If this is a one-time request,
- the request remains active until all instances launch,
- the request expires, or the request is canceled. If the
- request is persistent, it remains active until it expires or
- is canceled.
- Default: Request remains open until criteria for closing are met
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.LaunchGroup">
- <summary>
- Gets and sets the LaunchGroup property.
- Specifies the instance launch group. Launch
- groups are Spot Instances that launch together and terminate
- together.
- Default: Instances are launched and terminated individually
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.AvailabilityZoneGroup">
- <summary>
- Gets and sets the AvailabilityZoneGroup property.
- Specifies the Availability Zone group. If you specify
- the same Availability Zone group for all Spot Instance
- requests, all Spot Instances are launched in the same
- Availability Zone.
- Default: Instances are launched in any available Availability Zone.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.RequestSpotInstancesRequest.LaunchSpecification">
- <summary>
- Gets and sets the LaunchSpecification property.
- Specifies additional launch instance information.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResponse">
- <summary>
- Purchase Reserved Instances Offering Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResponse.IsSetPurchaseReservedInstancesOfferingResult">
- <summary>
- Checks if PurchaseReservedInstancesOfferingResult property is set
- </summary>
- <returns>true if PurchaseReservedInstancesOfferingResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.PurchaseReservedInstancesOfferingResponse.PurchaseReservedInstancesOfferingResult">
- <summary>
- Gets and sets the PurchaseReservedInstancesOfferingResult property.
- Purchase Reserved Instances Offering Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.WithNetworkAclId(System.String)">
- <summary>
- Sets the NetworkAclId property
- </summary>
- <param name="networkAclId">The network ACL's ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.IsSetNetworkAclId">
- <summary>
- Checks if NetworkAclId property is set
- </summary>
- <returns>true if NetworkAclId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC the network ACL is in.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.WithDefault(System.Boolean)">
- <summary>
- Sets the Default property
- </summary>
- <param name="isDefault">Whether this is the default network ACL in the VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.IsSetDefault">
- <summary>
- Checks if Default property is set
- </summary>
- <returns>true if Default property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.WithEntries(Amazon.EC2.Model.NetworkAclEntry[])">
- <summary>
- Sets the Entries property
- </summary>
- <param name="list">A list of entries (rules) in the network ACL.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.IsSetEntries">
- <summary>
- Checks if Entries property is set
- </summary>
- <returns>true if Entries property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.WithAssociations(Amazon.EC2.Model.NetworkAclAssociation[])">
- <summary>
- Sets the Associations property
- </summary>
- <param name="list">A list of associations between the network ACL and one or more
- subnets.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.IsSetAssociations">
- <summary>
- Checks if Associations property is set
- </summary>
- <returns>true if Associations property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the NetworkAcl.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.NetworkAcl.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAcl.NetworkAclId">
- <summary>
- Gets and sets the NetworkAclId property.
- The network ACL's ID.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAcl.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC the network ACL is in.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAcl.Default">
- <summary>
- Gets and sets the Default property.
- Whether this is the default network ACL in the VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAcl.Entries">
- <summary>
- Gets and sets the Entries property.
- A list of entries (rules) in the network ACL.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAcl.Associations">
- <summary>
- Gets and sets the Associations property.
- A list of associations between the network ACL and one or more
- subnets.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.NetworkAcl.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the NetworkAcl.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.Monitoring">
- <summary>
- Monitoring
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Monitoring.WithMonitoringState(System.String)">
- <summary>
- Sets the MonitoringState property
- </summary>
- <param name="monitoringState">State of monitoring for the instance. Valid
- Values:
- monitoring-enabled (enabled)
- | monitoring-pending
- (pending) | monitoring-disabled (disabled)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Monitoring.IsSetMonitoringState">
- <summary>
- Checks if MonitoringState property is set
- </summary>
- <returns>true if MonitoringState property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Monitoring.MonitoringState">
- <summary>
- Gets and sets the MonitoringState property.
- State of monitoring for the instance. Valid
- Values:
- monitoring-enabled (enabled)
- | monitoring-pending
- (pending) | monitoring-disabled (disabled)
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceStateChange">
- <summary>
- Instance state change
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceStateChange.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">Instance ID</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceStateChange.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceStateChange.WithCurrentState(Amazon.EC2.Model.InstanceState)">
- <summary>
- Sets the CurrentState property
- </summary>
- <param name="currentState">Current state</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceStateChange.IsSetCurrentState">
- <summary>
- Checks if CurrentState property is set
- </summary>
- <returns>true if CurrentState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceStateChange.WithPreviousState(Amazon.EC2.Model.InstanceState)">
- <summary>
- Sets the PreviousState property
- </summary>
- <param name="previousState">Previous state</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceStateChange.IsSetPreviousState">
- <summary>
- Checks if PreviousState property is set
- </summary>
- <returns>true if PreviousState property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceStateChange.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance ID
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceStateChange.CurrentState">
- <summary>
- Gets and sets the CurrentState property.
- Current state
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceStateChange.PreviousState">
- <summary>
- Gets and sets the PreviousState property.
- Previous state
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportVolumeResponse">
- <summary>
- The Response for the
- ImportVolume operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeResponse.IsSetImportVolumeResult">
- <summary>
- Checks if ImportVolumeResult property is set
- </summary>
- <returns>true if ImportVolumeResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeResponse.ImportVolumeResult">
- <summary>
- Gets and sets the ImportVolumeResult property.
- Import Volume Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ImportVolumeRequest">
- <summary>
- Creates a new import volume task using metadata from the specified disk image.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">Availability Zone where the resulting Amazon EBS volume will reside.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.WithImage(Amazon.EC2.Model.DiskImageDetailType)">
- <summary>
- Sets the Image property
- </summary>
- <param name="image">Details about the image.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.IsSetImage">
- <summary>
- Checks if Image property is set
- </summary>
- <returns>true if Image property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">Optional description of the volume being imported.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.IsSetDescription">
- <summary>
- Checks if Description property is set
- </summary>
- <returns>true if Description property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.WithVolume(Amazon.EC2.Model.DiskImageVolumeType)">
- <summary>
- Sets the Volume property
- </summary>
- <param name="volume">Details about the volume.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ImportVolumeRequest.IsSetVolume">
- <summary>
- Checks if Volume property is set
- </summary>
- <returns>true if Volume property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeRequest.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- Availability Zone where the resulting Amazon EBS volume will reside.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeRequest.Image">
- <summary>
- Gets and sets the Image property.
- Details about the image.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeRequest.Description">
- <summary>
- Gets and sets the Description property.
- Optional description of the volume being imported.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ImportVolumeRequest.Volume">
- <summary>
- Gets and sets the Volume property.
- Details about the volume.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DisassociateRouteTableResponse">
- <summary>
- The Response for the
- DisassociateRouteTable operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateRouteTableResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateRouteTableResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DisassociateRouteTableResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DisassociateRouteTableResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVpcsResult">
- <summary>
- Describe Vpcs Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsResult.IsSetVpc">
- <summary>
- Checks if Vpc property is set
- </summary>
- <returns>true if Vpc property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVpcsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVpcsResult.Vpc">
- <summary>
- Gets and sets the Vpc property.
- List of VPCs
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSecurityGroupsResponse">
- <summary>
- Describe Security Groups Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsResponse.IsSetDescribeSecurityGroupsResult">
- <summary>
- Checks if DescribeSecurityGroupsResult property is set
- </summary>
- <returns>true if DescribeSecurityGroupsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSecurityGroupsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSecurityGroupsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSecurityGroupsResponse.DescribeSecurityGroupsResult">
- <summary>
- Gets and sets the DescribeSecurityGroupsResult property.
- Describe Security Groups Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeKeyPairsRequest">
- <summary>
- Returns information about key pairs available to
- you. If you specify key pairs, information
- about those key pairs is returned. Otherwise, information for all
- registered key pairs is returned.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsRequest.WithKeyName(System.String[])">
- <summary>
- Sets the KeyName property
- </summary>
- <param name="list">Key pair to describe.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsRequest.IsSetKeyName">
- <summary>
- Checks if KeyName property is set
- </summary>
- <returns>true if KeyName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsRequest.WithFilter(Amazon.EC2.Model.Filter[])">
- <summary>
- Sets the Filter property
- </summary>
- <param name="list">A list of filters used to match system-defined properties and user-defined tags associated with
- the specified KeyPairs.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeKeyPairsRequest.IsSetFilter">
- <summary>
- Checks if Filter property is set
- </summary>
- <returns>true if Filter property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeKeyPairsRequest.KeyName">
- <summary>
- Gets and sets the KeyName property.
- Key pair to describe.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeKeyPairsRequest.Filter">
- <summary>
- Gets and sets the Filter property.
- A list of filters used to match system-defined properties and user-defined tags associated with
- the specified KeyPairs.
- For a complete reference to the available filter keys for this operation, see the
- Amazon EC2 API reference.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeConversionTasksResponse">
- <summary>
- The Response for the
- DescribeConversionTasks operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksResponse.IsSetDescribeConversionTasksResult">
- <summary>
- Checks if DescribeConversionTasksResult property is set
- </summary>
- <returns>true if DescribeConversionTasksResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeConversionTasksResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeConversionTasksResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeConversionTasksResponse.DescribeConversionTasksResult">
- <summary>
- Gets and sets the DescribeConversionTasksResult property.
- DescribeConversionTasks Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVolumeRequest">
- <summary>
- Deletes an Amazon EBS volume that you own. For
- more information about
- Amazon EBS,
- go to the Amazon Elastic Compute
- Cloud Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVolumeRequest.WithVolumeId(System.String)">
- <summary>
- Sets the VolumeId property
- </summary>
- <param name="volumeId">The ID of the volume to delete.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVolumeRequest.IsSetVolumeId">
- <summary>
- Checks if VolumeId property is set
- </summary>
- <returns>true if VolumeId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVolumeRequest.VolumeId">
- <summary>
- Gets and sets the VolumeId property.
- The ID of the volume to delete.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteSecurityGroupResponse">
- <summary>
- Delete Security Group Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSecurityGroupResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSecurityGroupResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteSecurityGroupResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteSecurityGroupResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteNetworkAclResponse">
- <summary>
- The Response for the
- DeleteNetworkAcl operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteNetworkAclResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteNetworkAclResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteDhcpOptionsResponse">
- <summary>
- Delete Dhcp Options Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteDhcpOptionsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteDhcpOptionsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteDhcpOptionsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteDhcpOptionsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateRouteRequest">
- <summary>
- Creates a new route in a route table within a VPC. The route's target can be either a gateway attached
- to the VPC or a NAT instance in the VPC.
-
- When determining how to route traffic, we use the route with the most specific match. For example, let's
- say the traffic is destined for 192.0.2.3, and the route table includes the following two routes:
- 192.0.2.0/24 (goes to some target A)
- 192.0.2.0/28 (goes to some target B)
-
- Both routes apply to the traffic destined for 192.0.2.3. However, the second route in the list is more specific,
- so we use that route to determine where to target the traffic.
-
- For more information about route tables, go to Route Tables in the Amazon Virtual Private Cloud User
- Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The ID of the route table where the route will
- be added.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.WithDestinationCidrBlock(System.String)">
- <summary>
- Sets the DestinationCidrBlock property
- </summary>
- <param name="destinationCidrBlock">The CIDR address block used for the
- destination match. For example: 0.0.0.0/0.
- Routing decisions are based on the most
- specific match.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.IsSetDestinationCidrBlock">
- <summary>
- Checks if DestinationCidrBlock property is set
- </summary>
- <returns>true if DestinationCidrBlock property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.WithGatewayId(System.String)">
- <summary>
- Sets the GatewayId property
- </summary>
- <param name="gatewayId">The ID of a gateway attached to your VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.IsSetGatewayId">
- <summary>
- Checks if GatewayId property is set
- </summary>
- <returns>true if GatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The ID of a NAT instance in your VPC.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateRouteRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteRequest.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The ID of the route table where the route will
- be added.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteRequest.DestinationCidrBlock">
- <summary>
- Gets and sets the DestinationCidrBlock property.
- The CIDR address block used for the
- destination match. For example: 0.0.0.0/0.
- Routing decisions are based on the most
- specific match.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteRequest.GatewayId">
- <summary>
- Gets and sets the GatewayId property.
- The ID of a gateway attached to your VPC.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateRouteRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The ID of a NAT instance in your VPC.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateKeyPairResult">
- <summary>
- Create Key Pair Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairResult.IsSetKeyPair">
- <summary>
- Checks if KeyPair property is set
- </summary>
- <returns>true if KeyPair property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateKeyPairResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateKeyPairResult.KeyPair">
- <summary>
- Gets and sets the KeyPair property.
- Key Pair
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelSpotInstanceRequestsResult">
- <summary>
- The Cancel Spot Instance Requests Result.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsResult.IsSetCancelledSpotInstanceRequest">
- <summary>
- Checks if CancelledSpotInstanceRequest property is set
- </summary>
- <returns>true if CancelledSpotInstanceRequest property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelSpotInstanceRequestsResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelSpotInstanceRequestsResult.CancelledSpotInstanceRequest">
- <summary>
- Gets and sets the CancelledSpotInstanceRequest property.
- The list of cancelled Spot Instance requests.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelConversionTaskResponse">
- <summary>
- The Response for the
- CancelConversionTask operation.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelConversionTaskResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelConversionTaskResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelConversionTaskResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelConversionTaskResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AvailabilityZone">
- <summary>
- Availability Zone
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.WithZoneName(System.String)">
- <summary>
- Sets the ZoneName property
- </summary>
- <param name="zoneName">Name of the Availability Zone.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.IsSetZoneName">
- <summary>
- Checks if ZoneName property is set
- </summary>
- <returns>true if ZoneName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.WithZoneState(System.String)">
- <summary>
- Sets the ZoneState property
- </summary>
- <param name="zoneState">State of the Availability Zone.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.IsSetZoneState">
- <summary>
- Checks if ZoneState property is set
- </summary>
- <returns>true if ZoneState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.WithRegionName(System.String)">
- <summary>
- Sets the RegionName property
- </summary>
- <param name="regionName">Name of the region.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.IsSetRegionName">
- <summary>
- Checks if RegionName property is set
- </summary>
- <returns>true if RegionName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.WithMessage(System.String[])">
- <summary>
- Sets the Message property
- </summary>
- <param name="list">The Availability Zone messages.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AvailabilityZone.IsSetMessage">
- <summary>
- Checks if Message property is set
- </summary>
- <returns>true if Message property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AvailabilityZone.ZoneName">
- <summary>
- Gets and sets the ZoneName property.
- Name of the Availability Zone.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AvailabilityZone.ZoneState">
- <summary>
- Gets and sets the ZoneState property.
- State of the Availability Zone.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AvailabilityZone.RegionName">
- <summary>
- Gets and sets the RegionName property.
- Name of the region.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AvailabilityZone.Message">
- <summary>
- Gets and sets the Message property.
- The Availability Zone messages.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.AssociateRouteTableRequest">
- <summary>
- Associates a subnet with a route table. The subnet and route table must be in the same VPC. This
- association causes traffic originating from the subnet to be routed according to the routes in the route
- table. The action returns an association ID, which you need if you want to disassociate the route table
- from the subnet later. A route table can be associated with multiple subnets.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableRequest.WithRouteTableId(System.String)">
- <summary>
- Sets the RouteTableId property
- </summary>
- <param name="routeTableId">The ID of the route table.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableRequest.IsSetRouteTableId">
- <summary>
- Checks if RouteTableId property is set
- </summary>
- <returns>true if RouteTableId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableRequest.WithSubnetId(System.String)">
- <summary>
- Sets the SubnetId property
- </summary>
- <param name="subnetId">The ID of the subnet.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.AssociateRouteTableRequest.IsSetSubnetId">
- <summary>
- Checks if SubnetId property is set
- </summary>
- <returns>true if SubnetId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateRouteTableRequest.RouteTableId">
- <summary>
- Gets and sets the RouteTableId property.
- The ID of the route table.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.AssociateRouteTableRequest.SubnetId">
- <summary>
- Gets and sets the SubnetId property.
- The ID of the subnet.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ActivateLicenseRequest">
- <summary>
- Activates a license.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ActivateLicenseRequest.WithLicenseId(System.String)">
- <summary>
- Sets the LicenseId property
- </summary>
- <param name="licenseId">Specifies the ID for the specific license to
- activate against.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ActivateLicenseRequest.IsSetLicenseId">
- <summary>
- Checks if LicenseId property is set
- </summary>
- <returns>true if LicenseId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ActivateLicenseRequest.WithCapacity(System.Decimal)">
- <summary>
- Sets the Capacity property
- </summary>
- <param name="capacity">Specifies the additional number of licenses to
- activate.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ActivateLicenseRequest.IsSetCapacity">
- <summary>
- Checks if Capacity property is set
- </summary>
- <returns>true if Capacity property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ActivateLicenseRequest.LicenseId">
- <summary>
- Gets and sets the LicenseId property.
- Specifies the ID for the specific license to
- activate against.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ActivateLicenseRequest.Capacity">
- <summary>
- Gets and sets the Capacity property.
- Specifies the additional number of licenses to
- activate.
- </summary>
- </member>
- <member name="T:Amazon.EC2.AmazonEC2Config">
- <summary>
- Configuration for accessing Amazon EC2 service
- </summary>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithSignatureMethod(System.String)">
- <summary>
- Sets the SignatureMethod property
- </summary>
- <param name="signatureMethod">SignatureMethod property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetSignatureMethod">
- <summary>
- Checks if SignatureMethod property is set
- </summary>
- <returns>true if SignatureMethod property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithSignatureVersion(System.String)">
- <summary>
- Sets the SignatureVersion property
- </summary>
- <param name="signatureVersion">SignatureVersion property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetSignatureVersion">
- <summary>
- Checks if SignatureVersion property is set
- </summary>
- <returns>true if SignatureVersion property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithUserAgent(System.String)">
- <summary>
- Sets the UserAgent property
- </summary>
- <param name="userAgent">UserAgent property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetUserAgent">
- <summary>
- Checks if UserAgent property is set
- </summary>
- <returns>true if UserAgent property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithServiceURL(System.String)">
- <summary>
- Sets the ServiceURL property
- </summary>
- <param name="serviceURL">ServiceURL property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetServiceURL">
- <summary>
- Checks if ServiceURL property is set
- </summary>
- <returns>true if ServiceURL property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithProxyHost(System.String)">
- <summary>
- Sets the ProxyHost property
- </summary>
- <param name="proxyHost">ProxyHost property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetProxyHost">
- <summary>
- Checks if ProxyHost property is set
- </summary>
- <returns>true if ProxyHost property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithProxyPort(System.Int32)">
- <summary>
- Sets the ProxyPort property
- </summary>
- <param name="proxyPort">ProxyPort property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetProxyPort">
- <summary>
- Checks if ProxyPort property is set
- </summary>
- <returns>true if ProxyPort property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithMaxErrorRetry(System.Int32)">
- <summary>
- Sets the MaxErrorRetry property
- </summary>
- <param name="maxErrorRetry">MaxErrorRetry property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetMaxErrorRetry">
- <summary>
- Checks if MaxErrorRetry property is set
- </summary>
- <returns>true if MaxErrorRetry property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithUseSecureStringForAwsSecretKey(System.Boolean)">
- <summary>
- Sets the UseSecureString property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <param name="fSecure">
- Whether a secure string should be used or not.
- </param>
- <returns>The Config object with the property set</returns>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithProxyUsername(System.String)">
- <summary>
- Sets the ProxyUsername property
- </summary>
- <param name="userName">Value for the ProxyUsername property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetProxyUsername">
- <summary>
- Checks if ProxyUsername property is set
- </summary>
- <returns>true if ProxyUsername property is set</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.WithProxyPassword(System.String)">
- <summary>
- Sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- <param name="password">ProxyPassword property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.AmazonEC2Config.IsSetProxyPassword">
- <summary>
- Checks if ProxyPassword property is set
- </summary>
- <returns>true if ProxyPassword property is set</returns>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.ServiceVersion">
- <summary>
- Gets Service Version
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.SignatureMethod">
- <summary>
- Gets and sets of the signatureMethod property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.SignatureVersion">
- <summary>
- Gets and sets of the SignatureVersion property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.UserAgent">
- <summary>
- Gets and sets of the UserAgent property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.ServiceURL">
- <summary>
- Gets and sets of the ServiceURL property.
- This is an optional property; change it
- only if you want to try a different service
- endpoint or want to switch between https and http.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.ProxyHost">
- <summary>
- Gets and sets of the ProxyHost property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.ProxyPort">
- <summary>
- Gets and sets of the ProxyPort property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.MaxErrorRetry">
- <summary>
- Gets and sets of the MaxErrorRetry property.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.UseSecureStringForAwsSecretKey">
- <summary>
- Gets and Sets the UseSecureStringForAwsSecretKey property.
- By default, the AWS Secret Access Key is stored
- in a SecureString (true) - this is one of the secure
- ways to store a secret provided by the .NET Framework.
- But, the use of SecureStrings is not supported in Medium
- Trust Windows Hosting environments. If you are building an
- ASP.NET application that needs to run with Medium Trust,
- set this property to false, and the client will
- not save your AWS Secret Key in a secure string. Changing
- the default to false can result in the Secret Key being
- vulnerable; please use this property judiciously.
- </summary>
- <remarks>Storing the AWS Secret Access Key is not
- recommended unless absolutely necessary.
- </remarks>
- <seealso cref="T:System.Security.SecureString"/>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.ProxyUsername">
- <summary>
- Gets and sets the ProxyUsername property.
- Used in conjunction with the ProxyPassword
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- </member>
- <member name="P:Amazon.EC2.AmazonEC2Config.ProxyPassword">
- <summary>
- Gets and sets the ProxyPassword property.
- Used in conjunction with the ProxyUsername
- property to authenticate requests with the
- specified Proxy server.
- </summary>
- <remarks>
- If this property isn't set, String.Empty is used as
- the proxy password. This property isn't
- used if ProxyUsername is null or empty.
- </remarks>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.SetAlarmStateResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SetAlarmState operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.PutMetricDataResponse">
- <summary>
- Returns information about the PutMetricData response metadata.
- The PutMetricData operation has a void result type.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.PutMetricAlarmRequest">
- <summary>
- Container for the parameters to the PutMetricAlarm operation.
- <para> Creates or updates an alarm and associates it with the
- specified Amazon CloudWatch metric. Optionally, this operation can
- associate one or more Amazon Simple Notification Service resources
- with the alarm. </para> <para> When this operation creates an alarm,
- the alarm state is immediately set to <c>INSUFFICIENT_DATA</c> . The
- alarm is evaluated and its <c>StateValue</c> is set appropriately.
- Any actions associated with the <c>StateValue</c> is then executed.
- </para> <para><b>NOTE:</b> When updating an existing alarm, its
- StateValue is left unchanged. </para>
- </summary>
- <seealso cref="M:Amazon.CloudWatch.AmazonCloudWatch.PutMetricAlarm(Amazon.CloudWatch.Model.PutMetricAlarmRequest)"/>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithAlarmName(System.String)">
- <summary>
- Sets the AlarmName property
- </summary>
- <param name="alarmName">The value to set for the AlarmName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithAlarmDescription(System.String)">
- <summary>
- Sets the AlarmDescription property
- </summary>
- <param name="alarmDescription">The value to set for the AlarmDescription property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithActionsEnabled(System.Boolean)">
- <summary>
- Sets the ActionsEnabled property
- </summary>
- <param name="actionsEnabled">The value to set for the ActionsEnabled property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithOKActions(System.String[])">
- <summary>
- Adds elements to the OKActions collection
- </summary>
- <param name="oKActions">The values to add to the OKActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithOKActions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the OKActions collection
- </summary>
- <param name="oKActions">The values to add to the OKActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithAlarmActions(System.String[])">
- <summary>
- Adds elements to the AlarmActions collection
- </summary>
- <param name="alarmActions">The values to add to the AlarmActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithAlarmActions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AlarmActions collection
- </summary>
- <param name="alarmActions">The values to add to the AlarmActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithInsufficientDataActions(System.String[])">
- <summary>
- Adds elements to the InsufficientDataActions collection
- </summary>
- <param name="insufficientDataActions">The values to add to the InsufficientDataActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithInsufficientDataActions(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the InsufficientDataActions collection
- </summary>
- <param name="insufficientDataActions">The values to add to the InsufficientDataActions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithMetricName(System.String)">
- <summary>
- Sets the MetricName property
- </summary>
- <param name="metricName">The value to set for the MetricName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithNamespace(System.String)">
- <summary>
- Sets the Namespace property
- </summary>
- <param name="namespaceValue">The value to set for the Namespace property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithStatistic(System.String)">
- <summary>
- Sets the Statistic property
- </summary>
- <param name="statistic">The value to set for the Statistic property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithDimensions(Amazon.CloudWatch.Model.Dimension[])">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithDimensions(System.Collections.Generic.IEnumerable{Amazon.CloudWatch.Model.Dimension})">
- <summary>
- Adds elements to the Dimensions collection
- </summary>
- <param name="dimensions">The values to add to the Dimensions collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithPeriod(System.Int32)">
- <summary>
- Sets the Period property
- </summary>
- <param name="period">The value to set for the Period property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithUnit(System.String)">
- <summary>
- Sets the Unit property
- </summary>
- <param name="unit">The value to set for the Unit property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithEvaluationPeriods(System.Int32)">
- <summary>
- Sets the EvaluationPeriods property
- </summary>
- <param name="evaluationPeriods">The value to set for the EvaluationPeriods property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithThreshold(System.Double)">
- <summary>
- Sets the Threshold property
- </summary>
- <param name="threshold">The value to set for the Threshold property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.PutMetricAlarmRequest.WithComparisonOperator(System.String)">
- <summary>
- Sets the ComparisonOperator property
- </summary>
- <param name="comparisonOperator">The value to set for the ComparisonOperator property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.AlarmName">
- <summary>
- The descriptive name for the alarm. This name must be unique within the user's AWS account
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.AlarmDescription">
- <summary>
- The description for the alarm.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.ActionsEnabled">
- <summary>
- Indicates whether or not actions should be executed during any changes to the alarm's state.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.OKActions">
- <summary>
- The list of actions to execute when this alarm transitions into an <c>OK</c> state from any other state. Each action is specified as an
- Amazon Resource Number (ARN). Currently the only action supported is publishing to an Amazon SNS topic or an Amazon Auto Scaling policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.AlarmActions">
- <summary>
- The list of actions to execute when this alarm transitions into an <c>ALARM</c> state from any other state. Each action is specified as an
- Amazon Resource Number (ARN). Currently the only action supported is publishing to an Amazon SNS topic or an Amazon Auto Scaling policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.InsufficientDataActions">
- <summary>
- The list of actions to execute when this alarm transitions into an <c>INSUFFICIENT_DATA</c> state from any other state. Each action is
- specified as an Amazon Resource Number (ARN). Currently the only action supported is publishing to an Amazon SNS topic or an Amazon Auto
- Scaling policy.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 5</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.MetricName">
- <summary>
- The name for the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.Namespace">
- <summary>
- The namespace for the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[^:].*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.Statistic">
- <summary>
- The statistic to apply to the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>SampleCount, Average, Sum, Minimum, Maximum</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.Dimensions">
- <summary>
- The dimensions for the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.Period">
- <summary>
- The period in seconds over which the specified statistic is applied.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>60 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.Unit">
- <summary>
- The unit for the alarm's associated metric.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, None</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.EvaluationPeriods">
- <summary>
- The number of periods over which data is compared to the specified threshold.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.Threshold">
- <summary>
- The value against which the specified statistic is compared.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.PutMetricAlarmRequest.ComparisonOperator">
- <summary>
- The arithmetic operation to use when comparing the specified <c>Statistic</c> and <c>Threshold</c>. The specified <c>Statistic</c> value is
- used as the first operand.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.Signer">
- <summary>
- The Signer complex type specifies an AWS accounts that has permission to create signed URLs
- for private content. The Accounts that have signing privileges are specified in the
- DistributionConfig complex type and can be set using the SetDistributionConfig CloudFront
- operation. A signer can be:
- <list type="number">
- <item>Yourself (you must explicitly give yourself permission).
- <see cref="P:Amazon.CloudFront.Model.UrlTrustedSigners.EnableSelf"/>
- </item>
- <item>An AwsAccountNumber for each AWS account (other than your own) that you is given signing
- authority. The account number has no dashes.
- <see cref="P:Amazon.CloudFront.Model.UrlTrustedSigners.AwsAccountNumbers"/>
- </item>
- </list>
- The Signer element also includes the IDs of any active key pairs associated with the trusted signer's
- AWS account. If no KeyPairId element appears for a Signer, that signer can't create working signed URLs.
- </summary>
- <seealso cref="M:Amazon.CloudFront.AmazonCloudFrontClient.SetDistributionConfig" />
- <seealso cref="T:Amazon.CloudFront.Model.CloudFrontDistributionConfig"/>
- <seealso href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionConfigDatatype.html"/>
- </member>
- <member name="M:Amazon.CloudFront.Model.Signer.IsSetKeypairId">
- <summary>
- Checks if KeyPairId property is set
- </summary>
- <returns>true if KeyPairId property is set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.Signer.IsSetAwsAccountNumber">
- <summary>
- Checks if AwsAccountNumber property is set
- </summary>
- <returns>true if AwsAccountNumber property is set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.Signer.KeyPairId">
- <summary>
- Gets and Sets the KeyPairId property.
- A list of the KeyPairId for the AWS account
- that has URL signing authority.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.Signer.Self">
- <summary>
- Gets and sets the Self property.
- Whether this Signer specifies "your" account.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.Signer.AwsAccountNumber">
- <summary>
- Gets and sets the AwsAccountNumber property.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest">
- <summary>
- The SetOriginAccessIdentityConfigRequest contains the parameters used for the
- SetOriginAccessIdentityConfig operation.
- <br />Required Parameters: Id
- <br />Required Parameters: OriginAccessIdentityConfig
- <br />Required Parameters: ETag of the Origin Access Identity.
- This value can be retrieved via a call to GetOriginAccessIdentityInfo.
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest.WithId(System.String)">
- <summary>
- Sets the Id property for this request.
- This is the Id of the CloudFront Origin Access Identity
- that will be reconfigured by this request.
- </summary>
- <param name="id">The value that Id is set to</param>
- <returns>the request with the Id set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest.WithOriginAccessIdentityConfig(Amazon.CloudFront.Model.CloudFrontOriginAccessIdentityConfig)">
- <summary>
- Sets the OriginAccessIdentityConfig property for this request.
- </summary>
- <param name="config">The value that OriginAccessIdentityConfig is set to</param>
- <returns>the request with the Configuration set</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest.IsSetOriginAccessIdentityConfig">
- <summary>
- Checks if DistributionConfig property is set.
- </summary>
- <returns>true if DistributionConfig property is set.</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest.WithETag(System.String)">
- <summary>
- Sets the ETag property for this request.
- This is the ETag of the CloudFront Origin Access Identity which will be reconfigured.
- </summary>
- <param name="etag">The value that ETag is set to</param>
- <returns>the request with the ETag set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest.Id">
- <summary>
- Gets and sets the Id property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest.OriginAccessIdentityConfig">
- <summary>
- Gets and Sets the OriginAccessIdentityConfig property.
- The CloudFront Origin Access Identity's configuration will be modified
- to reflect the values in this configuration object.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.SetOriginAccessIdentityConfigRequest.ETag">
- <summary>
- Gets and sets the ETag property. This value should be the ETag of the
- Origin Access Identity.
- <see cref="P:Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity.ETag"/>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.Protocol">
- <summary>
- The protocols allowed as a RequiredProtocol
- by a CloudFront Distribution's configuration.
- </summary>
- </member>
- <member name="F:Amazon.CloudFront.Model.Protocol.https">
- <summary>
- The HTTPS protocol
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.GetTemplateResultUnmarshaller">
- <summary>
- GetTemplateResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackEventsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeStackEvents operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Parameter">
- <summary>
- <para> The Parameter data type. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Parameter.WithParameterKey(System.String)">
- <summary>
- Sets the ParameterKey property
- </summary>
- <param name="parameterKey">The value to set for the ParameterKey property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.Parameter.WithParameterValue(System.String)">
- <summary>
- Sets the ParameterValue property
- </summary>
- <param name="parameterValue">The value to set for the ParameterValue property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Parameter.ParameterKey">
- <summary>
- The key associated with the parameter.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.Parameter.ParameterValue">
- <summary>
- The value associated with the parameter.
-
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.ListStacksRequest">
- <summary>
- Container for the parameters to the ListStacks operation.
- <para> Returns the summary information for stacks whose status matches the specified StackStatusFilter. Summary information for stacks that
- have been deleted is kept for 90 days after the stack is deleted. If no StackStatusFilter is specified, summary information for all stacks
- is returned (including existing stacks and stacks that have been deleted). </para>
- </summary>
- <seealso cref="M:Amazon.CloudFormation.AmazonCloudFormation.ListStacks(Amazon.CloudFormation.Model.ListStacksRequest)"/>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStacksRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStacksRequest.WithStackStatusFilter(System.String[])">
- <summary>
- Adds elements to the StackStatusFilter collection
- </summary>
- <param name="stackStatusFilter">The values to add to the StackStatusFilter collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.ListStacksRequest.WithStackStatusFilter(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the StackStatusFilter collection
- </summary>
- <param name="stackStatusFilter">The values to add to the StackStatusFilter collection </param>
- <returns>this instance</returns>
- </member>
- <member name="T:Amazon.CloudFormation.Model.DescribeStackEventsResult">
- <summary>
- <para> The output for a DescribeStackEvents action. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackEventsResult.WithStackEvents(Amazon.CloudFormation.Model.StackEvent[])">
- <summary>
- Adds elements to the StackEvents collection
- </summary>
- <param name="stackEvents">The values to add to the StackEvents collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackEventsResult.WithStackEvents(System.Collections.Generic.IEnumerable{Amazon.CloudFormation.Model.StackEvent})">
- <summary>
- Adds elements to the StackEvents collection
- </summary>
- <param name="stackEvents">The values to add to the StackEvents collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFormation.Model.DescribeStackEventsResult.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsResult.StackEvents">
- <summary>
- A list of <c>StackEvents</c> structures.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudFormation.Model.DescribeStackEventsResult.NextToken">
- <summary>
- String that identifies the start of the next list of events, if there is one.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1024</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.TerminateInstanceInAutoScalingGroupResultUnmarshaller">
- <summary>
- TerminateInstanceInAutoScalingGroupResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.InstanceMonitoringUnmarshaller">
- <summary>
- InstanceMonitoring Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DisableMetricsCollectionResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DisableMetricsCollection operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeScalingProcessTypesRequestMarshaller">
- <summary>
- Describe Scaling Process Types Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAdjustmentTypesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeAdjustmentTypes operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.SuspendProcessesRequest">
- <summary>
- Container for the parameters to the SuspendProcesses operation.
- <para> Suspends Auto Scaling processes for an Auto Scaling group. To suspend specific process types, specify them by name with the
- <c>ScalingProcesses.member.N</c> parameter. To suspend all process types, omit the <c>ScalingProcesses.member.N</c> parameter. </para>
- <para><b>IMPORTANT:</b> Suspending either of the two primary process types, Launch or Terminate, can prevent other process types from
- functioning properly. For more information about processes and their dependencies, see ProcessType. </para> <para> To resume processes that
- have been suspended, use ResumeProcesses. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.SuspendProcesses(Amazon.AutoScaling.Model.SuspendProcessesRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SuspendProcessesRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SuspendProcessesRequest.WithScalingProcesses(System.String[])">
- <summary>
- Adds elements to the ScalingProcesses collection
- </summary>
- <param name="scalingProcesses">The values to add to the ScalingProcesses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.SuspendProcessesRequest.WithScalingProcesses(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the ScalingProcesses collection
- </summary>
- <param name="scalingProcesses">The values to add to the ScalingProcesses collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SuspendProcessesRequest.AutoScalingGroupName">
- <summary>
- The name or Amazon Resource Name (ARN) of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.SuspendProcessesRequest.ScalingProcesses">
- <summary>
- The processes that you want to suspend or resume, which can include one or more of the following: <ul> <li>Launch</li> <li>Terminate</li>
- <li>HealthCheck</li> <li>ReplaceUnhealthy</li> <li>AZRebalance</li> <li>AlarmNotifications</li> <li>ScheduledActions</li> </ul> To suspend
- all process types, omit this parameter.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction">
- <summary>
- <para> This data type stores information about an scheduled update to an Auto Scaling group. </para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.WithScheduledActionName(System.String)">
- <summary>
- Sets the ScheduledActionName property
- </summary>
- <param name="scheduledActionName">The value to set for the ScheduledActionName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.WithScheduledActionARN(System.String)">
- <summary>
- Sets the ScheduledActionARN property
- </summary>
- <param name="scheduledActionARN">The value to set for the ScheduledActionARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.WithTime(System.DateTime)">
- <summary>
- Sets the Time property
- </summary>
- <param name="time">The value to set for the Time property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.WithMinSize(System.Int32)">
- <summary>
- Sets the MinSize property
- </summary>
- <param name="minSize">The value to set for the MinSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.WithMaxSize(System.Int32)">
- <summary>
- Sets the MaxSize property
- </summary>
- <param name="maxSize">The value to set for the MaxSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.WithDesiredCapacity(System.Int32)">
- <summary>
- Sets the DesiredCapacity property
- </summary>
- <param name="desiredCapacity">The value to set for the DesiredCapacity property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group to be updated.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.ScheduledActionName">
- <summary>
- The name of this scheduled action.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.ScheduledActionARN">
- <summary>
- The Amazon Resource Name (ARN) of this scheduled action.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.Time">
- <summary>
- The time that the action is scheduled to occur. This value can be up to one month in the future.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.MinSize">
- <summary>
- The minimum size of the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.MaxSize">
- <summary>
- The maximum size of the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ScheduledUpdateGroupAction.DesiredCapacity">
- <summary>
- The number of instances you prefer to maintain in your Auto Scaling group. The desired capacity must be no less than
- <a>ScheduledUpdateGroupAction$MinSize</a> and no greater than <a>ScheduledUpdateGroupAction$MaxSize</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.PutScalingPolicyRequest">
- <summary>
- Container for the parameters to the PutScalingPolicy operation.
- <para> Creates or updates a policy for an Auto Scaling group. To update an existing policy, use the existing policy name and set the
- parameter(s) you want to change. Any existing parameter not changed in an update to an existing policy is not changed in this update
- request. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.PutScalingPolicy(Amazon.AutoScaling.Model.PutScalingPolicyRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScalingPolicyRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScalingPolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScalingPolicyRequest.WithScalingAdjustment(System.Int32)">
- <summary>
- Sets the ScalingAdjustment property
- </summary>
- <param name="scalingAdjustment">The value to set for the ScalingAdjustment property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScalingPolicyRequest.WithAdjustmentType(System.String)">
- <summary>
- Sets the AdjustmentType property
- </summary>
- <param name="adjustmentType">The value to set for the AdjustmentType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutScalingPolicyRequest.WithCooldown(System.Int32)">
- <summary>
- Sets the Cooldown property
- </summary>
- <param name="cooldown">The value to set for the Cooldown property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScalingPolicyRequest.AutoScalingGroupName">
- <summary>
- The name or ARN of the Auto Scaling Group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScalingPolicyRequest.PolicyName">
- <summary>
- The name of the policy you want to create or update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScalingPolicyRequest.ScalingAdjustment">
- <summary>
- The number of instances by which to scale. AdjustmentType determines the interpretation of this number (e.g., as an absolute number or as a
- percentage of the existing Auto Scaling group size). A positive increment adds to the current capacity and a negative value removes from the
- current capacity.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScalingPolicyRequest.AdjustmentType">
- <summary>
- Specifies whether the <c>ScalingAdjustment</c> is an absolute number or a percentage of the current capacity. Valid values are
- <c>ChangeInCapacity</c>, <c>ExactCapacity</c>, and <c>PercentChangeInCapacity</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScalingPolicyRequest.Cooldown">
- <summary>
- The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResult">
- <summary>
- <para>The output of the DescribeMetricCollectionTypes action.</para>
- </summary>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResult.WithMetrics(Amazon.AutoScaling.Model.MetricCollectionType[])">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResult.WithMetrics(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.MetricCollectionType})">
- <summary>
- Adds elements to the Metrics collection
- </summary>
- <param name="metrics">The values to add to the Metrics collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResult.WithGranularities(Amazon.AutoScaling.Model.MetricGranularityType[])">
- <summary>
- Adds elements to the Granularities collection
- </summary>
- <param name="granularities">The values to add to the Granularities collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResult.WithGranularities(System.Collections.Generic.IEnumerable{Amazon.AutoScaling.Model.MetricGranularityType})">
- <summary>
- Adds elements to the Granularities collection
- </summary>
- <param name="granularities">The values to add to the Granularities collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResult.Metrics">
- <summary>
- The list of Metrics collected.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeMetricCollectionTypesResult.Granularities">
- <summary>
- A list of Granularities for the listed Metrics.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest">
- <summary>
- Container for the parameters to the DescribeLaunchConfigurations operation.
- <para> Returns a full description of the launch configurations given the specified names. </para> <para> If no names are specified, then the
- full details of all launch configurations are returned. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DescribeLaunchConfigurations(Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest.WithLaunchConfigurationNames(System.String[])">
- <summary>
- Adds elements to the LaunchConfigurationNames collection
- </summary>
- <param name="launchConfigurationNames">The values to add to the LaunchConfigurationNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest.WithLaunchConfigurationNames(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the LaunchConfigurationNames collection
- </summary>
- <param name="launchConfigurationNames">The values to add to the LaunchConfigurationNames collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">The value to set for the NextToken property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest.WithMaxRecords(System.Int32)">
- <summary>
- Sets the MaxRecords property
- </summary>
- <param name="maxRecords">The value to set for the MaxRecords property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest.LaunchConfigurationNames">
- <summary>
- A list of launch configuration names.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest.NextToken">
- <summary>
- A string that marks the start of the next batch of returned results.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DescribeLaunchConfigurationsRequest.MaxRecords">
- <summary>
- The maximum number of launch configurations.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 50</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.DeleteScheduledActionRequest">
- <summary>
- Container for the parameters to the DeleteScheduledAction operation.
- <para>Deletes a scheduled action previously created using the PutScheduledUpdateGroupAction.</para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.DeleteScheduledAction(Amazon.AutoScaling.Model.DeleteScheduledActionRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeleteScheduledActionRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.DeleteScheduledActionRequest.WithScheduledActionName(System.String)">
- <summary>
- Sets the ScheduledActionName property
- </summary>
- <param name="scheduledActionName">The value to set for the ScheduledActionName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DeleteScheduledActionRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.DeleteScheduledActionRequest.ScheduledActionName">
- <summary>
- The name of the action you want to delete.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.SQS.Model.AddPermissionResponse">
- <summary>
- Returns a list of messages and metadata about the request.
- </summary>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.SQS.Model.AddPermissionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.SQS.Model.AddPermissionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Information about the request provided by Amazon SQS.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Transform.SendEmailResponseUnmarshaller">
- <summary>
- Response Unmarshaller for SendEmail operation
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.SendEmailResponse">
- <summary>
- Returns information about the SendEmailResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.SendEmailResponse.SendEmailResult">
- <summary>
- Gets and sets the SendEmailResult property.
- Represents a unique message ID returned from a successful SendEmail request.
- </summary>
- </member>
- <member name="T:Amazon.SimpleEmail.Model.Message">
- <summary>
- <para>Represents the message to be sent, composed of a subject and a
- body.</para>
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Message.#ctor">
- <summary>
- Default constructor for a new Message object. Callers should use the
- properties or fluent setter (With...) methods to initialize this object after creating it.
- </summary>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Message.#ctor(Amazon.SimpleEmail.Model.Content,Amazon.SimpleEmail.Model.Body)">
- <summary>
- Constructs a new Message object.
- Callers should use the properties or fluent setter (With...) methods to
- initialize any additional object members.
- </summary>
-
- <param name="subject"> The subject of the message: A short summary of the content, which will appear in the recipient's inbox. </param>
- <param name="body"> The message body. </param>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Message.WithSubject(Amazon.SimpleEmail.Model.Content)">
- <summary>
- Sets the Subject property
- </summary>
- <param name="subject">The value to set for the Subject property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleEmail.Model.Message.WithBody(Amazon.SimpleEmail.Model.Body)">
- <summary>
- Sets the Body property
- </summary>
- <param name="body">The value to set for the Body property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Message.Subject">
- <summary>
- The subject of the message: A short summary of the content, which will appear in the recipient's inbox.
-
- </summary>
- </member>
- <member name="P:Amazon.SimpleEmail.Model.Message.Body">
- <summary>
- The message body.
-
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Util.AmazonSimpleDBUtil">
- <summary>
- Provides a collection of static functions to:
- 1. Convert various values into strings that may be compared lexicographically
- 2. Decode a Base64 Encoded string
- 3. Decode an Amazon SimpleDB Attribute's properties
- 4. Decode an Amazon SimpleDB Item's properties and constituent Item(s)
- </summary>
- </member>
- <member name="F:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.dateFormat">
- <summary>
- Date format String, e.g. 2007-12-06T10:32:43.141-08:00
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.EncodeZeroPadding(System.Int32,System.Int32)">
- <summary>
- Encodes positive integer value into a string by zero-padding it up to the specified number of digits.
- </summary>
- <remarks>
- For example, the integer 123 encoded with a 6 digit maximum would be represented as 000123
- </remarks>
- <param name="number">positive integer to be encoded</param>
- <param name="maxNumDigits">maximum number of digits in the largest value in the data set</param>
- <returns>A string representation of the zero-padded integer</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.EncodeZeroPadding(System.Single,System.Int32)">
- <summary>
- Encodes positive single-precision floating point value into a string by zero-padding it to the specified number of digits.
- </summary>
- <remarks>
- This function only zero-pads digits to the left of the decimal point.
-
- For example, the value 123.456 encoded with a 6 digit maximum would be represented as 000123.456
- </remarks>
- <param name="number">positive floating point value to be encoded</param>
- <param name="maxNumDigits">maximum number of digits in the largest value in the data set</param>
- <returns>A string representation of the zero-padded floating point value</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.EncodeRealNumberRange(System.Int32,System.Int32,System.Int32)">
- <summary>
- Encodes real integer value into a string by offsetting and zero-padding
- number up to the specified number of digits. Use this encoding method if the data
- range set includes both positive and negative values.
- </summary>
- <remarks>
- For example, the integer value -123 offset by 1000 with a maximum of 6 digits would be:
- -123 + 1000, padded to 6 digits: 000877
- </remarks>
- <param name="number">integer to be encoded</param>
- <param name="maxNumDigits">maximum number of digits in the largest absolute value in the data set</param>
- <param name="offsetValue">offset value, has to be greater than absolute value of any negative number in the data set.</param>
- <returns>A string representation of the integer</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.EncodeRealNumberRange(System.Single,System.Int32,System.Int32,System.Int32)">
- <summary>
- Encodes real float value into a string by offsetting and zero-padding
- number up to the specified number of digits. Use this encoding method if the data
- range set includes both positive and negative values.
- </summary>
- <remarks>
- For example, the floating point value -123.456 offset by 1000 with
- a maximum of 6 digits to the left, and 4 to the right would be:
- 0008765440
- </remarks>
- <param name="number">floating point value to be encoded</param>
- <param name="maxDigitsLeft">maximum number of digits left of the decimal point in the largest absolute value in the data set</param>
- <param name="maxDigitsRight">maximum number of digits right of the decimal point in the largest absolute value in the data set, i.e. precision</param>
- <param name="offsetValue">offset value, has to be greater than absolute value of any negative number in the data set.</param>
- <returns>A string representation of the integer</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeZeroPaddingFloat(System.String)">
- <summary>
- Decodes zero-padded positive float value from the string representation
- </summary>
- <param name="value">zero-padded string representation of the float value</param>
- <returns>original float value</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeZeroPaddingInt(System.String)">
- <summary>
- Decodes zero-padded positive integer value from the string representation
- </summary>
- <param name="value">zero-padded string representation of the integer</param>
- <returns>original integer value</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeRealNumberRangeInt(System.String,System.Int32)">
- <summary>
- Decodes float value from the string representation that was created by using encodeRealNumberRange(..) function.
- </summary>
- <param name="value">string representation of the integer value</param>
- <param name="offsetValue">offset value that was used in the original encoding</param>
- <returns>original integer value</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeRealNumberRangeFloat(System.String,System.Int32,System.Int32)">
- <summary>
- Decodes float value from the string representation that was created by using encodeRealNumberRange(..) function.
- </summary>
- <param name="value">string representation of the integer value</param>
- <param name="maxDigitsRight">maximum number of digits left of the decimal point in the largest absolute
- value in the data set (must be the same as the one used for encoding).</param>
- <param name="offsetValue">offset value that was used in the original encoding</param>
- <returns>original float value</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.EncodeDate(System.DateTime)">
- <summary>
- Encodes date value into string format that can be compared lexicographically
- </summary>
- <param name="date">date value to be encoded</param>
- <returns>string representation of the date value</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeDate(System.String)">
- <summary>
- Decodes date value from the string representation created using encodeDate(..) function.
- </summary>
- <param name="value">string representation of the date value</param>
- <returns>original date value</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeAttribute(Amazon.SimpleDB.Model.Attribute)">
- <summary>
- Decodes the base64 encoded properties of the Attribute.
- The Name and/or Value properties of an Attribute can be base64 encoded.
- </summary>
- <param name="inputAttribute">The properties of this Attribute will be decoded</param>
- <seealso cref="P:Amazon.SimpleDB.Model.Attribute.NameEncoding" />
- <seealso cref="P:Amazon.SimpleDB.Model.Attribute.ValueEncoding" />
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeAttributes(System.Collections.Generic.List{Amazon.SimpleDB.Model.Attribute})">
- <summary>
- Decodes the base64 properties of every SimpleDB Attribute specified in
- list of attributes specified as input.
- </summary>
- <param name="attributes">The Attributes in this list will be decoded</param>
- <seealso cref="P:Amazon.SimpleDB.Model.Attribute.NameEncoding" />
- <seealso cref="P:Amazon.SimpleDB.Model.Attribute.ValueEncoding" />
- <seealso cref="P:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeAttribute" />
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeItem(Amazon.SimpleDB.Model.Item)">
- <summary>
- Decodes the base64 encoded members of the Item if necessary.
- The Name property of an Item can be base64 encoded.
- This method also decodes any encoded properties of the Attributes
- associated with the Input Item.
- </summary>
- <param name="inputItem">The Item to be decoded</param>
- <seealso cref="P:Amazon.SimpleDB.Model.Item.NameEncoding" />
- <seealso cref="P:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeAttributes" />
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeItems(System.Collections.Generic.List{Amazon.SimpleDB.Model.Item})">
- <summary>
- Decodes the base64 encoded members of the Item List.
- </summary>
- <param name="inputItems">The Item List to be decoded</param>
- <seealso cref="P:Amazon.SimpleDB.Model.Item.NameEncoding" />
- <seealso cref="P:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeAttributes" />
- <seealso cref="P:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeItem" />
- </member>
- <member name="M:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.DecodeBase64String(System.String)">
- <summary>
- Returns the Base64 decoded version of the input string.
- </summary>
- <param name="encoded">The Base64 encoded string</param>
- <returns>Decoded version of the Base64 input string</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Util.AmazonSimpleDBUtil.FormattedCurrentTimestamp">
- <summary>
- Gets the Current Date as an ISO8601 formatted Timestamp
- </summary>
- <returns>ISO8601 formatted current timestamp String</returns>
- </member>
- <member name="T:Amazon.SimpleDB.Model.SelectRequest">
- <summary>
- The Select operation returns a set of Attributes for ItemNames that match the select expression. Select is similar to
- the standard SQL SELECT statement. The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB
- automatically adjusts the number of items returned per page to enforce this limit. For example, even if you ask to
- retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate next
- token so you can get the next page of results.
-
- Operations that run longer than 5 seconds return a time-out error response or a partial or empty result set. Partial
- and empty result sets contains a next token which allow you to continue the operation from where it left off.
-
- Responses larger than one megabyte return a partial result set.
-
- Your application should not excessively retry queries that return RequestTimeout errors. If you receive too many
- RequestTimeout errors, reduce the complexity of your query expression.
-
- When designing your application, keep in mind that Amazon SimpleDB does not guarantee how attributes are ordered in
- the returned response.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectRequest.WithSelectExpression(System.String)">
- <summary>
- Sets the SelectExpression property
- </summary>
- <param name="selectExpression">This section describes Select, a function that takes query expressions similar to the standard SQL SELECT statement.
- See http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/UsingSelect.html for more information
- on building expressions.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectRequest.IsSetSelectExpression">
- <summary>
- Checks if SelectExpression property is set
- </summary>
- <returns>true if SelectExpression property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectRequest.WithNextToken(System.String)">
- <summary>
- Sets the NextToken property
- </summary>
- <param name="nextToken">String that tells Amazon SimpleDB where to start the next list of item names.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectRequest.IsSetNextToken">
- <summary>
- Checks if NextToken property is set
- </summary>
- <returns>true if NextToken property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectRequest.WithConsistentRead(System.Boolean)">
- <summary>
- Sets the ConsistentRead property
- </summary>
- <param name="consistentRead">If set to true, this flag ensures that the most recently written data is
- returned.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.SelectRequest.IsSetConsistentRead">
- <summary>
- Checks if ConsistentRead property is set
- </summary>
- <returns>true if ConsistentRead property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.SelectRequest.SelectExpression">
- <summary>
- Gets and sets the SelectExpression property.
- This section describes Select, a function that takes query expressions similar to the standard SQL SELECT statement.
- See http://docs.amazonwebservices.com/AmazonSimpleDB/latest/DeveloperGuide/UsingSelect.html for more information
- on building expressions.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.SelectRequest.NextToken">
- <summary>
- Gets and sets the NextToken property.
- String that tells Amazon SimpleDB where to start the next list of item names.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.SelectRequest.ConsistentRead">
- <summary>
- Gets and sets the ConsistentRead property.
- If set to true, this flag ensures that the most recently written data is
- returned.
- </summary>
- </member>
- <member name="T:Amazon.SimpleDB.Model.ResponseMetadata">
- <summary>
- Information about the request provided by Amazon SimpleDB.
- </summary>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ResponseMetadata.WithRequestId(System.String)">
- <summary>
- Sets the RequestId property
- </summary>
- <param name="requestId">A unique ID for tracking the request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ResponseMetadata.IsSetRequestId">
- <summary>
- Checks if RequestId property is set
- </summary>
- <returns>true if RequestId property is set</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ResponseMetadata.WithBoxUsage(System.String)">
- <summary>
- Sets the BoxUsage property
- </summary>
- <param name="boxUsage">The measure of machine utilization for this request. This does not include storage or transfer usage.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.SimpleDB.Model.ResponseMetadata.IsSetBoxUsage">
- <summary>
- Checks if BoxUsage property is set
- </summary>
- <returns>true if BoxUsage property is set</returns>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ResponseMetadata.RequestId">
- <summary>
- Gets and sets the RequestId property.
- A unique ID for tracking the request.
- </summary>
- </member>
- <member name="P:Amazon.SimpleDB.Model.ResponseMetadata.BoxUsage">
- <summary>
- Gets and sets the BoxUsage property.
- The measure of machine utilization for this request. This does not include storage or transfer usage.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketLoggingRequest">
- <summary>
- The GetBucketLoggingRequest contains the parameters used for the GetBucketLogging operation.
- <br />Required Parameters: BucketName
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketLoggingRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- The logging config returned will be for this S3 Bucket.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.S3.Model.GetBucketLoggingRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketLoggingRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.InitiateMultipartUploadRequest">
- <summary>
- The InitiateMultipartUploadRequest contains the parameters used for the InitiateMultipartUpload method.
- <br />Required Parameters: BucketName, Key
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- This is the S3 Bucket where the S3 Object you are
- creating gets put.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>The request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object you create.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.WithCannedACL(Amazon.S3.Model.S3CannedACL)">
- <summary>
- Sets the CannedACL property for this request.
- If set, the S3 Object will have this CannedACL
- permission. Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on S3 Canned ACLs.
- </summary>
- <param name="acl">The Canned ACL to be set on the object</param>
- <returns>The request with the CannedACL set</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.IsSetCannedACL">
- <summary>
- Checks if the CannedACL property is set.
- </summary>
- <returns>true if there is the CannedACL property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.RemoveCannedACL">
- <summary>
- Resets the CannedACL
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.WithContentType(System.String)">
- <summary>
- Sets the ContentType property for this request.
- This property defaults to "binary/octet-stream",
- but if you require something else you can set this property.
- </summary>
- <param name="contentType">the value the ContentType to be set to</param>
- <returns>The request with the ContentType set</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.IsSetContentType">
- <summary>
- Checks if ContentType property is set.
- </summary>
- <returns>true if ContentType property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.WithMetaData(System.String,System.String)">
- <summary>
- Adds a key/value pair to the Metadata property for this request.
- The S3 Object that you create will have this metadata associated
- with it.
- </summary>
- <param name="key">The key to associate with the object</param>
- <param name="value">The value for the key</param>
- <returns>The response with Metadata set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.WithMetaData(System.Collections.Specialized.NameValueCollection)">
- <summary>
- Adds a set of key-value pairs to the request
- </summary>
- <param name="metaInfo">The set of key-value pairs that will eventually be
- associated with the S3 Object</param>
- <returns></returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.IsSetMetaData">
- <summary>
- Checks if Metadata property is set.
- </summary>
- <returns>true if Metadata property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.RemoveMetaData(System.String)">
- <summary>
- Removes a key from the Metadata list if it was
- added previously
- </summary>
- <param name="key">The key to remove</param>
- </member>
- <member name="M:Amazon.S3.Model.InitiateMultipartUploadRequest.WithStorageClass(Amazon.S3.Model.S3StorageClass)">
- <summary>
- Sets the StorageClass property for this request.
- Default: S3StorageClass.Standard. Set this property
- only if you want reduced redundancy for this object.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- <param name="sClass">The Storage Class to be set on the object</param>
- <returns>The request with the StorageClass set</returns>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadRequest.CannedACL">
- <summary>
- Gets and sets the CannedACL property.
- If set, the S3 Object will have this CannedACL
- permission. Please refer to
- <see cref="T:Amazon.S3.Model.S3CannedACL"/> for
- information on S3 Canned ACLs.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadRequest.ContentType">
- <summary>
- Gets and sets the ContentType property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.InitiateMultipartUploadRequest.StorageClass">
- <summary>
- Gets and sets the StorageClass property.
- Default: S3StorageClass.Standard. Set this property
- only if you want reduced redundancy for this object.
- Please refer to
- <see cref="T:Amazon.S3.Model.S3StorageClass"/> for
- information on S3 Storage Classes.
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.GetBucketVersioningResponse">
- <summary>
- The GetBucketVersioningResponse contains the GetBucketVersioningResult and
- any headers returned by S3.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.GetBucketVersioningResponse.VersioningConfig">
- <summary>
- Gets and sets the Versioning property.
- Unless Versioning has been explicitly "Enabled" on a bucket,
- Versioning Status is "Off". Once Versioning has been
- "Enabled", it can be "Suspended" but cannot be switched "Off".
- </summary>
- </member>
- <member name="T:Amazon.S3.Model.AbortMultipartUploadRequest">
- <summary>
- The AbortMultipartUploadRequest contains the parameters used for the AbortMultipartUpload method.
- <br />Required Parameters: BucketName, Key, UploadId
- </summary>
- </member>
- <member name="M:Amazon.S3.Model.AbortMultipartUploadRequest.WithBucketName(System.String)">
- <summary>
- Sets the BucketName property for this request.
- </summary>
- <param name="bucketName">The value that BucketName is set to</param>
- <returns>the request with the BucketName set</returns>
- </member>
- <member name="M:Amazon.S3.Model.AbortMultipartUploadRequest.IsSetBucketName">
- <summary>
- Checks if BucketName property is set.
- </summary>
- <returns>true if BucketName property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.AbortMultipartUploadRequest.WithKey(System.String)">
- <summary>
- Sets the Key property for this request.
- This is the Key for the S3 Object.
- </summary>
- <param name="key">The value that Key is set to</param>
- <returns>the request with the Key set</returns>
- </member>
- <member name="M:Amazon.S3.Model.AbortMultipartUploadRequest.IsSetKey">
- <summary>
- Checks if Key property is set.
- </summary>
- <returns>true if Key property is set.</returns>
- </member>
- <member name="M:Amazon.S3.Model.AbortMultipartUploadRequest.WithUploadId(System.String)">
- <summary>
- Sets the UploadId property for this request.
- This is the upload id for the multipart upload in process.
- </summary>
- <param name="uploadId">The value that UploadId is set to</param>
- <returns>the request with the UploadId set</returns>
- </member>
- <member name="M:Amazon.S3.Model.AbortMultipartUploadRequest.IsSetUploadId">
- <summary>
- Checks if UploadId property is set.
- </summary>
- <returns>true if UploadId property is set.</returns>
- </member>
- <member name="P:Amazon.S3.Model.AbortMultipartUploadRequest.BucketName">
- <summary>
- Gets and sets the BucketName property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.AbortMultipartUploadRequest.Key">
- <summary>
- Gets and sets the Key property.
- </summary>
- </member>
- <member name="P:Amazon.S3.Model.AbortMultipartUploadRequest.UploadId">
- <summary>
- Gets and sets the UploadId property.
- This is the upload id for the multipart upload in process.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeEventsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeEvents operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBSecurityGroupsResultUnmarshaller">
- <summary>
- DescribeDBSecurityGroupsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DescribeDBParametersRequestMarshaller">
- <summary>
- Describe D B Parameters Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DeleteDBInstanceResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteDBInstance operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.DBInstanceUnmarshaller">
- <summary>
- DBInstance Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBSnapshotResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateDBSnapshot operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.CreateDBSecurityGroupResultUnmarshaller">
- <summary>
- Result Unmarshaller for CreateDBSecurityGroup operation
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.Transform.AvailabilityZoneUnmarshaller">
- <summary>
- AvailabilityZone Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.RebootDBInstanceResult">
- <summary>
- The results from the RebootDBInstance action.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.RebootDBInstanceResult.DBInstance">
-
- Gets and sets the RebootDBInstanceResult property.
- Contains the result of a successful invocation of the RebootDBInstance
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.ModifyDBInstanceResponse">
- <summary>
- Returns information about the ModifyDBInstance response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.ModifyDBInstanceResponse.ModifyDBInstanceResult">
-
- Gets and sets the ModifyDBInstanceResult property.
- Contains the result of a successful invocation of the ModifyDBInstance
- action.
-
- </member>
- <member name="T:Amazon.RDS.Model.DescribeDBSnapshotsResponse">
- <summary>
- Returns information about the DescribeDBSnapshotsResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.DescribeDBSnapshotsResponse.DescribeDBSnapshotsResult">
- <summary>
- Gets and sets the DescribeDBSnapshotsResult property.
- Contains the result of a successful invocation of the DescribeDBSnapshots action.
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.DeleteDBSecurityGroupRequest">
- <summary>
- Container for the parameters to the DeleteDBSecurityGroup operation.
- <para> Deletes a database security group. </para> <para><b>NOTE:</b>The specified database security group must not be associated with any DB
- instances.</para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.DeleteDBSecurityGroup(Amazon.RDS.Model.DeleteDBSecurityGroupRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.DeleteDBSecurityGroupRequest.WithDBSecurityGroupName(System.String)">
- <summary>
- Sets the DBSecurityGroupName property
- </summary>
- <param name="dBSecurityGroupName">The value to set for the DBSecurityGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.DeleteDBSecurityGroupRequest.DBSecurityGroupName">
- <summary>
- The name of the database security group to delete. <note>You cannot delete the default security group.</note> Constraints: <ul> <li>Must be
- 1 to 255 alphanumeric characters</li> <li>First character must be a letter</li> <li>Cannot end with a hyphen or contain two consecutive
- hyphens</li> </ul>
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.Model.CreateDBParameterGroupRequest">
- <summary>
- Container for the parameters to the CreateDBParameterGroup operation.
- <para> Creates a new database parameter group. </para>
- </summary>
- <seealso cref="M:Amazon.RDS.AmazonRDS.CreateDBParameterGroup(Amazon.RDS.Model.CreateDBParameterGroupRequest)"/>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBParameterGroupRequest.WithDBParameterGroupName(System.String)">
- <summary>
- Sets the DBParameterGroupName property
- </summary>
- <param name="dBParameterGroupName">The value to set for the DBParameterGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBParameterGroupRequest.WithDBParameterGroupFamily(System.String)">
- <summary>
- Sets the DBParameterGroupFamily property
- </summary>
- <param name="dBParameterGroupFamily">The value to set for the DBParameterGroupFamily property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.RDS.Model.CreateDBParameterGroupRequest.WithDescription(System.String)">
- <summary>
- Sets the Description property
- </summary>
- <param name="description">The value to set for the Description property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBParameterGroupRequest.DBParameterGroupName">
- <summary>
- The name of the DB Parameter Group. Constraints: <ul> <li>Must be 1 to 255 alphanumeric characters</li> <li>First character must be a
- letter</li> <li>Cannot end with a hyphen or contain two consecutive hyphens</li> </ul> <note>This value is stored as a lower-case
- string.</note>
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBParameterGroupRequest.DBParameterGroupFamily">
- <summary>
- The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be
- applied only to a DB instance running a database engine compatible with that DB parameter group family and version.
-
- </summary>
- </member>
- <member name="P:Amazon.RDS.Model.CreateDBParameterGroupRequest.Description">
- <summary>
- The description for the DB Parameter Group.
-
- </summary>
- </member>
- <member name="T:Amazon.RDS.AmazonRDSConfig">
- <summary>
- Configuration for accessing Amazon Relational Database Service service
- </summary>
- </member>
- <member name="M:Amazon.RDS.AmazonRDSConfig.#ctor">
- <summary>
- Default constructor
- </summary>
- </member>
- <member name="P:Amazon.RDS.AmazonRDSConfig.ServiceVersion">
- <summary>
- Gets the ServiceVersion property.
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.Transform.GetStatusResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetStatus operation
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.InvalidParameterException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.InvalidParameterException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidParameterException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.InvalidFileSystemException">
- <summary>
- AmazonImportExport exception
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.InvalidFileSystemException.#ctor(System.String)">
- <summary>
- Constructs a new InvalidFileSystemException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ImportExport.Model.CreateJobResult">
- <summary>
- <para> Output structure for the CreateJob operation. </para>
- </summary>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobResult.WithJobId(System.String)">
- <summary>
- Sets the JobId property
- </summary>
- <param name="jobId">The value to set for the JobId property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobResult.WithJobType(System.String)">
- <summary>
- Sets the JobType property
- </summary>
- <param name="jobType">The value to set for the JobType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobResult.WithAwsShippingAddress(System.String)">
- <summary>
- Sets the AwsShippingAddress property
- </summary>
- <param name="awsShippingAddress">The value to set for the AwsShippingAddress property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobResult.WithSignature(System.String)">
- <summary>
- Sets the Signature property
- </summary>
- <param name="signature">The value to set for the Signature property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobResult.WithSignatureFileContents(System.String)">
- <summary>
- Sets the SignatureFileContents property
- </summary>
- <param name="signatureFileContents">The value to set for the SignatureFileContents property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobResult.WithWarningMessage(System.String)">
- <summary>
- Sets the WarningMessage property
- </summary>
- <param name="warningMessage">The value to set for the WarningMessage property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobResult.JobId">
- <summary>
- A unique identifier which refers to a particular job.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobResult.JobType">
- <summary>
- Specifies whether the job to initiate is an import or export job.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Import, Export</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobResult.AwsShippingAddress">
- <summary>
- Address you ship your storage device to.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobResult.Signature">
- <summary>
- An encrypted code used to authenticate the request and response, for
- example, "DV+TpDfx1/TdSE9ktyK9k/bDTVI=". Only use this value is you
- want to create the signature file yourself. Generally you should use
- the SignatureFileContents value.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobResult.SignatureFileContents">
- <summary>
- The actual text of the SIGNATURE file to be written to disk.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobResult.WarningMessage">
- <summary>
- An optional message notifying you of non-fatal issues with the job,
- such as use of an incompatible Amazon S3 bucket name.
-
- </summary>
- </member>
- <member name="T:Amazon.ImportExport.Model.CreateJobRequest">
- <summary>
- Container for the parameters to the CreateJob operation.
- <para> This operation initiates the process of scheduling an upload or
- download of your data. You include in the request a manifest that
- describes the data transfer specifics. The response to the request
- includes a job ID, which you can use in other operations, a signature
- that you use to identify your storage device, and the address where
- you should ship your storage device. </para>
- </summary>
- <seealso cref="M:Amazon.ImportExport.AmazonImportExport.CreateJob(Amazon.ImportExport.Model.CreateJobRequest)"/>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobRequest.WithJobType(System.String)">
- <summary>
- Sets the JobType property
- </summary>
- <param name="jobType">The value to set for the JobType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobRequest.WithManifest(System.String)">
- <summary>
- Sets the Manifest property
- </summary>
- <param name="manifest">The value to set for the Manifest property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobRequest.WithManifestAddendum(System.String)">
- <summary>
- Sets the ManifestAddendum property
- </summary>
- <param name="manifestAddendum">The value to set for the ManifestAddendum property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ImportExport.Model.CreateJobRequest.WithValidateOnly(System.Boolean)">
- <summary>
- Sets the ValidateOnly property
- </summary>
- <param name="validateOnly">The value to set for the ValidateOnly property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobRequest.JobType">
- <summary>
- Specifies whether the job to initiate is an import or export job.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Import, Export</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobRequest.Manifest">
- <summary>
- The UTF-8 encoded text of the manifest file.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobRequest.ManifestAddendum">
- <summary>
- For internal use only.
-
- </summary>
- </member>
- <member name="P:Amazon.ImportExport.Model.CreateJobRequest.ValidateOnly">
- <summary>
- Validate the manifest and parameter values in the request but do not
- actually create a job.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.UploadServerCertificateResult">
- <summary>
- <para>Contains the result of a successful invocation of the
- UploadServerCertificate action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.UploadServerCertificateResult.WithServerCertificateMetadata(Amazon.IdentityManagement.Model.ServerCertificateMetadata)">
- <summary>
- Sets the ServerCertificateMetadata property
- </summary>
- <param name="serverCertificateMetadata">The value to set for the ServerCertificateMetadata property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.UploadServerCertificateResult.ServerCertificateMetadata">
- <summary>
- The meta information of the uploaded server certificate without its certificate body, certificate chain, and private key.
-
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.UpdateUserResponseUnmarshaller">
- <summary>
- Response Unmarshaller for UpdateUser operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.PutUserPolicyResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PutUserPolicy operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListServerCertificatesResultUnmarshaller">
- <summary>
- ListServerCertificatesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListMFADevicesResultUnmarshaller">
- <summary>
- ListMFADevicesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.ListAccountAliasesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListAccountAliases operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetUserResponseUnmarshaller">
- <summary>
- Response Unmarshaller for GetUser operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.GetLoginProfileResultUnmarshaller">
- <summary>
- GetLoginProfileResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteUserResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteUser operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.DeleteAccountAliasResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DeleteAccountAlias operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.Transform.CreateUserResponseUnmarshaller">
- <summary>
- Response Unmarshaller for CreateUser operation
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListUserPoliciesRequest">
- <summary>
- Container for the parameters to the ListUserPolicies operation.
- <para>Lists the names of the policies associated with the specified
- User. If there are none, the action returns an empty list.</para>
- <para>You can paginate the results using the <c>MaxItems</c> and
- <c>Marker</c> parameters.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.ListUserPolicies(Amazon.IdentityManagement.Model.ListUserPoliciesRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUserPoliciesRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUserPoliciesRequest.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListUserPoliciesRequest.WithMaxItems(System.Int32)">
- <summary>
- Sets the MaxItems property
- </summary>
- <param name="maxItems">The value to set for the MaxItems property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUserPoliciesRequest.UserName">
- <summary>
- The name of the User to list policies for.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUserPoliciesRequest.Marker">
- <summary>
- Use this only when paginating results, and only in a subsequent request after you've received a response where the results are truncated.
- Set it to the value of the <c>Marker</c> element in the response you just received.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListUserPoliciesRequest.MaxItems">
- <summary>
- Use this only when paginating results to indicate the maximum number of policy names you want in the response. If there are additional
- policy names beyond the maximum you specify, the <c>IsTruncated</c> response element is <c>true</c>.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Range</term>
- <description>1 - 1000</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.ListGroupsResult">
- <summary>
- <para>Contains the result of a successful invocation of the ListGroups
- action.</para>
- </summary>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsResult.WithGroups(Amazon.IdentityManagement.Model.Group[])">
- <summary>
- Adds elements to the Groups collection
- </summary>
- <param name="groups">The values to add to the Groups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsResult.WithGroups(System.Collections.Generic.IEnumerable{Amazon.IdentityManagement.Model.Group})">
- <summary>
- Adds elements to the Groups collection
- </summary>
- <param name="groups">The values to add to the Groups collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsResult.WithIsTruncated(System.Boolean)">
- <summary>
- Sets the IsTruncated property
- </summary>
- <param name="isTruncated">The value to set for the IsTruncated property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.ListGroupsResult.WithMarker(System.String)">
- <summary>
- Sets the Marker property
- </summary>
- <param name="marker">The value to set for the Marker property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsResult.Groups">
- <summary>
- A list of groups.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsResult.IsTruncated">
- <summary>
- A flag that indicates whether there are more groups to list. If your results were truncated, you can make a subsequent pagination request
- using the <c>Marker</c> request parameter to retrieve more groups in the list.
-
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.ListGroupsResult.Marker">
- <summary>
- If <c>IsTruncated</c> is <c>true</c>, this element is present and contains the value to use for the <c>Marker</c> parameter in a subsequent
- pagination request.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 320</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\u00FF]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetAccountSummaryResponse">
- <summary>
- Returns information about the GetAccountSummaryResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.GetAccountSummaryResponse.GetAccountSummaryResult">
- <summary>
- Gets and sets the GetAccountSummaryResult property.
- Contains the result of a successful invocation of the GetAccountSummary action.
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.GetAccountSummaryRequest">
- <summary>
- Container for the parameters to the GetAccountSummary operation.
- <para>Retrieves account level information about account entity usage
- and IAM quotas.</para> <para>For information about limitations on IAM
- entities, see Limitations on IAM Entities in <i>Using AWS Identity and
- Access Management</i> .</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.GetAccountSummary(Amazon.IdentityManagement.Model.GetAccountSummaryRequest)"/>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.EnableMFADeviceRequest">
- <summary>
- Container for the parameters to the EnableMFADevice operation.
- <para>Enables the specified MFA device and associates it with the
- specified User name. When enabled, the MFA device is required for
- every subsequent login by the User name associated with the
- device.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.EnableMFADevice(Amazon.IdentityManagement.Model.EnableMFADeviceRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.WithSerialNumber(System.String)">
- <summary>
- Sets the SerialNumber property
- </summary>
- <param name="serialNumber">The value to set for the SerialNumber property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.WithAuthenticationCode1(System.String)">
- <summary>
- Sets the AuthenticationCode1 property
- </summary>
- <param name="authenticationCode1">The value to set for the AuthenticationCode1 property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.WithAuthenticationCode2(System.String)">
- <summary>
- Sets the AuthenticationCode2 property
- </summary>
- <param name="authenticationCode2">The value to set for the AuthenticationCode2 property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.UserName">
- <summary>
- Name of the User for whom you want to enable the MFA device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.SerialNumber">
- <summary>
- The serial number that uniquely identifies the MFA device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>9 - 48</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.AuthenticationCode1">
- <summary>
- An authentication code emitted by the device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>6 - 6</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\d]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.EnableMFADeviceRequest.AuthenticationCode2">
- <summary>
- A subsequent authentication code emitted by the device.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>6 - 6</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\d]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.IdentityManagement.Model.AddUserToGroupRequest">
- <summary>
- Container for the parameters to the AddUserToGroup operation.
- <para>Adds the specified User to the specified group.</para>
- </summary>
- <seealso cref="M:Amazon.IdentityManagement.AmazonIdentityManagementService.AddUserToGroup(Amazon.IdentityManagement.Model.AddUserToGroupRequest)"/>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AddUserToGroupRequest.WithGroupName(System.String)">
- <summary>
- Sets the GroupName property
- </summary>
- <param name="groupName">The value to set for the GroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.IdentityManagement.Model.AddUserToGroupRequest.WithUserName(System.String)">
- <summary>
- Sets the UserName property
- </summary>
- <param name="userName">The value to set for the UserName property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AddUserToGroupRequest.GroupName">
- <summary>
- Name of the group to update.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.IdentityManagement.Model.AddUserToGroupRequest.UserName">
- <summary>
- Name of the User to add.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 128</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\w+=,.@-]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.StepExecutionStatusDetailUnmarshaller">
- <summary>
- StepExecutionStatusDetail Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.Transform.DescribeJobFlowsRequestMarshaller">
- <summary>
- Describe Job Flows Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail">
- <summary>
- <para>Specifies the execution state of a step.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The value to set for the State property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.WithCreationDateTime(System.DateTime)">
- <summary>
- Sets the CreationDateTime property
- </summary>
- <param name="creationDateTime">The value to set for the CreationDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.WithStartDateTime(System.DateTime)">
- <summary>
- Sets the StartDateTime property
- </summary>
- <param name="startDateTime">The value to set for the StartDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.WithEndDateTime(System.DateTime)">
- <summary>
- Sets the EndDateTime property
- </summary>
- <param name="endDateTime">The value to set for the EndDateTime property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.WithLastStateChangeReason(System.String)">
- <summary>
- Sets the LastStateChangeReason property
- </summary>
- <param name="lastStateChangeReason">The value to set for the LastStateChangeReason property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.State">
- <summary>
- The state of the job flow step.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>PENDING, RUNNING, CONTINUE, COMPLETED, CANCELLED, FAILED, INTERRUPTED</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.CreationDateTime">
- <summary>
- The creation date and time of the step.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.StartDateTime">
- <summary>
- The start date and time of the step.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.EndDateTime">
- <summary>
- The completion date and time of the step.
-
- </summary>
- </member>
- <member name="P:Amazon.ElasticMapReduce.Model.StepExecutionStatusDetail.LastStateChangeReason">
- <summary>
- A description of the step's current state.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>0 - 10280</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.OnArrested">
- <summary>
- The action to take if your step is waiting for the instance group to start
- and it enters the Arrested state.
- <para>
- Fail - Fail the step.
- Wait - Continue waiting until the instance group is no longer arrested (requires
- manual intervention).
- Continue - Proceed onto the next step.
- </para>
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.OnFailure">
- <summary>
- Action to take if there is a failure modifying your cluster composition.
- Fail - Fail the step.
- Continue - Proceed on to the next step.
- </summary>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep">
- <summary>
- This class provides some helper methods for creating a Resize Job Flow step
- as part of your job flow. The resize step can be used to automatically
- adjust the composition of your cluster while it is running. For example, if
- you have a large workflow with different compute requirements, you can use
- this step to automatically add a task instance group before your most compute
- intensive step.
-
- <code>
- AWSCredentials credentials = new BasicAWSCredentials(accessKey, secretKey);
- AmazonElasticMapReduce emr = new AmazonElasticMapReduceClient(credentials);
-
- HadoopJarStepConfig config = new ResizeJobFlowStep()
- .WithResizeAction(new ModifyInstanceGroup()
- .WithInstanceGroup("core")
- .WithInstanceCount(10))
- .WithResizeAction(new AddInstanceGroup()
- .WithInstanceGroup("task")
- .WithInstanceCount(10)
- .WithInstanceType("m1.small"))
- .WithOnArrested(OnArrested.Continue)
- .WithOnFailure(OnFailure.Continue)
- .ToHadoopJarStepConfig();
-
- StepConfig resizeJobFlow = new StepConfig()
- .WithName("Resize job flow")
- .WithActionOnFailure("TERMINATE_JOB_FLOW")
- .WithHadoopJarStep(config);
-
- RunJobFlowRequest request = new RunJobFlowRequest()
- .WithName("Resize job flow")
- .WithSteps(resizeJobFlow)
- .WithLogUri("s3://log-bucket/")
- .WithInstances(new JobFlowInstancesConfig()
- .WithEc2KeyName("keypair")
- .WithHadoopVersion("0.20")
- .WithInstanceCount(5)
- .WithKeepJobFlowAliveWhenNoSteps(true)
- .WithMasterInstanceType("m1.small")
- .WithSlaveInstanceType("m1.small"));
-
- RunJobFlowResult result = emr.RunJobFlow(request).RunJobFlowResult;
- </code>
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep.#ctor">
- <summary>
- Creates a new ResizeJobFlowStep using the default Elastic Map Reduce
- bucket (us-east-1.elasticmapreduce) for the default (us-east-1) region.
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep.#ctor(System.String)">
- <summary>
- Creates a new ResizeJobFlowStep using the specified Amazon S3 bucket to
- load resources.
- <para>
- The official bucket format is "&lt;region&gt;.elasticmapreduce", so if
- you're using the us-east-1 region, you should use the bucket
- "us-east-1.elasticmapreduce".
- </para>
- </summary>
- <param name="bucket">The Amazon S3 bucket from which to load resources.</param>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep.WithResizeAction(Amazon.ElasticMapReduce.Model.ResizeAction)">
- <summary>
- Add a new action for this step to perform. These actions can be to modify
- or add instance groups. This step supports multiple actions, but requires
- at least one be specified.
- </summary>
- <param name="resizeAction">An instance of ResizeAction defining the change.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep.WithWait(System.Boolean)">
- <summary>
- Specifies whether the step should wait for the modification to complete
- or if it should just continue onto the next step once the modification
- request is received. Defaults to true.
- </summary>
- <param name="wait">Whether this step should wait for the modification to complete.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep.WithOnArrested(Amazon.ElasticMapReduce.Model.OnArrested)">
- <summary>
- What action this step should take if any of the instance group modifications result
- in the instance group entering Arrested state. This can happen when the bootstrap
- actions on the newly launched instances are continuously failing.
- </summary>
- <param name="onArrested">OnArrested enum specifying which action to take</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep.WithOnFailure(Amazon.ElasticMapReduce.Model.OnFailure)">
- <summary>
- What action this step should take if the modification fails. This can happen when
- you request to perform an invalid action, such as shrink a core instance group.
- </summary>
- <param name="onFailure">OnFailure enum specifying which action to take.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ResizeJobFlowStep.ToHadoopJarStepConfig">
- <summary>
- Creates the final HadoopJarStepConfig once you are done configuring the step. You can use
- this as you would any other HadoopJarStepConfig.
- </summary>
- <returns>HadoopJarStepConfig configured to perform the specified actions.</returns>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.ModifyInstanceGroup">
- Class representing a change to an existing instance group.
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ModifyInstanceGroup.WithInstanceGroup(System.String)">
- <summary>
- Set the identification for the instance group to modify. You can specify either
- core or task if there is only one instance group of that role. Otherwise you can
- specify the instance group ID (such as ig-ABABABABABAB).
- </summary>
- <param name="instanceGroup">Identifier for the instance group.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.ModifyInstanceGroup.WithInstanceCount(System.Int32)">
- <summary>
- Specify the new size of the instance group.
- </summary>
- <param name="instanceCount">Target size of the instance group.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="T:Amazon.ElasticMapReduce.Model.AddInstanceGroup">
- <summary>
- Class representing creating a new instance group.
- </summary>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddInstanceGroup.WithInstanceGroup(System.String)">
- <summary>
- Specify the role of the new instance group (core, task).
- </summary>
- <param name="instanceGroup">New instance group's role.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddInstanceGroup.WithInstanceCount(System.Int32)">
- <summary>
- Specify the count of the new instance group.
- </summary>
- <param name="instanceCount">Target instance group size.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="M:Amazon.ElasticMapReduce.Model.AddInstanceGroup.WithInstanceType(System.String)">
- <summary>
- Specify the instance type to use for this instance group.
- </summary>
- <param name="instanceType">Instance type.</param>
- <returns>A reference to this updated object so that method calls can be chained
- together.</returns>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.RegisterInstancesWithLoadBalancerRequestMarshaller">
- <summary>
- Register Instances With Load Balancer Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.Transform.CreateLoadBalancerRequestMarshaller">
- <summary>
- Create Load Balancer Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthResult">
- <summary>
- <para> The output for the DescribeInstanceHealth action. </para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthResult.WithInstanceStates(Amazon.ElasticLoadBalancing.Model.InstanceState[])">
- <summary>
- Adds elements to the InstanceStates collection
- </summary>
- <param name="instanceStates">The values to add to the InstanceStates collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthResult.WithInstanceStates(System.Collections.Generic.IEnumerable{Amazon.ElasticLoadBalancing.Model.InstanceState})">
- <summary>
- Adds elements to the InstanceStates collection
- </summary>
- <param name="instanceStates">The values to add to the InstanceStates collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticLoadBalancing.Model.DescribeInstanceHealthResult.InstanceStates">
- <summary>
- A list containing health information for the specified instances.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException">
- <summary>
- AmazonElasticLoadBalancing exception
- </summary>
- </member>
- <member name="M:Amazon.ElasticLoadBalancing.Model.CertificateNotFoundException.#ctor(System.String)">
- <summary>
- Constructs a new CertificateNotFoundException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionResponse">
- <summary>
- Returns information about the UpdateApplicationVersionResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.UpdateApplicationVersionResponse.UpdateApplicationVersionResult">
- <summary>
- Gets and sets the UpdateApplicationVersionResult property.
- Result message wrapping a single description of an application version.
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ValidateConfigurationSettingsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ValidateConfigurationSettings operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.RebuildEnvironmentResponseUnmarshaller">
- <summary>
- Response Unmarshaller for RebuildEnvironment operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.ListAvailableSolutionStacksResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListAvailableSolutionStacks operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEnvironmentsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeEnvironments operation
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeEnvironmentResourcesResultUnmarshaller">
- <summary>
- DescribeEnvironmentResourcesResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.Transform.DescribeApplicationVersionsRequestMarshaller">
- <summary>
- Describe Application Versions Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest">
- <summary>
- Container for the parameters to the DescribeApplicationVersions operation.
- <para>Returns descriptions for existing application versions.</para>
- </summary>
- <seealso cref="M:Amazon.ElasticBeanstalk.AmazonElasticBeanstalk.DescribeApplicationVersions(Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest)"/>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest.WithApplicationName(System.String)">
- <summary>
- Sets the ApplicationName property
- </summary>
- <param name="applicationName">The value to set for the ApplicationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest.WithVersionLabels(System.String[])">
- <summary>
- Adds elements to the VersionLabels collection
- </summary>
- <param name="versionLabels">The values to add to the VersionLabels collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest.WithVersionLabels(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the VersionLabels collection
- </summary>
- <param name="versionLabels">The values to add to the VersionLabels collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest.ApplicationName">
- <summary>
- If specified, AWS Elastic Beanstalk restricts the returned descriptions to only include ones that are associated with the specified
- application.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 100</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeApplicationVersionsRequest.VersionLabels">
- <summary>
- If specified, restricts the returned descriptions to only include ones that have the specified version labels.
-
- </summary>
- </member>
- <member name="T:Amazon.ElasticBeanstalk.Model.DescribeApplicationsResult">
- <summary>
- <para>Result message containing a list of application descriptions.</para>
- </summary>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationsResult.WithApplications(Amazon.ElasticBeanstalk.Model.ApplicationDescription[])">
- <summary>
- Adds elements to the Applications collection
- </summary>
- <param name="applications">The values to add to the Applications collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.ElasticBeanstalk.Model.DescribeApplicationsResult.WithApplications(System.Collections.Generic.IEnumerable{Amazon.ElasticBeanstalk.Model.ApplicationDescription})">
- <summary>
- Adds elements to the Applications collection
- </summary>
- <param name="applications">The values to add to the Applications collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.ElasticBeanstalk.Model.DescribeApplicationsResult.Applications">
- <summary>
- This parameter contains a list of <a>ApplicationDescription</a>.
-
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.UnmonitorInstancesRequest">
- <summary>
- Disables monitoring for a running instance. For
- more information, refer to the
- Amazon CloudWatch Developer Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesRequest.WithInstanceId(System.String[])">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="list">Instance ID.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.UnmonitorInstancesRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.UnmonitorInstancesRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- Instance ID.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.SpotInstanceRequest">
- <summary>
- Describes the components of a Spot Instance request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithSpotInstanceRequestId(System.String)">
- <summary>
- Sets the SpotInstanceRequestId property
- </summary>
- <param name="spotInstanceRequestId">The ID of the SpotInstanceRequest.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetSpotInstanceRequestId">
- <summary>
- Checks if SpotInstanceRequestId property is set
- </summary>
- <returns>true if SpotInstanceRequestId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithSpotPrice(System.String)">
- <summary>
- Sets the SpotPrice property
- </summary>
- <param name="spotPrice">Specifies the maximum price you will pay to
- launch one or more Spot Instances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetSpotPrice">
- <summary>
- Checks if SpotPrice property is set
- </summary>
- <returns>true if SpotPrice property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithType(System.String)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The instance type (eg. m1.small)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The state of the Spot Instance request.
- Possible values:
- open|closed|cancelled|failed</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithFault(Amazon.EC2.Model.SpotInstanceStateFault)">
- <summary>
- Sets the Fault property
- </summary>
- <param name="fault">Fault details for the Spot Instance request, if any.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetFault">
- <summary>
- Checks if Fault property is set
- </summary>
- <returns>true if Fault property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithValidFrom(System.String)">
- <summary>
- Sets the ValidFrom property
- </summary>
- <param name="validFrom">Start date of the request. If this is a
- one-time request, the request
- remains active until all instances
- launch, the request expires, or
- the request is canceled. If the
- request is persistent, it remains
- active until it expires or is
- canceled.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetValidFrom">
- <summary>
- Checks if ValidFrom property is set
- </summary>
- <returns>true if ValidFrom property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithValidUntil(System.String)">
- <summary>
- Sets the ValidUntil property
- </summary>
- <param name="validUntil">End date of the request. If this is a one-time
- request, the request
- remains active until all instances launch,
- the request expires, or
- the request is canceled. If the request is
- persistent, it remains
- active until it expires or is canceled.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetValidUntil">
- <summary>
- Checks if ValidUntil property is set
- </summary>
- <returns>true if ValidUntil property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithLaunchGroup(System.String)">
- <summary>
- Sets the LaunchGroup property
- </summary>
- <param name="launchGroup">Specifies the instance launch group. Launch
- groups are Spot
- Instances that launch together and terminate
- together.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetLaunchGroup">
- <summary>
- Checks if LaunchGroup property is set
- </summary>
- <returns>true if LaunchGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithAvailabilityZoneGroup(System.String)">
- <summary>
- Sets the AvailabilityZoneGroup property
- </summary>
- <param name="availabilityZoneGroup">Specifies the Availability Zone group. If you
- specify the same Availability Zone group for
- all Spot Instance requests, all Spot
- Instances are launched in the same
- Availability Zone.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetAvailabilityZoneGroup">
- <summary>
- Checks if AvailabilityZoneGroup property is set
- </summary>
- <returns>true if AvailabilityZoneGroup property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithLaunchSpecification(Amazon.EC2.Model.LaunchSpecification)">
- <summary>
- Sets the LaunchSpecification property
- </summary>
- <param name="launchSpecification">Specifies additional launch instance
- information.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetLaunchSpecification">
- <summary>
- Checks if LaunchSpecification property is set
- </summary>
- <returns>true if LaunchSpecification property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithInstanceId(System.String)">
- <summary>
- Sets the InstanceId property
- </summary>
- <param name="instanceId">The instance associated with the Spot Instance
- Request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetInstanceId">
- <summary>
- Checks if InstanceId property is set
- </summary>
- <returns>true if InstanceId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithCreateTime(System.String)">
- <summary>
- Sets the CreateTime property
- </summary>
- <param name="createTime">Time stamp when the Spot Instance request was
- fulfilled.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetCreateTime">
- <summary>
- Checks if CreateTime property is set
- </summary>
- <returns>true if CreateTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The product description associated with the
- Spot Instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetProductDescription">
- <summary>
- Checks if ProductDescription property is set
- </summary>
- <returns>true if ProductDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the specified resources.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.WithLaunchedAvailabilityZone(System.String)">
- <summary>
- Sets the LaunchedAvailabilityZone property
- </summary>
- <param name="launchedAvailabilityZone">The Availability Zone in which the bid is launched.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotInstanceRequest.IsSetLaunchedAvailabilityZone">
- <summary>
- Checks if LaunchedAvailabilityZone property is set
- </summary>
- <returns>true if LaunchedAvailabilityZone property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.SpotInstanceRequestId">
- <summary>
- Gets and sets the SpotInstanceRequestId property.
- The ID of the SpotInstanceRequest.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.SpotPrice">
- <summary>
- Gets and sets the SpotPrice property.
- Specifies the maximum price you will pay to
- launch one or more Spot Instances.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.Type">
- <summary>
- Gets and sets the Type property.
- The instance type (eg. m1.small)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.State">
- <summary>
- Gets and sets the State property.
- The state of the Spot Instance request.
- Possible values:
- open|closed|cancelled|failed
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.Fault">
- <summary>
- Gets and sets the Fault property.
- Fault details for the Spot Instance request, if any.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.ValidFrom">
- <summary>
- Gets and sets the ValidFrom property.
- Start date of the request. If this is a
- one-time request, the request
- remains active until all instances
- launch, the request expires, or
- the request is canceled. If the
- request is persistent, it remains
- active until it expires or is
- canceled.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.ValidUntil">
- <summary>
- Gets and sets the ValidUntil property.
- End date of the request. If this is a one-time
- request, the request
- remains active until all instances launch,
- the request expires, or
- the request is canceled. If the request is
- persistent, it remains
- active until it expires or is canceled.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.LaunchGroup">
- <summary>
- Gets and sets the LaunchGroup property.
- Specifies the instance launch group. Launch
- groups are Spot
- Instances that launch together and terminate
- together.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.AvailabilityZoneGroup">
- <summary>
- Gets and sets the AvailabilityZoneGroup property.
- Specifies the Availability Zone group. If you
- specify the same Availability Zone group for
- all Spot Instance requests, all Spot
- Instances are launched in the same
- Availability Zone.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.LaunchSpecification">
- <summary>
- Gets and sets the LaunchSpecification property.
- Specifies additional launch instance
- information.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.InstanceId">
- <summary>
- Gets and sets the InstanceId property.
- The instance associated with the Spot Instance
- Request.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.CreateTime">
- <summary>
- Gets and sets the CreateTime property.
- Time stamp when the Spot Instance request was
- fulfilled.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.ProductDescription">
- <summary>
- Gets and sets the ProductDescription property.
- The product description associated with the
- Spot Instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the specified resources.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotInstanceRequest.LaunchedAvailabilityZone">
- <summary>
- Gets and sets the LaunchedAvailabilityZone property.
- The Availability Zone in which the bid is launched.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.SpotDatafeedSubscription">
- <summary>
- Describes the Spot Datafeed subscription.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.WithOwnerId(System.String)">
- <summary>
- Sets the OwnerId property
- </summary>
- <param name="ownerId">The AWS account ID associated with the
- subscription.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.IsSetOwnerId">
- <summary>
- Checks if OwnerId property is set
- </summary>
- <returns>true if OwnerId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.WithBucket(System.String)">
- <summary>
- Sets the Bucket property
- </summary>
- <param name="bucket">The Amazon S3 bucket where the Spot Instance
- datafeed is located.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.IsSetBucket">
- <summary>
- Checks if Bucket property is set
- </summary>
- <returns>true if Bucket property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.WithPrefix(System.String)">
- <summary>
- Sets the Prefix property
- </summary>
- <param name="prefix">The Prefix prepended to the datafeed files.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.IsSetPrefix">
- <summary>
- Checks if Prefix property is set
- </summary>
- <returns>true if Prefix property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.WithState(System.String)">
- <summary>
- Sets the State property
- </summary>
- <param name="state">The state of the Spot Instance request.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.IsSetState">
- <summary>
- Checks if State property is set
- </summary>
- <returns>true if State property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.WithFault(Amazon.EC2.Model.SpotInstanceStateFault)">
- <summary>
- Sets the Fault property
- </summary>
- <param name="fault">Fault details for the Spot Instance request, if
- any.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.SpotDatafeedSubscription.IsSetFault">
- <summary>
- Checks if Fault property is set
- </summary>
- <returns>true if Fault property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.SpotDatafeedSubscription.OwnerId">
- <summary>
- Gets and sets the OwnerId property.
- The AWS account ID associated with the
- subscription.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotDatafeedSubscription.Bucket">
- <summary>
- Gets and sets the Bucket property.
- The Amazon S3 bucket where the Spot Instance
- datafeed is located.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotDatafeedSubscription.Prefix">
- <summary>
- Gets and sets the Prefix property.
- The Prefix prepended to the datafeed files.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotDatafeedSubscription.State">
- <summary>
- Gets and sets the State property.
- The state of the Spot Instance request.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.SpotDatafeedSubscription.Fault">
- <summary>
- Gets and sets the Fault property.
- Fault details for the Spot Instance request, if
- any.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReservedInstances">
- <summary>
- Reserved Instances
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithReservedInstancesId(System.String)">
- <summary>
- Sets the ReservedInstancesId property
- </summary>
- <param name="reservedInstancesId">The ID of the Reserved Instances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetReservedInstancesId">
- <summary>
- Checks if ReservedInstancesId property is set
- </summary>
- <returns>true if ReservedInstancesId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithInstanceType(System.String)">
- <summary>
- Sets the InstanceType property
- </summary>
- <param name="instanceType">The instance type on which the Reserved
- Instance can be used.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetInstanceType">
- <summary>
- Checks if InstanceType property is set
- </summary>
- <returns>true if InstanceType property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithAvailabilityZone(System.String)">
- <summary>
- Sets the AvailabilityZone property
- </summary>
- <param name="availabilityZone">The Availability Zone in which the Reserved
- Instance can be used.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetAvailabilityZone">
- <summary>
- Checks if AvailabilityZone property is set
- </summary>
- <returns>true if AvailabilityZone property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithDuration(System.Decimal)">
- <summary>
- Sets the Duration property
- </summary>
- <param name="duration">The duration of the Reserved Instance, in
- seconds.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetDuration">
- <summary>
- Checks if Duration property is set
- </summary>
- <returns>true if Duration property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithUsagePrice(System.String)">
- <summary>
- Sets the UsagePrice property
- </summary>
- <param name="usagePrice">The usage price of the Reserved Instance, per
- hour.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetUsagePrice">
- <summary>
- Checks if UsagePrice property is set
- </summary>
- <returns>true if UsagePrice property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithFixedPrice(System.String)">
- <summary>
- Sets the FixedPrice property
- </summary>
- <param name="fixedPrice">The purchase price of the Reserved Instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetFixedPrice">
- <summary>
- Checks if FixedPrice property is set
- </summary>
- <returns>true if FixedPrice property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithInstanceCount(System.Decimal)">
- <summary>
- Sets the InstanceCount property
- </summary>
- <param name="instanceCount">The number of Reserved Instances purchased.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetInstanceCount">
- <summary>
- Checks if InstanceCount property is set
- </summary>
- <returns>true if InstanceCount property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithProductDescription(System.String)">
- <summary>
- Sets the ProductDescription property
- </summary>
- <param name="productDescription">The Reserved Instance description.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetProductDescription">
- <summary>
- Checks if ProductDescription property is set
- </summary>
- <returns>true if ProductDescription property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithPurchaseState(System.String)">
- <summary>
- Sets the PurchaseState property
- </summary>
- <param name="purchaseState">The state of the Reserved Instance purchase.
- Valid Values:
- pending-payment | active | payment-failed | retired</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetPurchaseState">
- <summary>
- Checks if PurchaseState property is set
- </summary>
- <returns>true if PurchaseState property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithStartTime(System.String)">
- <summary>
- Sets the StartTime property
- </summary>
- <param name="startTime">The date and time the Reserved Instance
- started.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetStartTime">
- <summary>
- Checks if StartTime property is set
- </summary>
- <returns>true if StartTime property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithTag(Amazon.EC2.Model.Tag[])">
- <summary>
- Sets the Tag property
- </summary>
- <param name="list">A list of tags for the ReservedInstances.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetTag">
- <summary>
- Checks if Tag property is set
- </summary>
- <returns>true if Tag property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetInstanceTenancy">
- <summary>
- Checks if InstanceTenancy property is set
- </summary>
- <returns>true if InstanceTenancy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithInstanceTenancy(System.String)">
- <summary>
- Sets the InstanceTenancy property
- </summary>
- <param name="instanceTenancy">The tenancy of the reserved instance.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.IsSetCurrencyCode">
- <summary>
- Checks if CurrencyCode property is set
- </summary>
- <returns>true if InstanceTenancy property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReservedInstances.WithCurrencyCode(System.String)">
- <summary>
- Sets the CurrencyCode property
- </summary>
- <param name="currencyCode">The ISO 4217 CurrencyCode (e.g., USD, JPY).</param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.ReservedInstancesId">
- <summary>
- Gets and sets the ReservedInstancesId property.
- The ID of the Reserved Instances.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.InstanceType">
- <summary>
- Gets and sets the InstanceType property.
- The instance type on which the Reserved
- Instance can be used.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.AvailabilityZone">
- <summary>
- Gets and sets the AvailabilityZone property.
- The Availability Zone in which the Reserved
- Instance can be used.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.Duration">
- <summary>
- Gets and sets the Duration property.
- The duration of the Reserved Instance, in
- seconds.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.UsagePrice">
- <summary>
- Gets and sets the UsagePrice property.
- The usage price of the Reserved Instance, per
- hour.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.FixedPrice">
- <summary>
- Gets and sets the FixedPrice property.
- The purchase price of the Reserved Instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.InstanceCount">
- <summary>
- Gets and sets the InstanceCount property.
- The number of Reserved Instances purchased.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.ProductDescription">
- <summary>
- Gets and sets the ProductDescription property.
- The Reserved Instance description.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.PurchaseState">
- <summary>
- Gets and sets the PurchaseState property.
- The state of the Reserved Instance purchase.
- Valid Values:
- pending-payment | active | payment-failed | retired
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.StartTime">
- <summary>
- Gets and sets the StartTime property.
- The date and time the Reserved Instance
- started.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.Tag">
- <summary>
- Gets and sets the Tag property.
- A list of tags for the ReservedInstances.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.InstanceTenancy">
- <summary>
- Gets and sets the InstanceTenancy property.
- The tenancy of the reserved instance.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.ReservedInstances.CurrencyCode">
- <summary>
- Gets and sets the CurrencyCode property.
- The currency of the Reserved Instance offering you are purchasing. It's specified using ISO 4217 standard (e.g., USD, JPY).
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.ReplaceNetworkAclAssociationResult">
- <summary>
- ReplaceNetworkAclAssociation Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationResult.IsSetNewAssociationId">
- <summary>
- Checks if NewAssociationId property is set
- </summary>
- <returns>true if NewAssociationId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.ReplaceNetworkAclAssociationResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.ReplaceNetworkAclAssociationResult.NewAssociationId">
- <summary>
- Gets and sets the NewAssociationId property.
- The ID representing the new association.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.InstanceState">
- <summary>
- Instance State
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceState.WithCode(System.Decimal)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">A 16-bit unsigned integer. The high byte is an
- opaque internal value and should be
- ignored. The low byte is set
- based on the state represented.
-
- Valid values are: 0 (pending) |
- 16 (running) | 32 (shutting-down) |
- 48 (terminated) | 64
- (stopping) | 80 (stopped)</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceState.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceState.WithName(System.String)">
- <summary>
- Sets the Name property
- </summary>
- <param name="name">The current state of the instance.
-
- Valid values are: pending | running | shutting-down | terminated |
- stopping | stopped</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.InstanceState.IsSetName">
- <summary>
- Checks if Name property is set
- </summary>
- <returns>true if Name property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceState.Code">
- <summary>
- Gets and sets the Code property.
- A 16-bit unsigned integer. The high byte is an
- opaque internal value and should be
- ignored. The low byte is set
- based on the state represented.
-
- Valid values are: 0 (pending) |
- 16 (running) | 32 (shutting-down) |
- 48 (terminated) | 64
- (stopping) | 80 (stopped)
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.InstanceState.Name">
- <summary>
- Gets and sets the Name property.
- The current state of the instance.
-
- Valid values are: pending | running | shutting-down | terminated |
- stopping | stopped
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.Icmp.WithCode(System.Decimal)">
- <summary>
- Sets the Code property
- </summary>
- <param name="code">The ICMP code. A value of -1 is a wildcard meaning all codes.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Icmp.IsSetCode">
- <summary>
- Checks if Code property is set
- </summary>
- <returns>true if Code property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Icmp.WithType(System.Decimal)">
- <summary>
- Sets the Type property
- </summary>
- <param name="type">The ICMP type. A value of -1 is a wildcard meaning all types.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.Icmp.IsSetType">
- <summary>
- Checks if Type property is set
- </summary>
- <returns>true if Type property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.Icmp.Code">
- <summary>
- Gets and sets the Code property.
- The ICMP code. A value of -1 is a wildcard meaning all codes.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.Icmp.Type">
- <summary>
- Gets and sets the Type property.
- The ICMP type. A value of -1 is a wildcard meaning all types.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DetachVpnGatewayRequest">
- <summary>
- Detaches a VPN gateway from a VPC. You do this if
- you're planning to turn off
- the VPC and not use it anymore. You can
- confirm a VPN gateway has been
- completely detached from a VPC by
- describing the VPN gateway (any
- attachments to the VPN gateway are
- also described).
-
- You must wait for the attachment's state to switch
- to detached before you
- can delete the VPC or attach a different VPC
- to the VPN gateway.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVpnGatewayRequest.WithVpnGatewayId(System.String)">
- <summary>
- Sets the VpnGatewayId property
- </summary>
- <param name="vpnGatewayId">The ID of the VPN gateway you want to detach
- from the VPC</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVpnGatewayRequest.IsSetVpnGatewayId">
- <summary>
- Checks if VpnGatewayId property is set
- </summary>
- <returns>true if VpnGatewayId property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVpnGatewayRequest.WithVpcId(System.String)">
- <summary>
- Sets the VpcId property
- </summary>
- <param name="vpcId">The ID of the VPC you want to detach the VPN
- gateway from.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DetachVpnGatewayRequest.IsSetVpcId">
- <summary>
- Checks if VpcId property is set
- </summary>
- <returns>true if VpcId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVpnGatewayRequest.VpnGatewayId">
- <summary>
- Gets and sets the VpnGatewayId property.
- The ID of the VPN gateway you want to detach
- from the VPC
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DetachVpnGatewayRequest.VpcId">
- <summary>
- Gets and sets the VpcId property.
- The ID of the VPC you want to detach the VPN
- gateway from.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeVolumesResponse">
- <summary>
- Describe Volumes Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesResponse.IsSetDescribeVolumesResult">
- <summary>
- Checks if DescribeVolumesResult property is set
- </summary>
- <returns>true if DescribeVolumesResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeVolumesResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVolumesResponse.DescribeVolumesResult">
- <summary>
- Gets and sets the DescribeVolumesResult property.
- Describe Volumes Result
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeVolumesResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeSnapshotAttributeResult">
- <summary>
- Describe Snapshot Attribute Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeResult.IsSetSnapshotAttribute">
- <summary>
- Checks if SnapshotAttribute property is set
- </summary>
- <returns>true if SnapshotAttribute property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeSnapshotAttributeResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeSnapshotAttributeResult.SnapshotAttribute">
- <summary>
- Gets and sets the SnapshotAttribute property.
- list of snapshot attributes
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResponse">
- <summary>
- Describe Reserved Instances Offerings Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResponse.IsSetDescribeReservedInstancesOfferingsResult">
- <summary>
- Checks if DescribeReservedInstancesOfferingsResult property is set
- </summary>
- <returns>true if DescribeReservedInstancesOfferingsResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeReservedInstancesOfferingsResponse.DescribeReservedInstancesOfferingsResult">
- <summary>
- Gets and sets the DescribeReservedInstancesOfferingsResult property.
- Describe Reserved Instances Offerings Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DescribeImageAttributeResponse">
- <summary>
- Describe Image Attribute Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeResponse.IsSetDescribeImageAttributeResult">
- <summary>
- Checks if DescribeImageAttributeResult property is set
- </summary>
- <returns>true if DescribeImageAttributeResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DescribeImageAttributeResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImageAttributeResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.DescribeImageAttributeResponse.DescribeImageAttributeResult">
- <summary>
- Gets and sets the DescribeImageAttributeResult property.
- Describe Image Attribute Result
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteVpnConnectionResponse">
- <summary>
- Delete Vpn Connection Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnConnectionResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnConnectionResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteVpnConnectionResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteVpnConnectionResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteInternetGatewayRequest">
- <summary>
- Deletes an Internet gateway from your AWS account. The gateway must not be attached to a VPC. For
- more information about your VPC and Internet gateway, go to Amazon Virtual Private Cloud User Guide.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteInternetGatewayRequest.WithInternetGatewayId(System.String)">
- <summary>
- Sets the InternetGatewayId property
- </summary>
- <param name="internetGatewayId">The ID of the Internet gateway to be deleted.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteInternetGatewayRequest.IsSetInternetGatewayId">
- <summary>
- Checks if InternetGatewayId property is set
- </summary>
- <returns>true if InternetGatewayId property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteInternetGatewayRequest.InternetGatewayId">
- <summary>
- Gets and sets the InternetGatewayId property.
- The ID of the Internet gateway to be deleted.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.DeleteCustomerGatewayResponse">
- <summary>
- Delete Customer Gateway Response
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteCustomerGatewayResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteCustomerGatewayResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.DeleteCustomerGatewayResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.DeleteCustomerGatewayResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateSnapshotResult">
- <summary>
- Create Snapshot Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotResult.IsSetSnapshot">
- <summary>
- Checks if Snapshot property is set
- </summary>
- <returns>true if Snapshot property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateSnapshotResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateSnapshotResult.Snapshot">
- <summary>
- Gets and sets the Snapshot property.
- Snapshot
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CreateImageResponse">
- <summary>
- Information returned by a CreateImage request.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageResponse.IsSetResponseMetadata">
- <summary>
- Checks if ResponseMetadata property is set
- </summary>
- <returns>true if ResponseMetadata property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageResponse.IsSetCreateImageResult">
- <summary>
- Checks if CreateImageResult property is set
- </summary>
- <returns>true if CreateImageResult property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageResponse.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CreateImageResponse.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CreateImageResponse.ResponseMetadata">
- <summary>
- Gets and sets the ResponseMetadata property.
- Response Metadata
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.CreateImageResponse.CreateImageResult">
- <summary>
- Gets and sets the CreateImageResult property.
- Information about the created image.
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.CancelBundleTaskResult">
- <summary>
- Cancel Bundle Task Result
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskResult.IsSetBundleTask">
- <summary>
- Checks if BundleTask property is set
- </summary>
- <returns>true if BundleTask property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskResult.ToXML">
- <summary>
- XML Representation of this object
- </summary>
- <returns>XML String</returns>
- </member>
- <member name="M:Amazon.EC2.Model.CancelBundleTaskResult.ToString">
- <summary>
- String Representation of this object. Overrides Object.ToString()
- </summary>
- <returns>This object as a string</returns>
- </member>
- <member name="P:Amazon.EC2.Model.CancelBundleTaskResult.BundleTask">
- <summary>
- Gets and sets the BundleTask property.
- List of bundle tasks
- </summary>
- </member>
- <member name="T:Amazon.EC2.Model.BlockDeviceMapping">
- <summary>
- Block device mapping.
- </summary>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.WithDeviceName(System.String)">
- <summary>
- Sets the DeviceName property
- </summary>
- <param name="deviceName">The device name (e.g., /dev/sdh).</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.IsSetDeviceName">
- <summary>
- Checks if DeviceName property is set
- </summary>
- <returns>true if DeviceName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.WithVirtualName(System.String)">
- <summary>
- Sets the VirtualName property
- </summary>
- <param name="virtualName">The virtual name.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.IsSetVirtualName">
- <summary>
- Checks if VirtualName property is set
- </summary>
- <returns>true if VirtualName property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.WithEbs(Amazon.EC2.Model.EbsBlockDevice)">
- <summary>
- Sets the Ebs property
- </summary>
- <param name="ebs">Specifies parameters used to automatically
- setup Amazon EBS
- volumes when the instance is launched.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.IsSetEbs">
- <summary>
- Checks if Ebs property is set
- </summary>
- <returns>true if Ebs property is set</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.WithNoDevice(System.String)">
- <summary>
- Sets the NoDevice property
- </summary>
- <param name="noDevice">Specifies the device name to suppress during
- instance launch.</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.EC2.Model.BlockDeviceMapping.IsSetNoDevice">
- <summary>
- Checks if NoDevice property is set
- </summary>
- <returns>true if NoDevice property is set</returns>
- </member>
- <member name="P:Amazon.EC2.Model.BlockDeviceMapping.DeviceName">
- <summary>
- Gets and sets the DeviceName property.
- The device name (e.g., /dev/sdh).
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BlockDeviceMapping.VirtualName">
- <summary>
- Gets and sets the VirtualName property.
- The virtual name.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BlockDeviceMapping.Ebs">
- <summary>
- Gets and sets the Ebs property.
- Specifies parameters used to automatically
- setup Amazon EBS
- volumes when the instance is launched.
- </summary>
- </member>
- <member name="P:Amazon.EC2.Model.BlockDeviceMapping.NoDevice">
- <summary>
- Gets and sets the NoDevice property.
- Specifies the device name to suppress during
- instance launch.
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.PutMetricDataResponseUnmarshaller">
- <summary>
- Response Unmarshaller for PutMetricData operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Transform.DisableAlarmActionsResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DisableAlarmActions operation
- </summary>
- </member>
- <member name="T:Amazon.CloudWatch.Model.LimitExceededException">
- <summary>
- AmazonCloudWatch exception
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.LimitExceededException.#ctor(System.String)">
- <summary>
- Constructs a new LimitExceededException with the specified error
- message.
- </summary>
- <param name="message">
- Describes the error encountered.
- </param>
- </member>
- <member name="T:Amazon.CloudWatch.Model.Datapoint">
- <summary>
- <para> The <c>Datapoint</c> data type encapsulates the statistical
- data that Amazon CloudWatch computes from metric data. </para>
- </summary>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Datapoint.WithTimestamp(System.DateTime)">
- <summary>
- Sets the Timestamp property
- </summary>
- <param name="timestamp">The value to set for the Timestamp property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Datapoint.WithSampleCount(System.Double)">
- <summary>
- Sets the SampleCount property
- </summary>
- <param name="sampleCount">The value to set for the SampleCount property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Datapoint.WithAverage(System.Double)">
- <summary>
- Sets the Average property
- </summary>
- <param name="average">The value to set for the Average property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Datapoint.WithSum(System.Double)">
- <summary>
- Sets the Sum property
- </summary>
- <param name="sum">The value to set for the Sum property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Datapoint.WithMinimum(System.Double)">
- <summary>
- Sets the Minimum property
- </summary>
- <param name="minimum">The value to set for the Minimum property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Datapoint.WithMaximum(System.Double)">
- <summary>
- Sets the Maximum property
- </summary>
- <param name="maximum">The value to set for the Maximum property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudWatch.Model.Datapoint.WithUnit(System.String)">
- <summary>
- Sets the Unit property
- </summary>
- <param name="unit">The value to set for the Unit property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Datapoint.Timestamp">
- <summary>
- The time stamp used for the datapoint.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Datapoint.SampleCount">
- <summary>
- The number of metric values that contributed to the aggregate value of this datapoint.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Datapoint.Average">
- <summary>
- The average of metric values that correspond to the datapoint.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Datapoint.Sum">
- <summary>
- The sum of metric values used for the datapoint.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Datapoint.Minimum">
- <summary>
- The minimum metric value used for the datapoint.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Datapoint.Maximum">
- <summary>
- The maximum of the metric value used for the datapoint.
-
- </summary>
- </member>
- <member name="P:Amazon.CloudWatch.Model.Datapoint.Unit">
- <summary>
- The standard unit used for the datapoint.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Allowed Values</term>
- <description>Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, None</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.GetDistributionConfigResponse">
- <summary>
- The GetDistributionConfigResponse contains the distribution's configuration
- and any headers returned by CloudFront.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetDistributionConfigResponse.DistributionConfig">
- <summary>
- Gets and Sets the DistributionConfig property.
- </summary>
- </member>
- <member name="P:Amazon.CloudFront.Model.GetDistributionConfigResponse.ETag">
- <summary>
- Gets and sets the ETag property.
- The Distribution Configuration's ETag property is also set if possible.
- </summary>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig">
- <summary>
- Describes a streaming distribution's configuration.
- It is used as a request element in Create a Distribution and Set a Distribution's Configuration.
- It is used as a response element in Get a Distribution's Information and Get a Distribution's
- Configuration.
- <para>A streaming distribution configuration objects consists of the following items:
- <list type="number">
- <item>Caller Reference</item>
- <item>Origin S3 Bucket</item>
- <item>Comment</item>
- <item>A list of CNAMEs for the distribution</item>
- <item>Enabled flag</item>
- <item>Bucket Logging details</item>
- <item>CloudFront Origin Access Identity associated with the distribution.
- This is a virtual identity you use to let CloudFront fetch private content
- from your bucket.</item>
- <item>The AWS Accounts that have URL signing privileges for Private Content.</item>
- </list></para>
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/StreamingDistributionConfigDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.ToString">
- <summary>
- Creates an XML representation of the CloudFront
- distribution configuration. The resulting XML
- can be sent to CloudFront when creating or updating
- a distribution.
- </summary>
- <returns>
- XML representation of the distribution's configuration
- </returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithOrigin(System.String)">
- <summary>
- Sets the Origin property.
- </summary>
- <param name="origin">Origin property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithComment(System.String)">
- <summary>
- Sets the Comment property.
- </summary>
- <param name="comment">Comment property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithCallerReference(System.String)">
- <summary>
- Sets the CallerReference property
- </summary>
- <param name="callerReference">CallerReference property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithCNames(System.String[])">
- <summary>
- Sets the CNAME property. If you set more than 10 CNAME aliases for a distribution,
- a <code>TooManyDistributionCNAMEs</code> exception will be returned by CloudFront.
- </summary>
- <param name="cnames">CNAME property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithEnabled(System.Boolean)">
- <summary>
- Sets the Enabled property
- </summary>
- <param name="enabled">Enabled property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithOriginAccessIdentity(Amazon.CloudFront.Model.CloudFrontOriginAccessIdentity)">
- <summary>
- Sets the OriginAccessIdentity property.
- </summary>
- <param name="identity">OriginAccessIdentity property</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithTrustedSigners(Amazon.CloudFront.Model.UrlTrustedSigners)">
- <summary>
- Sets the TrustedSigners property.
- This specifies any AWS accounts you want to permit to create signed URLs for private content.
- </summary>
- <param name="signers">TrustedSigners property is set to this value</param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontStreamingDistributionConfig.WithLogging(System.String,System.String)">
- <summary>
- Sets the Logging property.
- </summary>
- <param name="bucket">The bucket into which logs will be put</param>
- <param name="prefix">The prefix for the log files</param>
- <returns>this instance</returns>
- </member>
- <member name="T:Amazon.CloudFront.Model.CloudFrontDistribution">
- <summary>
- Describes a CloudFront Distribution.
- It is used as a response element when Creating a Distribution and Getting a Distribution's Information.
- <para>A distribution consists of the following items:
- <list type="number">
- <item>Id</item>
- <item>Status</item>
- <item>Last Modified Timestamp</item>
- <item>Domain Name</item>
- <item>The Configuration for the Distribution</item>
- </list>
- </para>
- For more information, please visit:
- <see href="http://docs.amazonwebservices.com/AmazonCloudFront/latest/APIReference/DistributionDatatype.html"/>
- </summary>
- </member>
- <member name="M:Amazon.CloudFront.Model.CloudFrontDistribution.IsSetConfig">
- <summary>
- Checks if DistributionConfig property is set
- </summary>
- <returns>true if DistributionConfig property is set</returns>
- </member>
- <member name="P:Amazon.CloudFront.Model.CloudFrontDistribution.DistributionConfig">
- <summary>
- Gets and sets the current Distribution Configuration.
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.OutputUnmarshaller">
- <summary>
- Output Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.ListStackResourcesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for ListStackResources operation
- </summary>
- </member>
- <member name="T:Amazon.CloudFormation.Model.Transform.DescribeStackResourcesResponseUnmarshaller">
- <summary>
- Response Unmarshaller for DescribeStackResources operation
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest">
- <summary>
- Container for the parameters to the UpdateAutoScalingGroup operation.
- <para> Updates the configuration for the specified AutoScalingGroup. </para> <para><b>NOTE:</b> To update an Auto Scaling group with a
- launch configuration that has the InstanceMonitoring.enabled flag set to false, you must first ensure that collection of group metrics is
- disabled. Otherwise, calls to UpdateAutoScalingGroup will fail. If you have previously enabled group metrics collection, you can disable
- collection of all group metrics by calling DisableMetricsCollection. </para> <para> The new settings are registered upon the completion of
- this call. Any launch configuration settings take effect on any triggers after this call returns. Triggers that are currently in progress
- aren't affected. </para> <para><b>NOTE:</b> If the new values are specified for the MinSize or MaxSize parameters, then there will be an
- implicit call to SetDesiredCapacity to set the group to the new MaxSize. All optional parameters are left unchanged if not passed in the
- request. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.UpdateAutoScalingGroup(Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithLaunchConfigurationName(System.String)">
- <summary>
- Sets the LaunchConfigurationName property
- </summary>
- <param name="launchConfigurationName">The value to set for the LaunchConfigurationName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithMinSize(System.Int32)">
- <summary>
- Sets the MinSize property
- </summary>
- <param name="minSize">The value to set for the MinSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithMaxSize(System.Int32)">
- <summary>
- Sets the MaxSize property
- </summary>
- <param name="maxSize">The value to set for the MaxSize property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithDesiredCapacity(System.Int32)">
- <summary>
- Sets the DesiredCapacity property
- </summary>
- <param name="desiredCapacity">The value to set for the DesiredCapacity property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithDefaultCooldown(System.Int32)">
- <summary>
- Sets the DefaultCooldown property
- </summary>
- <param name="defaultCooldown">The value to set for the DefaultCooldown property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithAvailabilityZones(System.String[])">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithAvailabilityZones(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the AvailabilityZones collection
- </summary>
- <param name="availabilityZones">The values to add to the AvailabilityZones collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithHealthCheckType(System.String)">
- <summary>
- Sets the HealthCheckType property
- </summary>
- <param name="healthCheckType">The value to set for the HealthCheckType property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithHealthCheckGracePeriod(System.Int32)">
- <summary>
- Sets the HealthCheckGracePeriod property
- </summary>
- <param name="healthCheckGracePeriod">The value to set for the HealthCheckGracePeriod property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithPlacementGroup(System.String)">
- <summary>
- Sets the PlacementGroup property
- </summary>
- <param name="placementGroup">The value to set for the PlacementGroup property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.WithVPCZoneIdentifier(System.String)">
- <summary>
- Sets the VPCZoneIdentifier property
- </summary>
- <param name="vPCZoneIdentifier">The value to set for the VPCZoneIdentifier property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.LaunchConfigurationName">
- <summary>
- The name of the launch configuration.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.MinSize">
- <summary>
- The minimum size of the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.MaxSize">
- <summary>
- The maximum size of the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.DesiredCapacity">
- <summary>
- The desired capacity for the Auto Scaling group.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.DefaultCooldown">
- <summary>
- The amount of time, in seconds, after a scaling activity completes before any further trigger-related scaling activities can start.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.AvailabilityZones">
- <summary>
- Availability zones for the group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - </description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.HealthCheckType">
- <summary>
- The service of interest for the health status check, either "EC2" for Amazon EC2 or "ELB" for Elastic Load Balancing.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 32</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.HealthCheckGracePeriod">
- <summary>
- The length of time that Auto Scaling waits before checking an instance's health status. The grace period begins when an instance comes into
- service.
-
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.PlacementGroup">
- <summary>
- The name of the cluster placement group, if applicable. For more information, go to <a
- href="http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/using_cluster_computing.html"> Using Cluster Instances</a> in the Amazon EC2
- User Guide.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.UpdateAutoScalingGroupRequest.VPCZoneIdentifier">
- <summary>
- The identifier for the VPC connection, if applicable.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 255</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.UpdateAutoScalingGroupRequestMarshaller">
- <summary>
- Update Auto Scaling Group Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.PutScheduledUpdateGroupActionRequestMarshaller">
- <summary>
- Put Scheduled Update Group Action Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.InstanceUnmarshaller">
- <summary>
- Instance Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeLaunchConfigurationsResultUnmarshaller">
- <summary>
- DescribeLaunchConfigurationsResult Unmarshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.DescribeAutoScalingNotificationTypesRequestMarshaller">
- <summary>
- Describe Auto Scaling Notification Types Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.Transform.CreateLaunchConfigurationRequestMarshaller">
- <summary>
- Create Launch Configuration Request Marshaller
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.PutScalingPolicyResponse">
- <summary>
- Returns information about the PutScalingPolicyResult response and response metadata.
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutScalingPolicyResponse.PutScalingPolicyResult">
- <summary>
- Gets and sets the PutScalingPolicyResult property.
- The PolicyARNType data type.
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest">
- <summary>
- Container for the parameters to the PutNotificationConfiguration operation.
- <para> Creates a notification action for an Auto Scaling group when a specified event takes place. </para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.PutNotificationConfiguration(Amazon.AutoScaling.Model.PutNotificationConfigurationRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest.WithTopicARN(System.String)">
- <summary>
- Sets the TopicARN property
- </summary>
- <param name="topicARN">The value to set for the TopicARN property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest.WithNotificationTypes(System.String[])">
- <summary>
- Adds elements to the NotificationTypes collection
- </summary>
- <param name="notificationTypes">The values to add to the NotificationTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest.WithNotificationTypes(System.Collections.Generic.IEnumerable{System.String})">
- <summary>
- Adds elements to the NotificationTypes collection
- </summary>
- <param name="notificationTypes">The values to add to the NotificationTypes collection </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest.AutoScalingGroupName">
- <summary>
- The name of the Auto Scaling Group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest.TopicARN">
- <summary>
- The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) topic.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.PutNotificationConfigurationRequest.NotificationTypes">
- <summary>
- The type of events for this action to start.
-
- </summary>
- </member>
- <member name="T:Amazon.AutoScaling.Model.ExecutePolicyRequest">
- <summary>
- Container for the parameters to the ExecutePolicy operation.
- <para>Runs the policy you create for your Auto Scaling group in PutScalingPolicy.</para>
- </summary>
- <seealso cref="M:Amazon.AutoScaling.AmazonAutoScaling.ExecutePolicy(Amazon.AutoScaling.Model.ExecutePolicyRequest)"/>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ExecutePolicyRequest.WithAutoScalingGroupName(System.String)">
- <summary>
- Sets the AutoScalingGroupName property
- </summary>
- <param name="autoScalingGroupName">The value to set for the AutoScalingGroupName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ExecutePolicyRequest.WithPolicyName(System.String)">
- <summary>
- Sets the PolicyName property
- </summary>
- <param name="policyName">The value to set for the PolicyName property </param>
- <returns>this instance</returns>
- </member>
- <member name="M:Amazon.AutoScaling.Model.ExecutePolicyRequest.WithHonorCooldown(System.Boolean)">
- <summary>
- Sets the HonorCooldown property
- </summary>
- <param name="honorCooldown">The value to set for the HonorCooldown property </param>
- <returns>this instance</returns>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ExecutePolicyRequest.AutoScalingGroupName">
- <summary>
- The name or ARN of the Auto Scaling Group.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ExecutePolicyRequest.PolicyName">
- <summary>
- The name or PolicyARN of the policy you want to run.
-
- <para>
- <b>Constraints:</b>
- <list type="definition">
- <item>
- <term>Length</term>
- <description>1 - 1600</description>
- </item>
- <item>
- <term>Pattern</term>
- <description>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</description>
- </item>
- </list>
- </para>
- </summary>
- </member>
- <member name="P:Amazon.AutoScaling.Model.ExecutePolicyRequest.HonorCooldown">
- <summary>
- Set to True if you want Auto Scaling to reject this request if the Auto Scaling group is in cooldown.
-
- </summary>
- </member>
- </members>
-</doc>