#[non_exhaustive]pub struct InstanceMetadataOptions {
pub http_tokens: Option<String>,
pub http_put_response_hop_limit: Option<i32>,
}
Expand description
The instance metadata options that apply to the HTTP requests that pipeline builds use to launch EC2 build and test instances. For more information about instance metadata options, see Configure the instance metadata options in the Amazon EC2 User Guide for Linux instances, or Configure the instance metadata options in the Amazon EC2 Windows Guide for Windows instances.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.http_tokens: Option<String>
Indicates whether a signed token header is required for instance metadata retrieval requests. The values affect the response as follows:
-
required – When you retrieve the IAM role credentials, version 2.0 credentials are returned in all cases.
-
optional – You can include a signed token header in your request to retrieve instance metadata, or you can leave it out. If you include it, version 2.0 credentials are returned for the IAM role. Otherwise, version 1.0 credentials are returned.
The default setting is optional.
http_put_response_hop_limit: Option<i32>
Limit the number of hops that an instance metadata request can traverse to reach its destination.
Implementations
sourceimpl InstanceMetadataOptions
impl InstanceMetadataOptions
sourcepub fn http_tokens(&self) -> Option<&str>
pub fn http_tokens(&self) -> Option<&str>
Indicates whether a signed token header is required for instance metadata retrieval requests. The values affect the response as follows:
-
required – When you retrieve the IAM role credentials, version 2.0 credentials are returned in all cases.
-
optional – You can include a signed token header in your request to retrieve instance metadata, or you can leave it out. If you include it, version 2.0 credentials are returned for the IAM role. Otherwise, version 1.0 credentials are returned.
The default setting is optional.
sourcepub fn http_put_response_hop_limit(&self) -> Option<i32>
pub fn http_put_response_hop_limit(&self) -> Option<i32>
Limit the number of hops that an instance metadata request can traverse to reach its destination.
sourceimpl InstanceMetadataOptions
impl InstanceMetadataOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InstanceMetadataOptions
Trait Implementations
sourceimpl Clone for InstanceMetadataOptions
impl Clone for InstanceMetadataOptions
sourcefn clone(&self) -> InstanceMetadataOptions
fn clone(&self) -> InstanceMetadataOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InstanceMetadataOptions
impl Debug for InstanceMetadataOptions
sourceimpl PartialEq<InstanceMetadataOptions> for InstanceMetadataOptions
impl PartialEq<InstanceMetadataOptions> for InstanceMetadataOptions
sourcefn eq(&self, other: &InstanceMetadataOptions) -> bool
fn eq(&self, other: &InstanceMetadataOptions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InstanceMetadataOptions) -> bool
fn ne(&self, other: &InstanceMetadataOptions) -> bool
This method tests for !=
.
impl StructuralPartialEq for InstanceMetadataOptions
Auto Trait Implementations
impl RefUnwindSafe for InstanceMetadataOptions
impl Send for InstanceMetadataOptions
impl Sync for InstanceMetadataOptions
impl Unpin for InstanceMetadataOptions
impl UnwindSafe for InstanceMetadataOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more