Sha256: 0c52869c1f6ab506962c4bfc90d6fa4d43f93b678a81834b801796a1abbc13ee

Contents?: true

Size: 1.03 KB

Versions: 95

Compression:

Stored size: 1.03 KB

Contents

### exist

```ruby
describe cloudfront_distribution('123456789zyxw.cloudfront.net') do
  it { should exist }
end
```

### be_in_progress, be_deployed

```ruby
describe cloudfront_distribution('123456789zyxw.cloudfront.net') do
  it { should be_deployed }
end
```

### have_origin

```ruby
describe cloudfront_distribution('E2CLOUDFRONTXX') do
  it do
    should have_origin('cf-s3-origin-hosting.dev.example.com')
      .domain_name('cf-s3-origin-hosting.dev.example.com.s3.amazonaws.com')
      .origin_path('/img')
      .origin_access_identity('origin-access-identity/cloudfront/E2VVVVVVVVVVVV')
  end
end
```

### have_origin_domain_name

```ruby
describe cloudfront_distribution('123456789zyxw.cloudfront.net') do
  it { should have_origin_domain_name('cf-s3-origin-hosting.dev.example.com.s3.amazonaws.com') }
end
```

### have_origin_domain_name_and_path

```ruby
describe cloudfront_distribution('123456789zyxw.cloudfront.net') do
  it { should have_origin_domain_name_and_path('cf-s3-origin-hosting.dev.example.com.s3.amazonaws.com/img') }
end
```

Version data entries

95 entries across 95 versions & 2 rubygems

Version Path
awspec-1.3.1 doc/_resource_types/cloudfront_distribution.md
awspec-1.3.0 doc/_resource_types/cloudfront_distribution.md
awspec-1.2.0 doc/_resource_types/cloudfront_distribution.md
awspec-1.1.0 doc/_resource_types/cloudfront_distribution.md
awspec-1.0.0 doc/_resource_types/cloudfront_distribution.md
awspec-1.0.0.rc doc/_resource_types/cloudfront_distribution.md
awspec-0.88.2 doc/_resource_types/cloudfront_distribution.md
awspec-0.88.1 doc/_resource_types/cloudfront_distribution.md
awspec-0.88.0 doc/_resource_types/cloudfront_distribution.md
awspec-0.87.1 doc/_resource_types/cloudfront_distribution.md
awspec-0.87.0 doc/_resource_types/cloudfront_distribution.md
awspec-0.86.0 doc/_resource_types/cloudfront_distribution.md
cmonson_2ndwatch_awspec-0.85.4 doc/_resource_types/cloudfront_distribution.md
awspec-0.85.3 doc/_resource_types/cloudfront_distribution.md
cmonson_2ndwatch_awspec-0.85.3 doc/_resource_types/cloudfront_distribution.md
awspec-0.85.2 doc/_resource_types/cloudfront_distribution.md
awspec-0.85.1 doc/_resource_types/cloudfront_distribution.md
awspec-0.85.0 doc/_resource_types/cloudfront_distribution.md
awspec-0.84.1 doc/_resource_types/cloudfront_distribution.md
awspec-0.84.0 doc/_resource_types/cloudfront_distribution.md