#[non_exhaustive]
pub struct AppBlockBuilderBuilder { /* private fields */ }
Expand description

A builder for AppBlockBuilder.

Implementations§

source§

impl AppBlockBuilderBuilder

source

pub fn arn(self, input: impl Into<String>) -> Self

The ARN of the app block builder.

This field is required.
source

pub fn set_arn(self, input: Option<String>) -> Self

The ARN of the app block builder.

source

pub fn get_arn(&self) -> &Option<String>

The ARN of the app block builder.

source

pub fn name(self, input: impl Into<String>) -> Self

The name of the app block builder.

This field is required.
source

pub fn set_name(self, input: Option<String>) -> Self

The name of the app block builder.

source

pub fn get_name(&self) -> &Option<String>

The name of the app block builder.

source

pub fn display_name(self, input: impl Into<String>) -> Self

The display name of the app block builder.

source

pub fn set_display_name(self, input: Option<String>) -> Self

The display name of the app block builder.

source

pub fn get_display_name(&self) -> &Option<String>

The display name of the app block builder.

source

pub fn description(self, input: impl Into<String>) -> Self

The description of the app block builder.

source

pub fn set_description(self, input: Option<String>) -> Self

The description of the app block builder.

source

pub fn get_description(&self) -> &Option<String>

The description of the app block builder.

source

pub fn platform(self, input: AppBlockBuilderPlatformType) -> Self

The platform of the app block builder.

WINDOWS_SERVER_2019 is the only valid value.

This field is required.
source

pub fn set_platform(self, input: Option<AppBlockBuilderPlatformType>) -> Self

The platform of the app block builder.

WINDOWS_SERVER_2019 is the only valid value.

source

pub fn get_platform(&self) -> &Option<AppBlockBuilderPlatformType>

The platform of the app block builder.

WINDOWS_SERVER_2019 is the only valid value.

source

pub fn instance_type(self, input: impl Into<String>) -> Self

The instance type of the app block builder.

This field is required.
source

pub fn set_instance_type(self, input: Option<String>) -> Self

The instance type of the app block builder.

source

pub fn get_instance_type(&self) -> &Option<String>

The instance type of the app block builder.

source

pub fn enable_default_internet_access(self, input: bool) -> Self

Indicates whether default internet access is enabled for the app block builder.

source

pub fn set_enable_default_internet_access(self, input: Option<bool>) -> Self

Indicates whether default internet access is enabled for the app block builder.

source

pub fn get_enable_default_internet_access(&self) -> &Option<bool>

Indicates whether default internet access is enabled for the app block builder.

source

pub fn iam_role_arn(self, input: impl Into<String>) -> Self

The ARN of the IAM role that is applied to the app block builder.

source

pub fn set_iam_role_arn(self, input: Option<String>) -> Self

The ARN of the IAM role that is applied to the app block builder.

source

pub fn get_iam_role_arn(&self) -> &Option<String>

The ARN of the IAM role that is applied to the app block builder.

source

pub fn vpc_config(self, input: VpcConfig) -> Self

The VPC configuration for the app block builder.

This field is required.
source

pub fn set_vpc_config(self, input: Option<VpcConfig>) -> Self

The VPC configuration for the app block builder.

source

pub fn get_vpc_config(&self) -> &Option<VpcConfig>

The VPC configuration for the app block builder.

source

pub fn state(self, input: AppBlockBuilderState) -> Self

The state of the app block builder.

This field is required.
source

pub fn set_state(self, input: Option<AppBlockBuilderState>) -> Self

The state of the app block builder.

source

pub fn get_state(&self) -> &Option<AppBlockBuilderState>

The state of the app block builder.

source

pub fn created_time(self, input: DateTime) -> Self

The creation time of the app block builder.

source

pub fn set_created_time(self, input: Option<DateTime>) -> Self

The creation time of the app block builder.

source

pub fn get_created_time(&self) -> &Option<DateTime>

The creation time of the app block builder.

source

pub fn app_block_builder_errors(self, input: ResourceError) -> Self

Appends an item to app_block_builder_errors.

To override the contents of this collection use set_app_block_builder_errors.

The app block builder errors.

source

pub fn set_app_block_builder_errors( self, input: Option<Vec<ResourceError>> ) -> Self

The app block builder errors.

source

pub fn get_app_block_builder_errors(&self) -> &Option<Vec<ResourceError>>

The app block builder errors.

source

pub fn state_change_reason( self, input: AppBlockBuilderStateChangeReason ) -> Self

The state change reason.

source

pub fn set_state_change_reason( self, input: Option<AppBlockBuilderStateChangeReason> ) -> Self

The state change reason.

source

pub fn get_state_change_reason( &self ) -> &Option<AppBlockBuilderStateChangeReason>

The state change reason.

source

pub fn access_endpoints(self, input: AccessEndpoint) -> Self

Appends an item to access_endpoints.

To override the contents of this collection use set_access_endpoints.

The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the app block builder only through the specified endpoints.

source

pub fn set_access_endpoints(self, input: Option<Vec<AccessEndpoint>>) -> Self

The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the app block builder only through the specified endpoints.

source

pub fn get_access_endpoints(&self) -> &Option<Vec<AccessEndpoint>>

The list of interface VPC endpoint (interface endpoint) objects. Administrators can connect to the app block builder only through the specified endpoints.

source

pub fn build(self) -> AppBlockBuilder

Consumes the builder and constructs a AppBlockBuilder.

Trait Implementations§

source§

impl Clone for AppBlockBuilderBuilder

source§

fn clone(&self) -> AppBlockBuilderBuilder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AppBlockBuilderBuilder

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AppBlockBuilderBuilder

source§

fn default() -> AppBlockBuilderBuilder

Returns the “default value” for a type. Read more
source§

impl PartialEq for AppBlockBuilderBuilder

source§

fn eq(&self, other: &AppBlockBuilderBuilder) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for AppBlockBuilderBuilder

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<Unshared, Shared> IntoShared<Shared> for Unsharedwhere Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more