pub struct PackConnectionAwsAssumeRolePatch {
pub external_id: Option<String>,
pub role_arn: Option<String>,
pub type_: PackConnectionAwsAssumeRolePatchType,
}
Expand description
PackConnectionAwsAssumeRolePatch
JSON schema
{
"type": "object",
"required": [
"type"
],
"properties": {
"externalId": {
"type": "string"
},
"roleArn": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"awsAssumeRole"
],
"x-tsType": "PackConnectionType.AwsAssumeRole"
}
},
"additionalProperties": false,
"x-schema-name": "PackConnectionAwsAssumeRolePatch"
}
Fields§
§external_id: Option<String>
§role_arn: Option<String>
§type_: PackConnectionAwsAssumeRolePatchType
Trait Implementations§
Source§impl Clone for PackConnectionAwsAssumeRolePatch
impl Clone for PackConnectionAwsAssumeRolePatch
Source§fn clone(&self) -> PackConnectionAwsAssumeRolePatch
fn clone(&self) -> PackConnectionAwsAssumeRolePatch
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'de> Deserialize<'de> for PackConnectionAwsAssumeRolePatch
impl<'de> Deserialize<'de> for PackConnectionAwsAssumeRolePatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&PackConnectionAwsAssumeRolePatch> for PackConnectionAwsAssumeRolePatch
impl From<&PackConnectionAwsAssumeRolePatch> for PackConnectionAwsAssumeRolePatch
Source§fn from(value: &PackConnectionAwsAssumeRolePatch) -> Self
fn from(value: &PackConnectionAwsAssumeRolePatch) -> Self
Converts to this type from the input type.
Source§impl From<PackConnectionAwsAssumeRolePatch> for PatchPackSystemConnectionRequest
impl From<PackConnectionAwsAssumeRolePatch> for PatchPackSystemConnectionRequest
Source§fn from(value: PackConnectionAwsAssumeRolePatch) -> Self
fn from(value: PackConnectionAwsAssumeRolePatch) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackConnectionAwsAssumeRolePatch
impl RefUnwindSafe for PackConnectionAwsAssumeRolePatch
impl Send for PackConnectionAwsAssumeRolePatch
impl Sync for PackConnectionAwsAssumeRolePatch
impl Unpin for PackConnectionAwsAssumeRolePatch
impl UnwindSafe for PackConnectionAwsAssumeRolePatch
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
Mutably borrows from an owned value. Read more