Struct cfn::aws::glue::CrawlerProperties [] [src]

pub struct CrawlerProperties {
    pub classifiers: Option<ValueList<String>>,
    pub database_name: Value<String>,
    pub description: Option<Value<String>>,
    pub name: Option<Value<String>>,
    pub role: Value<String>,
    pub schedule: Option<Value<Schedule>>,
    pub schema_change_policy: Option<Value<SchemaChangePolicy>>,
    pub table_prefix: Option<Value<String>>,
    pub targets: Value<Targets>,
}

Properties for the Crawler resource.

Fields

Property Classifiers.

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

Property DatabaseName.

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

Property Description.

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

Property Name.

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

Property Role.

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

Property Schedule.

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

Property SchemaChangePolicy.

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

Property TablePrefix.

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

Property Targets.

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

Trait Implementations

impl Debug for CrawlerProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for CrawlerProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<CrawlerProperties> for Crawler
[src]

[src]

Performs the conversion.

Auto Trait Implementations