#[non_exhaustive]pub struct DistributionConfigBuilder { /* private fields */ }
Expand description
A builder for DistributionConfig
.
Implementations§
source§impl DistributionConfigBuilder
impl DistributionConfigBuilder
sourcepub fn caller_reference(self, input: impl Into<String>) -> Self
pub fn caller_reference(self, input: impl Into<String>) -> Self
A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
If the value of CallerReference
is new (regardless of the content of the DistributionConfig
object), CloudFront creates a new distribution.
If CallerReference
is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists
error.
sourcepub fn set_caller_reference(self, input: Option<String>) -> Self
pub fn set_caller_reference(self, input: Option<String>) -> Self
A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
If the value of CallerReference
is new (regardless of the content of the DistributionConfig
object), CloudFront creates a new distribution.
If CallerReference
is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists
error.
sourcepub fn get_caller_reference(&self) -> &Option<String>
pub fn get_caller_reference(&self) -> &Option<String>
A unique value (for example, a date-time stamp) that ensures that the request can't be replayed.
If the value of CallerReference
is new (regardless of the content of the DistributionConfig
object), CloudFront creates a new distribution.
If CallerReference
is a value that you already sent in a previous request to create a distribution, CloudFront returns a DistributionAlreadyExists
error.
sourcepub fn aliases(self, input: Aliases) -> Self
pub fn aliases(self, input: Aliases) -> Self
A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
sourcepub fn set_aliases(self, input: Option<Aliases>) -> Self
pub fn set_aliases(self, input: Option<Aliases>) -> Self
A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
sourcepub fn get_aliases(&self) -> &Option<Aliases>
pub fn get_aliases(&self) -> &Option<Aliases>
A complex type that contains information about CNAMEs (alternate domain names), if any, for this distribution.
sourcepub fn default_root_object(self, input: impl Into<String>) -> Self
pub fn default_root_object(self, input: impl Into<String>) -> Self
The object that you want CloudFront to request from your origin (for example, index.html
) when a viewer requests the root URL for your distribution (https://www.example.com
) instead of an object in your distribution (https://www.example.com/product-description.html
). Specifying a default root object avoids exposing the contents of your distribution.
Specify only the object name, for example, index.html
. Don't add a /
before the object name.
If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject
element.
To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject
element.
To replace the default root object, update the distribution configuration and specify the new object.
For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.
sourcepub fn set_default_root_object(self, input: Option<String>) -> Self
pub fn set_default_root_object(self, input: Option<String>) -> Self
The object that you want CloudFront to request from your origin (for example, index.html
) when a viewer requests the root URL for your distribution (https://www.example.com
) instead of an object in your distribution (https://www.example.com/product-description.html
). Specifying a default root object avoids exposing the contents of your distribution.
Specify only the object name, for example, index.html
. Don't add a /
before the object name.
If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject
element.
To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject
element.
To replace the default root object, update the distribution configuration and specify the new object.
For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.
sourcepub fn get_default_root_object(&self) -> &Option<String>
pub fn get_default_root_object(&self) -> &Option<String>
The object that you want CloudFront to request from your origin (for example, index.html
) when a viewer requests the root URL for your distribution (https://www.example.com
) instead of an object in your distribution (https://www.example.com/product-description.html
). Specifying a default root object avoids exposing the contents of your distribution.
Specify only the object name, for example, index.html
. Don't add a /
before the object name.
If you don't want to specify a default root object when you create a distribution, include an empty DefaultRootObject
element.
To delete the default root object from an existing distribution, update the distribution configuration and include an empty DefaultRootObject
element.
To replace the default root object, update the distribution configuration and specify the new object.
For more information about the default root object, see Creating a Default Root Object in the Amazon CloudFront Developer Guide.
sourcepub fn origins(self, input: Origins) -> Self
pub fn origins(self, input: Origins) -> Self
A complex type that contains information about origins for this distribution.
This field is required.sourcepub fn set_origins(self, input: Option<Origins>) -> Self
pub fn set_origins(self, input: Option<Origins>) -> Self
A complex type that contains information about origins for this distribution.
sourcepub fn get_origins(&self) -> &Option<Origins>
pub fn get_origins(&self) -> &Option<Origins>
A complex type that contains information about origins for this distribution.
sourcepub fn origin_groups(self, input: OriginGroups) -> Self
pub fn origin_groups(self, input: OriginGroups) -> Self
A complex type that contains information about origin groups for this distribution.
sourcepub fn set_origin_groups(self, input: Option<OriginGroups>) -> Self
pub fn set_origin_groups(self, input: Option<OriginGroups>) -> Self
A complex type that contains information about origin groups for this distribution.
sourcepub fn get_origin_groups(&self) -> &Option<OriginGroups>
pub fn get_origin_groups(&self) -> &Option<OriginGroups>
A complex type that contains information about origin groups for this distribution.
sourcepub fn default_cache_behavior(self, input: DefaultCacheBehavior) -> Self
pub fn default_cache_behavior(self, input: DefaultCacheBehavior) -> Self
A complex type that describes the default cache behavior if you don't specify a CacheBehavior
element or if files don't match any of the values of PathPattern
in CacheBehavior
elements. You must create exactly one default cache behavior.
sourcepub fn set_default_cache_behavior(
self,
input: Option<DefaultCacheBehavior>
) -> Self
pub fn set_default_cache_behavior( self, input: Option<DefaultCacheBehavior> ) -> Self
A complex type that describes the default cache behavior if you don't specify a CacheBehavior
element or if files don't match any of the values of PathPattern
in CacheBehavior
elements. You must create exactly one default cache behavior.
sourcepub fn get_default_cache_behavior(&self) -> &Option<DefaultCacheBehavior>
pub fn get_default_cache_behavior(&self) -> &Option<DefaultCacheBehavior>
A complex type that describes the default cache behavior if you don't specify a CacheBehavior
element or if files don't match any of the values of PathPattern
in CacheBehavior
elements. You must create exactly one default cache behavior.
sourcepub fn cache_behaviors(self, input: CacheBehaviors) -> Self
pub fn cache_behaviors(self, input: CacheBehaviors) -> Self
A complex type that contains zero or more CacheBehavior
elements.
sourcepub fn set_cache_behaviors(self, input: Option<CacheBehaviors>) -> Self
pub fn set_cache_behaviors(self, input: Option<CacheBehaviors>) -> Self
A complex type that contains zero or more CacheBehavior
elements.
sourcepub fn get_cache_behaviors(&self) -> &Option<CacheBehaviors>
pub fn get_cache_behaviors(&self) -> &Option<CacheBehaviors>
A complex type that contains zero or more CacheBehavior
elements.
sourcepub fn custom_error_responses(self, input: CustomErrorResponses) -> Self
pub fn custom_error_responses(self, input: CustomErrorResponses) -> Self
A complex type that controls the following:
-
Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.
-
How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.
sourcepub fn set_custom_error_responses(
self,
input: Option<CustomErrorResponses>
) -> Self
pub fn set_custom_error_responses( self, input: Option<CustomErrorResponses> ) -> Self
A complex type that controls the following:
-
Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.
-
How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.
sourcepub fn get_custom_error_responses(&self) -> &Option<CustomErrorResponses>
pub fn get_custom_error_responses(&self) -> &Option<CustomErrorResponses>
A complex type that controls the following:
-
Whether CloudFront replaces HTTP status codes in the 4xx and 5xx range with custom error messages before returning the response to the viewer.
-
How long CloudFront caches HTTP status codes in the 4xx and 5xx range.
For more information about custom error pages, see Customizing Error Responses in the Amazon CloudFront Developer Guide.
sourcepub fn comment(self, input: impl Into<String>) -> Self
pub fn comment(self, input: impl Into<String>) -> Self
A comment to describe the distribution. The comment cannot be longer than 128 characters.
This field is required.sourcepub fn set_comment(self, input: Option<String>) -> Self
pub fn set_comment(self, input: Option<String>) -> Self
A comment to describe the distribution. The comment cannot be longer than 128 characters.
sourcepub fn get_comment(&self) -> &Option<String>
pub fn get_comment(&self) -> &Option<String>
A comment to describe the distribution. The comment cannot be longer than 128 characters.
sourcepub fn logging(self, input: LoggingConfig) -> Self
pub fn logging(self, input: LoggingConfig) -> Self
A complex type that controls whether access logs are written for the distribution.
For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.
sourcepub fn set_logging(self, input: Option<LoggingConfig>) -> Self
pub fn set_logging(self, input: Option<LoggingConfig>) -> Self
A complex type that controls whether access logs are written for the distribution.
For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.
sourcepub fn get_logging(&self) -> &Option<LoggingConfig>
pub fn get_logging(&self) -> &Option<LoggingConfig>
A complex type that controls whether access logs are written for the distribution.
For more information about logging, see Access Logs in the Amazon CloudFront Developer Guide.
sourcepub fn price_class(self, input: PriceClass) -> Self
pub fn price_class(self, input: PriceClass) -> Self
The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All
, CloudFront responds to requests for your objects from all CloudFront edge locations.
If you specify a price class other than PriceClass_All
, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.
For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.
sourcepub fn set_price_class(self, input: Option<PriceClass>) -> Self
pub fn set_price_class(self, input: Option<PriceClass>) -> Self
The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All
, CloudFront responds to requests for your objects from all CloudFront edge locations.
If you specify a price class other than PriceClass_All
, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.
For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.
sourcepub fn get_price_class(&self) -> &Option<PriceClass>
pub fn get_price_class(&self) -> &Option<PriceClass>
The price class that corresponds with the maximum price that you want to pay for CloudFront service. If you specify PriceClass_All
, CloudFront responds to requests for your objects from all CloudFront edge locations.
If you specify a price class other than PriceClass_All
, CloudFront serves your objects from the CloudFront edge location that has the lowest latency among the edge locations in your price class. Viewers who are in or near regions that are excluded from your specified price class may encounter slower performance.
For more information about price classes, see Choosing the Price Class for a CloudFront Distribution in the Amazon CloudFront Developer Guide. For information about CloudFront pricing, including how price classes (such as Price Class 100) map to CloudFront regions, see Amazon CloudFront Pricing.
sourcepub fn enabled(self, input: bool) -> Self
pub fn enabled(self, input: bool) -> Self
From this field, you can enable or disable the selected distribution.
This field is required.sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
From this field, you can enable or disable the selected distribution.
sourcepub fn get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<bool>
From this field, you can enable or disable the selected distribution.
sourcepub fn viewer_certificate(self, input: ViewerCertificate) -> Self
pub fn viewer_certificate(self, input: ViewerCertificate) -> Self
A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.
sourcepub fn set_viewer_certificate(self, input: Option<ViewerCertificate>) -> Self
pub fn set_viewer_certificate(self, input: Option<ViewerCertificate>) -> Self
A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.
sourcepub fn get_viewer_certificate(&self) -> &Option<ViewerCertificate>
pub fn get_viewer_certificate(&self) -> &Option<ViewerCertificate>
A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.
sourcepub fn restrictions(self, input: Restrictions) -> Self
pub fn restrictions(self, input: Restrictions) -> Self
A complex type that identifies ways in which you want to restrict distribution of your content.
sourcepub fn set_restrictions(self, input: Option<Restrictions>) -> Self
pub fn set_restrictions(self, input: Option<Restrictions>) -> Self
A complex type that identifies ways in which you want to restrict distribution of your content.
sourcepub fn get_restrictions(&self) -> &Option<Restrictions>
pub fn get_restrictions(&self) -> &Option<Restrictions>
A complex type that identifies ways in which you want to restrict distribution of your content.
sourcepub fn web_acl_id(self, input: impl Into<String>) -> Self
pub fn web_acl_id(self, input: impl Into<String>) -> Self
A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
. To specify a web ACL created using WAF Classic, use the ACL ID, for example a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.
WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.
sourcepub fn set_web_acl_id(self, input: Option<String>) -> Self
pub fn set_web_acl_id(self, input: Option<String>) -> Self
A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
. To specify a web ACL created using WAF Classic, use the ACL ID, for example a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.
WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.
sourcepub fn get_web_acl_id(&self) -> &Option<String>
pub fn get_web_acl_id(&self) -> &Option<String>
A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
. To specify a web ACL created using WAF Classic, use the ACL ID, for example a1b2c3d4-5678-90ab-cdef-EXAMPLE11111
.
WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.
sourcepub fn http_version(self, input: HttpVersion) -> Self
pub fn http_version(self, input: HttpVersion) -> Self
(Optional) Specify the HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2
. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.
For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).
For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.
sourcepub fn set_http_version(self, input: Option<HttpVersion>) -> Self
pub fn set_http_version(self, input: Option<HttpVersion>) -> Self
(Optional) Specify the HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2
. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.
For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).
For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.
sourcepub fn get_http_version(&self) -> &Option<HttpVersion>
pub fn get_http_version(&self) -> &Option<HttpVersion>
(Optional) Specify the HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2
. Viewers that don't support HTTP/2 automatically use an earlier HTTP version.
For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI).
For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.
sourcepub fn is_ipv6_enabled(self, input: bool) -> Self
pub fn is_ipv6_enabled(self, input: bool) -> Self
If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true
. If you specify false
, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR
and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.
In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress
parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.
If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:
-
You enable IPv6 for the distribution
-
You're using alternate domain names in the URLs for your objects
For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.
If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.
sourcepub fn set_is_ipv6_enabled(self, input: Option<bool>) -> Self
pub fn set_is_ipv6_enabled(self, input: Option<bool>) -> Self
If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true
. If you specify false
, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR
and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.
In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress
parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.
If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:
-
You enable IPv6 for the distribution
-
You're using alternate domain names in the URLs for your objects
For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.
If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.
sourcepub fn get_is_ipv6_enabled(&self) -> &Option<bool>
pub fn get_is_ipv6_enabled(&self) -> &Option<bool>
If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your distribution, specify true
. If you specify false
, CloudFront responds to IPv6 DNS requests with the DNS response code NOERROR
and with no IP addresses. This allows viewers to submit a second request, for an IPv4 address for your distribution.
In general, you should enable IPv6 if you have users on IPv6 networks who want to access your content. However, if you're using signed URLs or signed cookies to restrict access to your content, and if you're using a custom policy that includes the IpAddress
parameter to restrict the IP addresses that can access your content, don't enable IPv6. If you want to restrict access to some content by IP address and not restrict access to other content (or restrict access but not by IP address), you can create two distributions. For more information, see Creating a Signed URL Using a Custom Policy in the Amazon CloudFront Developer Guide.
If you're using an Route 53 Amazon Web Services Integration alias resource record set to route traffic to your CloudFront distribution, you need to create a second alias resource record set when both of the following are true:
-
You enable IPv6 for the distribution
-
You're using alternate domain names in the URLs for your objects
For more information, see Routing Traffic to an Amazon CloudFront Web Distribution by Using Your Domain Name in the Route 53 Amazon Web Services Integration Developer Guide.
If you created a CNAME resource record set, either with Route 53 Amazon Web Services Integration or with another DNS service, you don't need to make any changes. A CNAME record will route traffic to your distribution regardless of the IP address format of the viewer request.
sourcepub fn continuous_deployment_policy_id(self, input: impl Into<String>) -> Self
pub fn continuous_deployment_policy_id(self, input: impl Into<String>) -> Self
The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy
.
sourcepub fn set_continuous_deployment_policy_id(self, input: Option<String>) -> Self
pub fn set_continuous_deployment_policy_id(self, input: Option<String>) -> Self
The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy
.
sourcepub fn get_continuous_deployment_policy_id(&self) -> &Option<String>
pub fn get_continuous_deployment_policy_id(&self) -> &Option<String>
The identifier of a continuous deployment policy. For more information, see CreateContinuousDeploymentPolicy
.
sourcepub fn staging(self, input: bool) -> Self
pub fn staging(self, input: bool) -> Self
A Boolean that indicates whether this is a staging distribution. When this value is true
, this is a staging distribution. When this value is false
, this is not a staging distribution.
sourcepub fn set_staging(self, input: Option<bool>) -> Self
pub fn set_staging(self, input: Option<bool>) -> Self
A Boolean that indicates whether this is a staging distribution. When this value is true
, this is a staging distribution. When this value is false
, this is not a staging distribution.
sourcepub fn get_staging(&self) -> &Option<bool>
pub fn get_staging(&self) -> &Option<bool>
A Boolean that indicates whether this is a staging distribution. When this value is true
, this is a staging distribution. When this value is false
, this is not a staging distribution.
sourcepub fn build(self) -> Result<DistributionConfig, BuildError>
pub fn build(self) -> Result<DistributionConfig, BuildError>
Consumes the builder and constructs a DistributionConfig
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for DistributionConfigBuilder
impl Clone for DistributionConfigBuilder
source§fn clone(&self) -> DistributionConfigBuilder
fn clone(&self) -> DistributionConfigBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DistributionConfigBuilder
impl Debug for DistributionConfigBuilder
source§impl Default for DistributionConfigBuilder
impl Default for DistributionConfigBuilder
source§fn default() -> DistributionConfigBuilder
fn default() -> DistributionConfigBuilder
source§impl PartialEq for DistributionConfigBuilder
impl PartialEq for DistributionConfigBuilder
source§fn eq(&self, other: &DistributionConfigBuilder) -> bool
fn eq(&self, other: &DistributionConfigBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DistributionConfigBuilder
Auto Trait Implementations§
impl Freeze for DistributionConfigBuilder
impl RefUnwindSafe for DistributionConfigBuilder
impl Send for DistributionConfigBuilder
impl Sync for DistributionConfigBuilder
impl Unpin for DistributionConfigBuilder
impl UnwindSafe for DistributionConfigBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more