IntegrationProperties

Struct IntegrationProperties 

Source
pub struct IntegrationProperties {
Show 18 fields pub api_id: Value<String>, pub connection_id: Option<Value<String>>, pub connection_type: Option<Value<String>>, pub content_handling_strategy: Option<Value<String>>, pub credentials_arn: Option<Value<String>>, pub description: Option<Value<String>>, pub integration_method: Option<Value<String>>, pub integration_subtype: Option<Value<String>>, pub integration_type: Value<String>, pub integration_uri: Option<Value<String>>, pub passthrough_behavior: Option<Value<String>>, pub payload_format_version: Option<Value<String>>, pub request_parameters: Option<Value<Value>>, pub request_templates: Option<Value<Value>>, pub response_parameters: Option<Value<Value>>, pub template_selection_expression: Option<Value<String>>, pub timeout_in_millis: Option<Value<u32>>, pub tls_config: Option<Value<TlsConfig>>,
}
Expand description

Properties for the Integration resource.

Fields§

§api_id: Value<String>

Property ApiId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

§connection_id: Option<Value<String>>

Property ConnectionId.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§connection_type: Option<Value<String>>

Property ConnectionType.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§content_handling_strategy: Option<Value<String>>

Property ContentHandlingStrategy.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§credentials_arn: Option<Value<String>>

Property CredentialsArn.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§description: Option<Value<String>>

Property Description.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§integration_method: Option<Value<String>>

Property IntegrationMethod.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§integration_subtype: Option<Value<String>>

Property IntegrationSubtype.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§integration_type: Value<String>

Property IntegrationType.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§integration_uri: Option<Value<String>>

Property IntegrationUri.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§passthrough_behavior: Option<Value<String>>

Property PassthroughBehavior.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§payload_format_version: Option<Value<String>>

Property PayloadFormatVersion.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§request_parameters: Option<Value<Value>>

Property RequestParameters.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§request_templates: Option<Value<Value>>

Property RequestTemplates.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§response_parameters: Option<Value<Value>>

Property ResponseParameters.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§template_selection_expression: Option<Value<String>>

Property TemplateSelectionExpression.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§timeout_in_millis: Option<Value<u32>>

Property TimeoutInMillis.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

§tls_config: Option<Value<TlsConfig>>

Property TlsConfig.

Update type: Mutable. AWS CloudFormation doesn’t replace the resource when you change this property.

Trait Implementations§

Source§

impl Debug for IntegrationProperties

Source§

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

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

impl Default for IntegrationProperties

Source§

fn default() -> IntegrationProperties

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

impl<'de> Deserialize<'de> for IntegrationProperties

Source§

fn deserialize<D: Deserializer<'de>>( d: D, ) -> Result<IntegrationProperties, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<IntegrationProperties> for Integration

Source§

fn from(properties: IntegrationProperties) -> Integration

Converts to this type from the input type.
Source§

impl Serialize for IntegrationProperties

Source§

fn serialize<S: Serializer>(&self, s: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where 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, U> Into<U> for T
where 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<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,