Struct cfn::aws::lambda::PermissionProperties [] [src]

pub struct PermissionProperties {
    pub action: Value<String>,
    pub event_source_token: Option<Value<String>>,
    pub function_name: Value<String>,
    pub principal: Value<String>,
    pub source_account: Option<Value<String>>,
    pub source_arn: Option<Value<String>>,
}

Properties for the Permission resource.

Fields

Property Action.

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

Property EventSourceToken.

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

Property FunctionName.

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

Property Principal.

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

Property SourceAccount.

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

Property SourceArn.

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

Trait Implementations

impl Debug for PermissionProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for PermissionProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for PermissionProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<PermissionProperties> for Permission
[src]

[src]

Performs the conversion.

Auto Trait Implementations