(self, argument_table, help_text='')
| 175 | |
| 176 | class CreateDefaultRootObject(ExclusiveArgument): |
| 177 | def __init__(self, argument_table, help_text=''): |
| 178 | super(CreateDefaultRootObject, self).__init__( |
| 179 | 'default-root-object', |
| 180 | argument_table, |
| 181 | help_text=help_text |
| 182 | or ( |
| 183 | 'The object that you want CloudFront to return (for example, ' |
| 184 | 'index.html) when a viewer request points to your root URL.' |
| 185 | ), |
| 186 | ) |
| 187 | |
| 188 | def add_to_params(self, parameters, value): |
| 189 | if value is not None: |