lib/aws-sdk-acm/client.rb in aws-sdk-acm-1.0.0.rc6 vs lib/aws-sdk-acm/client.rb in aws-sdk-acm-1.0.0.rc7

- old
+ new

@@ -636,16 +636,40 @@ # site that you want to secure with an ACM Certificate. Use an asterisk # (*) to create a wildcard certificate that protects several sites in # the same domain. For example, *.example.com protects www.example.com, # site.example.com, and images.example.com. # + # The maximum length of a DNS name is 253 octets. The name is made up of + # multiple labels separated by periods. No label can be longer than 63 + # octets. Consider the following examples: + # + # `(63 octets).(63 octets).(63 octets).(61 octets)` is legal because the + # total length is 253 octets (63+1+63+1+63+1+61) and no label exceeds 63 + # octets. + # + # `(64 octets).(63 octets).(63 octets).(61 octets)` is not legal because + # the total length exceeds 253 octets (64+1+63+1+63+1+61) and the first + # label exceeds 63 octets. + # + # `(63 octets).(63 octets).(63 octets).(62 octets)` is not legal because + # the total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 + # octets. + # # @option params [Array<String>] :subject_alternative_names # Additional FQDNs to be included in the Subject Alternative Name # extension of the ACM Certificate. For example, add the name # www.example.net to a certificate for which the `DomainName` field is - # www.example.com if users can reach your site by using either name. + # www.example.com if users can reach your site by using either name. The + # maximum number of domain names that you can add to an ACM Certificate + # is 100. However, the initial limit is 10 domain names. If you need + # more than 10 names, you must request a limit increase. For more + # information, see [Limits][1]. # + # + # + # [1]: http://docs.aws.amazon.com/acm/latest/userguide/acm-limits.html + # # @option params [String] :idempotency_token # Customer chosen string that can be used to distinguish between calls # to `RequestCertificate`. Idempotency tokens time out after one hour. # Therefore, if you call `RequestCertificate` multiple times with the # same idempotency token within one hour, ACM recognizes that you are @@ -696,11 +720,17 @@ # validation email can be blocked by spam filters. Therefore, if you do # not receive the original mail, you can request that the mail be resent # within 72 hours of requesting the ACM Certificate. If more than 72 # hours have elapsed since your original request or since your last # attempt to resend validation mail, you must request a new certificate. + # For more information about setting up your contact email addresses, + # see [Configure Email for your Domain][1]. # + # + # + # [1]: http://docs.aws.amazon.com/acm/latest/userguide/setup-email.html + # # @option params [required, String] :certificate_arn # String that contains the ARN of the requested certificate. The # certificate ARN is generated and returned by the RequestCertificate # action as soon as the request is made. By default, using this # parameter causes email to be sent to all top-level domains you @@ -764,10 +794,10 @@ operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-acm' - context[:gem_version] = '1.0.0.rc6' + context[:gem_version] = '1.0.0.rc7' Seahorse::Client::Request.new(handlers, context) end # @api private # @deprecated